diff --git a/Context/DataContext.cs b/Context/DataContext.cs index 7c09319..f3034ff 100644 --- a/Context/DataContext.cs +++ b/Context/DataContext.cs @@ -11,25 +11,25 @@ namespace Microsoft.SelfService.Portal.Core.API.Context { } - public DbSet Events { get; set; } - public DbSet Environments { get; set; } public DbSet EnvironmentDomains { get; set; } public DbSet Domains { get; set; } - public DbSet VirtualMachines { get; set; } + public DbSet Targets { get; set; } public DbSet Deployments { get; set; } public DbSet DeploymentGroups { get; set; } public DbSet Templates { get; set; } + public DbSet TemplateVersions { get; set; } public DbSet DeploymentRules { get; set; } public DbSet DeploymentRuleSteps { get; set; } + public DbSet DeploymentTemplateSelections { get; set; } + public DbSet DeploymentParameterValues { get; set; } + public DbSet DeploymentTargetAssignments { get; set; } public DbSet TemplateCategories { get; set; } public DbSet Services { get; set; } public DbSet ServiceRoleDefinitions { get; set; } public DbSet TemplateOptions { get; set; } public DbSet Options { get; set; } public DbSet OptionCategories { get; set; } - public DbSet Jobs { get; set; } - public DbSet Runbooks { get; set; } public DbSet QueueJobs { get; set; } public DbSet QueueJobTargets { get; set; } public DbSet QueueJobSteps { get; set; } @@ -77,6 +77,14 @@ namespace Microsoft.SelfService.Portal.Core.API.Context modelBuilder.Entity() .ToTable("DeploymentBatches"); + modelBuilder.Entity() + .Property(target => target.TargetType) + .HasMaxLength(64); + + modelBuilder.Entity() + .Property(target => target.ProviderType) + .HasMaxLength(64); + modelBuilder.Entity() .ToTable("DeploymentExecutions"); modelBuilder.Entity() @@ -105,12 +113,12 @@ namespace Microsoft.SelfService.Portal.Core.API.Context .HasColumnName("DependsOnDeploymentJobStepId"); modelBuilder.Entity() - .HasKey(d => new { d.VirtualMachineId, d.DeploymentGroupId }); + .HasKey(d => new { d.TargetId, d.DeploymentGroupId }); modelBuilder.Entity() - .HasOne(d => d.VirtualMachine) + .HasOne(d => d.Target) .WithMany(vm => vm.Deployments) - .HasForeignKey(d => d.VirtualMachineId); + .HasForeignKey(d => d.TargetId); modelBuilder.Entity() .HasOne(d => d.DeploymentGroup) @@ -122,11 +130,103 @@ namespace Microsoft.SelfService.Portal.Core.API.Context .WithMany(t => t.DeploymentGroups) .HasForeignKey(dg => dg.TemplateId); + modelBuilder.Entity() + .HasOne(dg => dg.DeploymentRule) + .WithMany() + .HasForeignKey(dg => dg.DeploymentRuleId) + .OnDelete(DeleteBehavior.SetNull); + + modelBuilder.Entity() + .HasOne(selection => selection.DeploymentGroup) + .WithMany(batch => batch.TemplateSelections) + .HasForeignKey(selection => selection.DeploymentGroupId); + + modelBuilder.Entity() + .HasOne(selection => selection.TemplateVersion) + .WithMany() + .HasForeignKey(selection => selection.TemplateVersionId) + .OnDelete(DeleteBehavior.Restrict); + + modelBuilder.Entity() + .HasIndex(selection => new { selection.DeploymentGroupId, selection.SortOrder }) + .IsUnique(); + + modelBuilder.Entity() + .HasOne(parameterValue => parameterValue.DeploymentGroup) + .WithMany(batch => batch.ParameterValues) + .HasForeignKey(parameterValue => parameterValue.DeploymentGroupId); + + modelBuilder.Entity() + .HasOne(parameterValue => parameterValue.DeploymentTemplateSelection) + .WithMany() + .HasForeignKey(parameterValue => parameterValue.DeploymentTemplateSelectionId) + .OnDelete(DeleteBehavior.NoAction); + + modelBuilder.Entity() + .HasIndex(parameterValue => new { parameterValue.DeploymentGroupId, parameterValue.DeploymentTemplateSelectionId, parameterValue.Name }) + .IsUnique() + .HasFilter("[DeploymentTemplateSelectionId] IS NOT NULL"); + + modelBuilder.Entity() + .HasIndex(parameterValue => new { parameterValue.DeploymentGroupId, parameterValue.Name }) + .IsUnique() + .HasFilter("[DeploymentTemplateSelectionId] IS NULL"); + + modelBuilder.Entity() + .ToTable(table => table.HasCheckConstraint("CK_DeploymentParameterValues_ValueJson_IsJson", "ISJSON([ValueJson]) = 1")); + + modelBuilder.Entity() + .HasOne(target => target.DeploymentGroup) + .WithMany(batch => batch.TargetAssignments) + .HasForeignKey(target => target.DeploymentGroupId); + + modelBuilder.Entity() + .HasOne(target => target.Target) + .WithMany() + .HasForeignKey(target => target.TargetId) + .OnDelete(DeleteBehavior.Restrict); + + modelBuilder.Entity() + .HasIndex(target => new { target.DeploymentGroupId, target.TargetId, target.RoleKey }) + .IsUnique(); + + modelBuilder.Entity() + .ToTable(table => table.HasCheckConstraint("CK_DeploymentTargetAssignments_NodeDataJson_IsJson", "ISJSON([NodeDataJson]) = 1")); + modelBuilder.Entity() .HasOne(template => template.DeploymentRule) .WithMany() .HasForeignKey(template => template.DeploymentRuleId); + modelBuilder.Entity() + .HasOne(version => version.Template) + .WithMany(template => template.TemplateVersions) + .HasForeignKey(version => version.TemplateId); + + modelBuilder.Entity() + .HasIndex(version => new { version.TemplateId, version.Version }) + .IsUnique(); + + modelBuilder.Entity() + .HasIndex(version => version.TemplateId) + .IsUnique() + .HasFilter("[IsPublished] = 1"); + + modelBuilder.Entity() + .Property(version => version.Version) + .HasMaxLength(64); + + modelBuilder.Entity() + .Property(version => version.JsonHash) + .HasMaxLength(64); + + modelBuilder.Entity() + .Property(version => version.SchemaVersion) + .HasMaxLength(32); + + modelBuilder.Entity() + .ToTable(table => table.HasCheckConstraint("CK_TemplateVersions_JsonData_IsJson", "ISJSON([JsonData]) = 1")); + modelBuilder.Entity() .HasOne(step => step.DeploymentRule) .WithMany(rule => rule.Steps) @@ -148,28 +248,8 @@ namespace Microsoft.SelfService.Portal.Core.API.Context .HasForeignKey(step => step.DependsOnQueueJobStepId) .OnDelete(DeleteBehavior.Restrict); - modelBuilder.Entity() - .HasKey(j => new { j.RunbookId, j.DeploymentId }); - - modelBuilder.Entity() - .HasOne(j => j.Deployment) - .WithMany(d => d.Jobs) - .HasPrincipalKey(d => d.Id) - .HasForeignKey(j => j.DeploymentId); - - modelBuilder.Entity() - .HasOne(j => j.Runbook) - .WithMany(r => r.Jobs) - .HasPrincipalKey(r => r.Id) - .HasForeignKey(j => j.RunbookId); - - modelBuilder.Entity() - .HasOne(e => e.Runbook) - .WithMany(r => r.Events) - .HasPrincipalKey(e => e.Id) - .HasForeignKey(r => r.RunbookId); - OnModelCreatingAddDefaultSqlValues(modelBuilder); + DemoData.Seed(modelBuilder); } private void OnModelCreatingAddDefaultSqlValues(ModelBuilder modelBuilder) @@ -206,3 +286,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Context } } } + diff --git a/Context/DataContextFactory.cs b/Context/DataContextFactory.cs new file mode 100644 index 0000000..fe67475 --- /dev/null +++ b/Context/DataContextFactory.cs @@ -0,0 +1,55 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Design; + +namespace Microsoft.SelfService.Portal.Core.API.Context +{ + public class DataContextFactory : IDesignTimeDbContextFactory + { + public DataContext CreateDbContext(string[] args) + { + var basePath = ResolveBasePath(); + var configuration = new ConfigurationBuilder() + .SetBasePath(basePath) + .AddJsonFile("appsettings.json", optional: false) + .AddJsonFile("appsettings.Development.json", optional: true) + .AddEnvironmentVariables() + .Build(); + + var connectionString = configuration.GetConnectionString("Context") + ?? throw new InvalidOperationException("Connection string 'Context' not found."); + + var optionsBuilder = new DbContextOptionsBuilder(); + optionsBuilder.UseSqlServer(connectionString); + + return new DataContext(optionsBuilder.Options); + } + + private static string ResolveBasePath() + { + var currentDirectory = Directory.GetCurrentDirectory(); + var projectDirectory = Path.Combine( + currentDirectory, + ".Net", + "Microsoft.SelfService.Portal.Core.API"); + + if (File.Exists(Path.Combine(currentDirectory, "appsettings.json"))) + { + return currentDirectory; + } + + if (File.Exists(Path.Combine(projectDirectory, "appsettings.json"))) + { + return projectDirectory; + } + + var assemblyDirectory = AppContext.BaseDirectory; + if (File.Exists(Path.Combine(assemblyDirectory, "appsettings.json"))) + { + return assemblyDirectory; + } + + return currentDirectory; + } + } +} + diff --git a/Context/DemoData.cs b/Context/DemoData.cs new file mode 100644 index 0000000..fa810b2 --- /dev/null +++ b/Context/DemoData.cs @@ -0,0 +1,331 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.SelfService.Portal.Core.API.Models; + +namespace Microsoft.SelfService.Portal.Core.API.Context +{ + internal static class DemoData + { + private static readonly DateTime Timestamp = new(2026, 7, 7, 0, 0, 0, DateTimeKind.Utc); + private const string Owner = "DemoSeed"; + + internal static readonly Guid EnvironmentContosoTestId = Guid.Parse("10000000-0000-0000-0000-000000000001"); + internal static readonly Guid EnvironmentContosoProdId = Guid.Parse("10000000-0000-0000-0000-000000000002"); + internal static readonly Guid EnvironmentM365Id = Guid.Parse("10000000-0000-0000-0000-000000000003"); + + internal static readonly Guid DomainCentralId = Guid.Parse("20000000-0000-0000-0000-000000000001"); + internal static readonly Guid DomainResourceId = Guid.Parse("20000000-0000-0000-0000-000000000002"); + + internal static readonly Guid VmDc01Id = Guid.Parse("30000000-0000-0000-0000-000000000001"); + internal static readonly Guid VmDc02Id = Guid.Parse("30000000-0000-0000-0000-000000000002"); + internal static readonly Guid VmSql01Id = Guid.Parse("30000000-0000-0000-0000-000000000003"); + internal static readonly Guid VmSp01Id = Guid.Parse("30000000-0000-0000-0000-000000000004"); + internal static readonly Guid VmSp02Id = Guid.Parse("30000000-0000-0000-0000-000000000005"); + internal static readonly Guid TargetM365TenantId = Guid.Parse("30000000-0000-0000-0000-000000000006"); + internal static readonly Guid TargetTeamsPolicyScopeId = Guid.Parse("30000000-0000-0000-0000-000000000007"); + + internal static readonly Guid ServiceActiveDirectoryId = Guid.Parse("40000000-0000-0000-0000-000000000001"); + internal static readonly Guid ServiceSqlServerId = Guid.Parse("40000000-0000-0000-0000-000000000002"); + internal static readonly Guid ServiceSharePointId = Guid.Parse("40000000-0000-0000-0000-000000000003"); + internal static readonly Guid ServiceTeamsId = Guid.Parse("40000000-0000-0000-0000-000000000004"); + + internal static readonly Guid CategoryActiveDirectoryId = Guid.Parse("50000000-0000-0000-0000-000000000001"); + internal static readonly Guid CategorySqlServerId = Guid.Parse("50000000-0000-0000-0000-000000000002"); + internal static readonly Guid CategorySharePointId = Guid.Parse("50000000-0000-0000-0000-000000000003"); + internal static readonly Guid CategoryTeamsId = Guid.Parse("50000000-0000-0000-0000-000000000004"); + + internal static readonly Guid RuleStandardId = Guid.Parse("60000000-0000-0000-0000-000000000001"); + internal static readonly Guid RuleStepValidateId = Guid.Parse("60000000-0000-0000-0000-000000000101"); + internal static readonly Guid RuleStepApproveId = Guid.Parse("60000000-0000-0000-0000-000000000102"); + internal static readonly Guid RuleStepDeployId = Guid.Parse("60000000-0000-0000-0000-000000000103"); + + internal static readonly Guid TemplateActiveDirectoryId = Guid.Parse("70000000-0000-0000-0000-000000000001"); + internal static readonly Guid TemplateSqlServerId = Guid.Parse("70000000-0000-0000-0000-000000000002"); + internal static readonly Guid TemplateSharePointId = Guid.Parse("70000000-0000-0000-0000-000000000003"); + internal static readonly Guid TemplateTeamsId = Guid.Parse("70000000-0000-0000-0000-000000000004"); + + internal static readonly Guid TemplateActiveDirectoryVersionId = Guid.Parse("71000000-0000-0000-0000-000000000001"); + internal static readonly Guid TemplateSqlServerVersionId = Guid.Parse("71000000-0000-0000-0000-000000000002"); + internal static readonly Guid TemplateSharePointVersionId = Guid.Parse("71000000-0000-0000-0000-000000000003"); + internal static readonly Guid TemplateTeamsVersionId = Guid.Parse("71000000-0000-0000-0000-000000000004"); + + internal static readonly Guid DeploymentBatchSharePointId = Guid.Parse("80000000-0000-0000-0000-000000000001"); + internal static readonly Guid DeploymentSp01Id = Guid.Parse("81000000-0000-0000-0000-000000000001"); + internal static readonly Guid DeploymentSp02Id = Guid.Parse("81000000-0000-0000-0000-000000000002"); + internal static readonly Guid DeploymentSharePointTemplateSelectionId = Guid.Parse("82000000-0000-0000-0000-000000000001"); + internal static readonly Guid DeploymentParameterDatabasePrefixId = Guid.Parse("83000000-0000-0000-0000-000000000001"); + internal static readonly Guid DeploymentParameterFarmAccountId = Guid.Parse("83000000-0000-0000-0000-000000000002"); + internal static readonly Guid DeploymentTargetSp01Id = Guid.Parse("84000000-0000-0000-0000-000000000001"); + internal static readonly Guid DeploymentTargetSp02Id = Guid.Parse("84000000-0000-0000-0000-000000000002"); + + internal static void Seed(ModelBuilder modelBuilder) + { + modelBuilder.Entity().HasData(Environments()); + modelBuilder.Entity().HasData(Domains()); + modelBuilder.Entity().HasData(EnvironmentDomains()); + modelBuilder.Entity().HasData(Targets()); + modelBuilder.Entity().HasData(Services()); + modelBuilder.Entity().HasData(ServiceRoleDefinitions()); + modelBuilder.Entity().HasData(TemplateCategories()); + modelBuilder.Entity().HasData(DeploymentRules()); + modelBuilder.Entity().HasData(DeploymentRuleSteps()); + modelBuilder.Entity().HasData(Templates()); + modelBuilder.Entity().HasData(TemplateVersions()); + modelBuilder.Entity().HasData(DeploymentBatches()); + modelBuilder.Entity().HasData(Deployments()); + modelBuilder.Entity().HasData(DeploymentTemplateSelections()); + modelBuilder.Entity().HasData(DeploymentParameterValues()); + modelBuilder.Entity().HasData(DeploymentTargetAssignments()); + } + + private static object[] Environments() => + [ + Base(new EnvironmentModel { Id = EnvironmentContosoTestId, Name = "Contoso Test", EnvironmentType = EnvironmentStages.Test, HostingType = EnvironmentHostingTypes.OnPrem, MetadataJson = "{\"location\":\"Datacenter A\"}" }), + Base(new EnvironmentModel { Id = EnvironmentContosoProdId, Name = "Contoso Production", EnvironmentType = EnvironmentStages.Production, HostingType = EnvironmentHostingTypes.OnPrem, MetadataJson = "{\"location\":\"Datacenter A\"}" }), + Base(new EnvironmentModel { Id = EnvironmentM365Id, Name = "Contoso M365", EnvironmentType = EnvironmentStages.Production, HostingType = EnvironmentHostingTypes.M365Tenant, ProviderType = "Microsoft365", TenantId = "11111111-1111-1111-1111-111111111111", MetadataJson = "{\"tenant\":\"contoso.onmicrosoft.com\"}" }) + ]; + + private static object[] Domains() => + [ + Base(new DomainModel { Id = DomainCentralId, Name = "Central Management", FQDN = "corp.contoso.com", NetBIOS = "CONTOSO" }), + Base(new DomainModel { Id = DomainResourceId, Name = "Resource Domain", FQDN = "resource.contoso.com", NetBIOS = "RESOURCE" }) + ]; + + private static object[] EnvironmentDomains() => + [ + Junction(new EnvironmentDomainsModel { EnvironmentId = EnvironmentContosoTestId, DomainId = DomainCentralId }), + Junction(new EnvironmentDomainsModel { EnvironmentId = EnvironmentContosoProdId, DomainId = DomainCentralId }), + Junction(new EnvironmentDomainsModel { EnvironmentId = EnvironmentContosoProdId, DomainId = DomainResourceId }) + ]; + + private static object[] Targets() => + [ + Base(new TargetModel { Id = VmDc01Id, DomainID = DomainCentralId, Name = "CT-DC-01", TargetType = "VirtualMachine", ProviderType = "OnPrem", MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Test\"}" }), + Base(new TargetModel { Id = VmDc02Id, DomainID = DomainCentralId, Name = "CT-DC-02", TargetType = "VirtualMachine", ProviderType = "OnPrem", MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Production\"}" }), + Base(new TargetModel { Id = VmSql01Id, DomainID = DomainCentralId, Name = "CT-SQL-01", TargetType = "VirtualMachine", ProviderType = "OnPrem", MetadataJson = "{\"role\":\"SqlServer\",\"environment\":\"Test\"}" }), + Base(new TargetModel { Id = VmSp01Id, DomainID = DomainCentralId, Name = "CT-SHP-01", TargetType = "VirtualMachine", ProviderType = "OnPrem", MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}" }), + Base(new TargetModel { Id = VmSp02Id, DomainID = DomainCentralId, Name = "CT-SHP-02", TargetType = "VirtualMachine", ProviderType = "OnPrem", MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}" }), + Base(new TargetModel { Id = TargetM365TenantId, Name = "contoso.onmicrosoft.com", TargetType = "Tenant", ProviderType = "Microsoft365", ExternalId = "11111111-1111-1111-1111-111111111111", MetadataJson = "{\"environment\":\"Production\",\"workload\":\"M365\"}" }), + Base(new TargetModel { Id = TargetTeamsPolicyScopeId, Name = "Teams - Standard Users", TargetType = "PolicyScope", ProviderType = "Microsoft365", ExternalId = "Teams.StandardUsers", MetadataJson = "{\"workload\":\"Teams\",\"scope\":\"StandardUsers\"}" }) + ]; + + private static object[] Services() => + [ + Base(new ServiceModel { Id = ServiceActiveDirectoryId, Name = "Active Directory", Description = "On-premises directory and identity service.", IconKey = "network", IsCloudService = false }), + Base(new ServiceModel { Id = ServiceSqlServerId, Name = "SQL Server", Description = "Database platform for application workloads.", IconKey = "database", IsCloudService = false }), + Base(new ServiceModel { Id = ServiceSharePointId, Name = "SharePoint Server", Description = "Collaboration platform for on-premises workloads.", IconKey = "sharepoint", IsCloudService = false }), + Base(new ServiceModel { Id = ServiceTeamsId, Name = "Microsoft Teams", Description = "Cloud collaboration workload in Microsoft 365.", IconKey = "messages-square", IsCloudService = true }) + ]; + + private static object[] ServiceRoleDefinitions() => + [ + Base(new ServiceRoleDefinitionModel { Id = Guid.Parse("41000000-0000-0000-0000-000000000001"), ServiceId = ServiceSharePointId, Key = "Farm", Name = "Farm", Description = "SharePoint farm role." }), + Base(new ServiceRoleDefinitionModel { Id = Guid.Parse("41000000-0000-0000-0000-000000000002"), ServiceId = ServiceSharePointId, Key = "WebFrontEnd", Name = "Web Front End", Description = "SharePoint web front-end role." }), + Base(new ServiceRoleDefinitionModel { Id = Guid.Parse("41000000-0000-0000-0000-000000000003"), ServiceId = ServiceSharePointId, Key = "Application", Name = "Application", Description = "SharePoint service application role." }), + Base(new ServiceRoleDefinitionModel { Id = Guid.Parse("41000000-0000-0000-0000-000000000004"), ServiceId = ServiceSqlServerId, Key = "Database", Name = "Database", Description = "SQL Server database role." }) + ]; + + private static object[] TemplateCategories() => + [ + Base(new TemplateCategoryModel { Id = CategoryActiveDirectoryId, ServiceId = ServiceActiveDirectoryId, Name = "Domain Services", Description = "Templates for domain controller and domain configuration.", Color = "#2563EB", IsActive = true }), + Base(new TemplateCategoryModel { Id = CategorySqlServerId, ServiceId = ServiceSqlServerId, Name = "Database Platform", Description = "Templates for SQL Server workloads.", Color = "#16A34A", IsActive = true }), + Base(new TemplateCategoryModel { Id = CategorySharePointId, ServiceId = ServiceSharePointId, Name = "Collaboration Farm", Description = "Templates for SharePoint Server farms.", Color = "#0F766E", IsActive = true }), + Base(new TemplateCategoryModel { Id = CategoryTeamsId, ServiceId = ServiceTeamsId, Name = "Teams Policies", Description = "Templates for Teams policy configuration.", Color = "#7C3AED", IsActive = true }) + ]; + + private static object[] DeploymentRules() => + [ + Base(new DeploymentRuleModel { Id = RuleStandardId, Name = "Standard Provisioning", Description = "Validate input, wait for approval, then provision targets.", IsActive = true }) + ]; + + private static object[] DeploymentRuleSteps() => + [ + Base(new DeploymentRuleStepModel { Id = RuleStepValidateId, DeploymentRuleId = RuleStandardId, SortOrder = 10, Name = "Validate configuration", StepType = QueueJobStepType.Provision, RequiresApproval = false, MetadataJson = "{\"action\":\"validate\"}" }), + Base(new DeploymentRuleStepModel { Id = RuleStepApproveId, DeploymentRuleId = RuleStandardId, SortOrder = 20, Name = "Approve deployment", StepType = QueueJobStepType.Approval, RequiresApproval = true, MetadataJson = "{\"approverGroup\":\"Platform Owners\"}" }), + Base(new DeploymentRuleStepModel { Id = RuleStepDeployId, DeploymentRuleId = RuleStandardId, SortOrder = 30, Name = "Provision workload", StepType = QueueJobStepType.Provision, RequiresApproval = false, MetadataJson = "{\"action\":\"deploy\"}" }) + ]; + + private static object[] Templates() => + [ + Base(new TemplateModel { Id = TemplateActiveDirectoryId, TemplateCategoryId = CategoryActiveDirectoryId, DeploymentRuleId = RuleStandardId, Name = "Contoso Active Directory Domain", Version = "1.0.0", Description = "Creates a reusable Active Directory domain baseline.", JSONData = ActiveDirectoryTemplateJson }), + Base(new TemplateModel { Id = TemplateSqlServerId, TemplateCategoryId = CategorySqlServerId, DeploymentRuleId = RuleStandardId, Name = "Contoso SQL Server", Version = "1.0.0", Description = "Creates a SQL Server baseline for application workloads.", JSONData = SqlServerTemplateJson }), + Base(new TemplateModel { Id = TemplateSharePointId, TemplateCategoryId = CategorySharePointId, DeploymentRuleId = RuleStandardId, Name = "Contoso SharePoint Server", Version = "1.0.0", Description = "Creates a SharePoint Server farm baseline.", JSONData = SharePointTemplateJson }), + Base(new TemplateModel { Id = TemplateTeamsId, TemplateCategoryId = CategoryTeamsId, DeploymentRuleId = RuleStandardId, Name = "Contoso Teams Policies", Version = "1.0.0", Description = "Creates a Microsoft Teams policy baseline.", JSONData = TeamsTemplateJson }) + ]; + + private static object[] TemplateVersions() => + [ + TemplateVersion(TemplateActiveDirectoryVersionId, TemplateActiveDirectoryId, ActiveDirectoryTemplateJson), + TemplateVersion(TemplateSqlServerVersionId, TemplateSqlServerId, SqlServerTemplateJson), + TemplateVersion(TemplateSharePointVersionId, TemplateSharePointId, SharePointTemplateJson), + TemplateVersion(TemplateTeamsVersionId, TemplateTeamsId, TeamsTemplateJson) + ]; + + private static object[] DeploymentBatches() => + [ + Base(new DeploymentGroupModel { Id = DeploymentBatchSharePointId, TemplateId = TemplateSharePointId, DeploymentRuleId = RuleStandardId, Status = QueueJobStatus.Pending }) + ]; + + private static object[] Deployments() => + [ + Base(new DeploymentModel { Id = DeploymentSp01Id, DeploymentGroupId = DeploymentBatchSharePointId, TargetId = VmSp01Id, Status = QueueJobStatus.Pending, JSONData = "{\"role\":\"WebFrontEnd\"}" }), + Base(new DeploymentModel { Id = DeploymentSp02Id, DeploymentGroupId = DeploymentBatchSharePointId, TargetId = VmSp02Id, Status = QueueJobStatus.Pending, JSONData = "{\"role\":\"Application\"}" }) + ]; + + private static object[] DeploymentTemplateSelections() => + [ + Base(new DeploymentTemplateSelectionModel { Id = DeploymentSharePointTemplateSelectionId, DeploymentGroupId = DeploymentBatchSharePointId, TemplateVersionId = TemplateSharePointVersionId, TemplateRole = "Service", SortOrder = 10, Alias = "SharePoint" }) + ]; + + private static object[] DeploymentParameterValues() => + [ + Base(new DeploymentParameterValueModel { Id = DeploymentParameterDatabasePrefixId, DeploymentGroupId = DeploymentBatchSharePointId, DeploymentTemplateSelectionId = DeploymentSharePointTemplateSelectionId, Name = "DatabasePrefix", ValueJson = "{\"value\":\"SharePoint_Contoso_Test\"}", IsOverride = true, IsSecretReference = false }), + Base(new DeploymentParameterValueModel { Id = DeploymentParameterFarmAccountId, DeploymentGroupId = DeploymentBatchSharePointId, DeploymentTemplateSelectionId = DeploymentSharePointTemplateSelectionId, Name = "FarmAccount", ValueJson = "{\"provider\":\"SecretManagement\",\"vault\":\"ContosoDemo\",\"name\":\"Windows/SharePoint/FarmAccount\"}", IsOverride = true, IsSecretReference = true }) + ]; + + private static object[] DeploymentTargetAssignments() => + [ + Base(new DeploymentTargetAssignmentModel { Id = DeploymentTargetSp01Id, DeploymentGroupId = DeploymentBatchSharePointId, TargetId = VmSp01Id, RoleKey = "WebFrontEnd", SortOrder = 10, NodeDataJson = "{\"nodeName\":\"CT-SHP-01\"}" }), + Base(new DeploymentTargetAssignmentModel { Id = DeploymentTargetSp02Id, DeploymentGroupId = DeploymentBatchSharePointId, TargetId = VmSp02Id, RoleKey = "Application", SortOrder = 20, NodeDataJson = "{\"nodeName\":\"CT-SHP-02\"}" }) + ]; + + private static TemplateVersionModel TemplateVersion(Guid id, Guid templateId, string jsonData) + { + return Base(new TemplateVersionModel + { + Id = id, + TemplateId = templateId, + Version = "1.0.0", + JsonData = jsonData, + JsonHash = TemplateVersionModel.ComputeSha256(jsonData), + SchemaVersion = "1.0", + IsPublished = true, + PublishedAt = Timestamp, + PublishedBy = Owner + }); + } + + private static T Base(T model) + where T : BaseModel + { + model.Created = Timestamp; + model.Modified = Timestamp; + model.CreatedBy = Owner; + model.ModifiedBy = Owner; + return model; + } + + private static T Junction(T model) + where T : BaseJunctionModel + { + model.Created = Timestamp; + model.Modified = Timestamp; + model.CreatedBy = Owner; + model.ModifiedBy = Owner; + return model; + } + + private const string ActiveDirectoryTemplateJson = """ + { + "schemaVersion": "1.0", + "templateType": "Service", + "parameters": { + "DomainName": { "type": "string", "defaultValue": "corp.contoso.com" }, + "NetBIOSName": { "type": "string", "defaultValue": "CONTOSO" } + }, + "variables": { + "DefaultSiteName": "[concat(parameters('DomainName'), '-DefaultSite')]" + }, + "resources": { + "AllNodes": [ + { "NodeName": "*", "PSDscAllowPlainTextPassword": true } + ], + "NonNodeData": { + "Services": { + "ActiveDirectory": { + "DomainName": "[parameters('DomainName')]", + "NetBIOSName": "[parameters('NetBIOSName')]" + } + } + } + } + } + """; + + private const string SqlServerTemplateJson = """ + { + "schemaVersion": "1.0", + "templateType": "Service", + "parameters": { + "InstanceName": { "type": "string", "defaultValue": "MSSQLSERVER" }, + "DatabasePrefix": { "type": "string", "defaultValue": "Contoso" } + }, + "variables": { + "ConfigDatabase": "[concat(parameters('DatabasePrefix'), '_Config')]" + }, + "resources": { + "NonNodeData": { + "Services": { + "SqlServer": { + "InstanceName": "[parameters('InstanceName')]", + "ConfigDatabase": "[variables('ConfigDatabase')]" + } + } + } + } + } + """; + + private const string SharePointTemplateJson = """ + { + "schemaVersion": "1.0", + "templateType": "Service", + "parameters": { + "DatabasePrefix": { "type": "string", "defaultValue": "SharePoint_Contoso_Test" }, + "FarmAccount": { "type": "credential", "metadata": { "description": "Farm account resolved by the credential provider." } } + }, + "variables": { + "ConfigDbName": "[concat(parameters('DatabasePrefix'), '_Farm_Config')]", + "AdminContentDbName": "[concat(parameters('DatabasePrefix'), '_AdminContent')]" + }, + "resources": { + "NonNodeData": { + "Services": { + "SharePoint": { + "Farm": { + "ConfigDatabase": "[variables('ConfigDbName')]", + "AdminContentDatabase": "[variables('AdminContentDbName')]", + "ManagedAccounts": { + "FarmAccount": "[parameters('FarmAccount')]" + } + } + } + } + } + } + } + """; + + private const string TeamsTemplateJson = """ + { + "schemaVersion": "1.0", + "templateType": "Service", + "parameters": { + "CallingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Calling" }, + "MeetingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Meetings" } + }, + "variables": {}, + "resources": { + "NonNodeData": { + "Services": { + "Teams": { + "CallingPolicy": "[parameters('CallingPolicyName')]", + "MeetingPolicy": "[parameters('MeetingPolicyName')]" + } + } + } + } + } + """; + } +} + diff --git a/Controllers/AbstractController.cs b/Controllers/AbstractController.cs deleted file mode 100644 index 90d7f5a..0000000 --- a/Controllers/AbstractController.cs +++ /dev/null @@ -1,27 +0,0 @@ -using AutoMapper; -using Microsoft.AspNetCore.Mvc; -using Microsoft.SelfService.Portal.Core.API.Events.Interfaces; -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Controllers -{ - public class AbstractController : Controller - { - private readonly IEventHandlerInterface _eventHandlerInterface; - - private readonly string _class; - private readonly string _method; - - public AbstractController( string Class, string Method) - { - - } - - [NonAction] - ICollection GetEvents() - { - return _eventHandlerInterface.GetEvents(_class, _method); - } - - } -} diff --git a/Controllers/DeploymentBatchController.cs b/Controllers/DeploymentBatchController.cs new file mode 100644 index 0000000..ad356ff --- /dev/null +++ b/Controllers/DeploymentBatchController.cs @@ -0,0 +1,394 @@ +using AutoMapper; +using Microsoft.EntityFrameworkCore; +using Microsoft.AspNetCore.Mvc; +using Microsoft.SelfService.Portal.Core.API.Context; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Add; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Edit; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Get; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Add; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get; +using Microsoft.SelfService.Portal.Core.API.Interfaces; +using Microsoft.SelfService.Portal.Core.API.JsonDocuments; +using Microsoft.SelfService.Portal.Core.API.Models; + +namespace Microsoft.SelfService.Portal.Core.API.Controllers +{ + [Route("api/deployment-batches")] + [ApiController] + public class DeploymentBatchController : Controller + { + private readonly IDeploymentBatchInterface _deploymentBatchInterface; + private readonly DataContext _context; + private readonly IMapper _mapper; + + public DeploymentBatchController(IDeploymentBatchInterface deploymentBatchInterface, DataContext context, IMapper mapper) + { + _deploymentBatchInterface = deploymentBatchInterface; + _context = context; + _mapper = mapper; + } + + [HttpGet] + [ProducesResponseType(200, Type = typeof(IEnumerable))] + public IActionResult GetDeploymentBatches() + { + var deploymentBatches = _deploymentBatchInterface + .GetDeploymentBatches() + .Select(batch => new GetDeploymentBatchDto + { + Id = batch.Id, + TemplateId = batch.TemplateId, + DeploymentRuleId = batch.DeploymentRuleId, + Status = batch.Status, + Created = batch.Created, + CreatedBy = batch.CreatedBy, + Modified = batch.Modified, + ModifiedBy = batch.ModifiedBy + }) + .ToList(); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + return Ok(deploymentBatches); + } + + [HttpGet("{id}")] + [ProducesResponseType(200, Type = typeof(DeploymentGroupModel))] + [ProducesResponseType(400)] + public IActionResult GetDeploymentBatchById(Guid id) + { + if (!_deploymentBatchInterface.CheckDeploymentBatchById(id)) + return NotFound(); + + var deploymentBatch = _mapper.Map(_deploymentBatchInterface.GetDeploymentBatchById(id)); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + return Ok(deploymentBatch); + } + + [HttpPost] + [ProducesResponseType(204)] + [ProducesResponseType(400)] + public IActionResult AddDeploymentBatch([FromBody] AddDeploymentBatchDto deploymentBatch) + { + if (deploymentBatch == null) + return BadRequest(ModelState); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + var deploymentBatchMap = _mapper.Map(deploymentBatch); + + if (!_deploymentBatchInterface.AddDeploymentBatchById(deploymentBatchMap, deploymentBatch.TargetIds)) + { + ModelState.AddModelError("", "Something went wrong while saving"); + return StatusCode(500, ModelState); + } + + return Ok(deploymentBatchMap.Id); + } + + [HttpDelete("{id}")] + [ProducesResponseType(204)] + [ProducesResponseType(400)] + [ProducesResponseType(404)] + public IActionResult DeleteDeploymentBatchById(Guid id) + { + if (!_deploymentBatchInterface.CheckDeploymentBatchById(id)) + return NotFound(); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + var deploymentBatch = _deploymentBatchInterface.GetDeploymentBatchById(id); + + if (deploymentBatch == null) + return NotFound(); + + if (!_deploymentBatchInterface.DeleteDeploymentBatchById(deploymentBatch)) + { + ModelState.AddModelError("", "Something went wrong while deleting"); + return StatusCode(500, ModelState); + } + + return NoContent(); + } + + [HttpPut("{id}")] + [ProducesResponseType(204)] + [ProducesResponseType(400)] + [ProducesResponseType(404)] + public IActionResult EditDeploymentBatchById(Guid id, [FromBody] EditDeploymentBatchDto deploymentBatch) + { + if (deploymentBatch == null) + return BadRequest(ModelState); + + if (!_deploymentBatchInterface.CheckDeploymentBatchById(id)) + return NotFound(); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + var deploymentBatchMap = _mapper.Map(deploymentBatch); + deploymentBatchMap.Id = id; + + if (!_deploymentBatchInterface.EditDeploymentBatchById(deploymentBatchMap)) + { + ModelState.AddModelError("", "Something went wrong"); + return StatusCode(500, ModelState); + } + + return NoContent(); + } + + [HttpGet("{id}/composition")] + [ProducesResponseType(200, Type = typeof(GetDeploymentCompositionDto))] + [ProducesResponseType(404)] + public IActionResult GetDeploymentComposition(Guid id) + { + if (!_deploymentBatchInterface.CheckDeploymentBatchById(id)) + return NotFound(); + + return Ok(LoadComposition(id)); + } + + [HttpPost("{id}/template-selections")] + [ProducesResponseType(200, Type = typeof(Guid))] + [ProducesResponseType(400)] + [ProducesResponseType(404)] + public IActionResult AddTemplateSelection(Guid id, [FromBody] AddDeploymentTemplateSelectionDto templateSelection) + { + if (!_deploymentBatchInterface.CheckDeploymentBatchById(id)) + return NotFound(); + + if (!_context.TemplateVersions.Any(version => version.Id == templateSelection.TemplateVersionId)) + { + ModelState.AddModelError(nameof(templateSelection.TemplateVersionId), "Template version was not found."); + return BadRequest(ModelState); + } + + var sortOrder = templateSelection.SortOrder > 0 + ? templateSelection.SortOrder + : GetNextTemplateSelectionSortOrder(id); + + if (_context.DeploymentTemplateSelections.Any(selection => selection.DeploymentGroupId == id && selection.SortOrder == sortOrder)) + { + ModelState.AddModelError(nameof(templateSelection.SortOrder), "SortOrder already exists in this deployment batch."); + return BadRequest(ModelState); + } + + var model = _mapper.Map(templateSelection); + model.Id = Guid.NewGuid(); + model.DeploymentGroupId = id; + model.SortOrder = sortOrder; + + _context.DeploymentTemplateSelections.Add(model); + _context.SaveChanges(); + + return Ok(model.Id); + } + + [HttpDelete("{id}/template-selections/{selectionId}")] + [ProducesResponseType(204)] + [ProducesResponseType(404)] + public IActionResult DeleteTemplateSelection(Guid id, Guid selectionId) + { + var selection = _context.DeploymentTemplateSelections + .FirstOrDefault(existing => existing.DeploymentGroupId == id && existing.Id == selectionId); + + if (selection == null) + return NotFound(); + + _context.DeploymentTemplateSelections.Remove(selection); + _context.SaveChanges(); + + return NoContent(); + } + + [HttpPost("{id}/parameter-values")] + [ProducesResponseType(200, Type = typeof(Guid))] + [ProducesResponseType(400)] + [ProducesResponseType(404)] + public IActionResult AddParameterValue(Guid id, [FromBody] AddDeploymentParameterValueDto parameterValue) + { + if (!_deploymentBatchInterface.CheckDeploymentBatchById(id)) + return NotFound(); + + if (parameterValue.DeploymentTemplateSelectionId.HasValue + && !_context.DeploymentTemplateSelections.Any(selection => + selection.DeploymentGroupId == id + && selection.Id == parameterValue.DeploymentTemplateSelectionId.Value)) + { + ModelState.AddModelError(nameof(parameterValue.DeploymentTemplateSelectionId), "Template selection was not found in this deployment batch."); + return BadRequest(ModelState); + } + + if (_context.DeploymentParameterValues.Any(existing => + existing.DeploymentGroupId == id + && existing.DeploymentTemplateSelectionId == parameterValue.DeploymentTemplateSelectionId + && existing.Name == parameterValue.Name)) + { + ModelState.AddModelError(nameof(parameterValue.Name), "Parameter value already exists in this scope."); + return BadRequest(ModelState); + } + + try + { + parameterValue.ValueJson = ConfigurationDocumentValidator.NormalizeAndValidate( + parameterValue.ValueJson, + ConfigurationDocumentKind.Metadata).JsonData; + } + catch (ConfigurationDocumentValidationException ex) + { + ModelState.AddModelError(nameof(parameterValue.ValueJson), ex.Message); + return BadRequest(ModelState); + } + + var model = _mapper.Map(parameterValue); + model.Id = Guid.NewGuid(); + model.DeploymentGroupId = id; + + _context.DeploymentParameterValues.Add(model); + _context.SaveChanges(); + + return Ok(model.Id); + } + + [HttpDelete("{id}/parameter-values/{parameterValueId}")] + [ProducesResponseType(204)] + [ProducesResponseType(404)] + public IActionResult DeleteParameterValue(Guid id, Guid parameterValueId) + { + var parameterValue = _context.DeploymentParameterValues + .FirstOrDefault(existing => existing.DeploymentGroupId == id && existing.Id == parameterValueId); + + if (parameterValue == null) + return NotFound(); + + _context.DeploymentParameterValues.Remove(parameterValue); + _context.SaveChanges(); + + return NoContent(); + } + + [HttpPost("{id}/target-assignments")] + [ProducesResponseType(200, Type = typeof(Guid))] + [ProducesResponseType(400)] + [ProducesResponseType(404)] + public IActionResult AddTargetAssignment(Guid id, [FromBody] AddDeploymentTargetAssignmentDto targetAssignment) + { + if (!_deploymentBatchInterface.CheckDeploymentBatchById(id)) + return NotFound(); + + if (!_context.Targets.Any(target => target.Id == targetAssignment.TargetId)) + { + ModelState.AddModelError(nameof(targetAssignment.TargetId), "Target target was not found."); + return BadRequest(ModelState); + } + + if (_context.DeploymentTargetAssignments.Any(existing => + existing.DeploymentGroupId == id + && existing.TargetId == targetAssignment.TargetId + && existing.RoleKey == targetAssignment.RoleKey)) + { + ModelState.AddModelError(nameof(targetAssignment.TargetId), "Target assignment already exists for this role."); + return BadRequest(ModelState); + } + + try + { + targetAssignment.NodeDataJson = ConfigurationDocumentValidator.NormalizeAndValidate( + targetAssignment.NodeDataJson, + ConfigurationDocumentKind.Metadata).JsonData; + } + catch (ConfigurationDocumentValidationException ex) + { + ModelState.AddModelError(nameof(targetAssignment.NodeDataJson), ex.Message); + return BadRequest(ModelState); + } + + var sortOrder = targetAssignment.SortOrder > 0 + ? targetAssignment.SortOrder + : GetNextTargetAssignmentSortOrder(id); + + var model = _mapper.Map(targetAssignment); + model.Id = Guid.NewGuid(); + model.DeploymentGroupId = id; + model.SortOrder = sortOrder; + + _context.DeploymentTargetAssignments.Add(model); + _context.SaveChanges(); + + return Ok(model.Id); + } + + [HttpDelete("{id}/target-assignments/{targetAssignmentId}")] + [ProducesResponseType(204)] + [ProducesResponseType(404)] + public IActionResult DeleteTargetAssignment(Guid id, Guid targetAssignmentId) + { + var targetAssignment = _context.DeploymentTargetAssignments + .FirstOrDefault(existing => existing.DeploymentGroupId == id && existing.Id == targetAssignmentId); + + if (targetAssignment == null) + return NotFound(); + + _context.DeploymentTargetAssignments.Remove(targetAssignment); + _context.SaveChanges(); + + return NoContent(); + } + + private GetDeploymentCompositionDto LoadComposition(Guid deploymentBatchId) + { + return new GetDeploymentCompositionDto + { + DeploymentBatchId = deploymentBatchId, + TemplateSelections = _mapper.Map>( + _context.DeploymentTemplateSelections + .AsNoTracking() + .Include(selection => selection.TemplateVersion) + .Where(selection => selection.DeploymentGroupId == deploymentBatchId) + .OrderBy(selection => selection.SortOrder) + .ToList()), + ParameterValues = _mapper.Map>( + _context.DeploymentParameterValues + .AsNoTracking() + .Where(parameterValue => parameterValue.DeploymentGroupId == deploymentBatchId) + .OrderBy(parameterValue => parameterValue.Name) + .ToList()), + TargetAssignments = _mapper.Map>( + _context.DeploymentTargetAssignments + .AsNoTracking() + .Include(target => target.Target) + .Where(target => target.DeploymentGroupId == deploymentBatchId) + .OrderBy(target => target.SortOrder) + .ToList()) + }; + } + + private int GetNextTemplateSelectionSortOrder(Guid deploymentBatchId) + { + var maxSortOrder = _context.DeploymentTemplateSelections + .Where(selection => selection.DeploymentGroupId == deploymentBatchId) + .Select(selection => (int?)selection.SortOrder) + .Max() ?? 0; + + return maxSortOrder + 10; + } + + private int GetNextTargetAssignmentSortOrder(Guid deploymentBatchId) + { + var maxSortOrder = _context.DeploymentTargetAssignments + .Where(target => target.DeploymentGroupId == deploymentBatchId) + .Select(target => (int?)target.SortOrder) + .Max() ?? 0; + + return maxSortOrder + 10; + } + } +} + diff --git a/Controllers/DeploymentController.cs b/Controllers/DeploymentController.cs index 80e78ba..808d3c9 100644 --- a/Controllers/DeploymentController.cs +++ b/Controllers/DeploymentController.cs @@ -6,13 +6,8 @@ using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Edit; using Microsoft.SelfService.Portal.Core.API.Interfaces; using Microsoft.SelfService.Portal.Core.API.Models; using Microsoft.SelfService.Portal.Core.API.Context; - -using Microsoft.SelfService.Portal.Core.API.Events.Interfaces; -using System.Reflection; -using System.Collections; -using System.Dynamic; -using System.Text.Json; using Microsoft.EntityFrameworkCore; +using Microsoft.SelfService.Portal.Core.API.JsonDocuments; namespace Microsoft.SelfService.Portal.Core.API.Controllers { @@ -24,20 +19,17 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers private readonly IQueueJobService _queueJobService; private readonly DataContext _context; private readonly IMapper _mapper; - private readonly IEventHandlerInterface _eventHandlerInterface; public DeploymentController( IDeploymentInterface deploymentInterface, IQueueJobService queueJobService, DataContext context, - IMapper mapper, - IEventHandlerInterface eventHandlerInterface) + IMapper mapper) { _deploymentInterface = deploymentInterface; _queueJobService = queueJobService; _context = context; _mapper = mapper; - _eventHandlerInterface = eventHandlerInterface; } [HttpGet] @@ -83,10 +75,18 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers var deploymentMap = _mapper.Map(deployment); - if (!_deploymentInterface.AddDeploymentById(deploymentMap)) + try { - ModelState.AddModelError("", "Something went wrong while saving"); - return StatusCode(500, ModelState); + if (!_deploymentInterface.AddDeploymentById(deploymentMap)) + { + ModelState.AddModelError("", "Something went wrong while saving"); + return StatusCode(500, ModelState); + } + } + catch (ConfigurationDocumentValidationException ex) + { + ModelState.AddModelError(nameof(deployment.JsonData), ex.Message); + return BadRequest(ModelState); } return Ok(deploymentMap.Id); @@ -100,9 +100,9 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers if (request == null) return BadRequest(ModelState); - if (request.VirtualMachineIds == null || request.VirtualMachineIds.Count == 0) + if (request.TargetIds == null || request.TargetIds.Count == 0) { - ModelState.AddModelError("", "At least one VirtualMachine must be selected."); + ModelState.AddModelError("", "At least one Target must be selected."); return BadRequest(ModelState); } @@ -113,7 +113,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers { var queueJobId = _queueJobService.EnqueueDeploymentRequest( request.DeploymentGroupId, - request.VirtualMachineIds, + request.TargetIds, request.JsonData); return Ok(queueJobId); @@ -123,6 +123,11 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers ModelState.AddModelError("", ex.Message); return BadRequest(ModelState); } + catch (ConfigurationDocumentValidationException ex) + { + ModelState.AddModelError(nameof(request.JsonData), ex.Message); + return BadRequest(ModelState); + } } [HttpGet("QueueJobs")] @@ -187,7 +192,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers Targets = queueJob.Targets.Select(target => new GetQueueJobTargetDto { Id = target.Id, - VirtualMachineId = target.VirtualMachineId, + TargetId = target.TargetId, DeploymentGroupId = target.DeploymentGroupId, TemplateId = target.TemplateId, Status = target.Status, @@ -271,6 +276,32 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers return NoContent(); } + [HttpDelete("Batch/{deploymentBatchId}/Target/{targetId}")] + [ProducesResponseType(204)] + [ProducesResponseType(400)] + [ProducesResponseType(404)] + public IActionResult DeleteDeploymentExecution(Guid deploymentBatchId, Guid targetId) + { + if (!_deploymentInterface.CheckDeploymentByCompositeId(deploymentBatchId, targetId)) + return NotFound(); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + var deployment = _deploymentInterface.GetDeploymentByCompositeId(deploymentBatchId, targetId); + + if (deployment == null) + return NotFound(); + + if (!_deploymentInterface.DeleteDeploymentById(deployment)) + { + ModelState.AddModelError("", "Something went wrong while deleting"); + return StatusCode(500, ModelState); + } + + return NoContent(); + } + [HttpPut("{Id}")] [ProducesResponseType(204)] [ProducesResponseType(400)] @@ -289,15 +320,22 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers var deploymentMap = _mapper.Map(deployment); deploymentMap.Id = Id; - if (!_deploymentInterface.EditDeploymentById(deploymentMap)) + try { - ModelState.AddModelError("", "Something went wrong"); - return StatusCode(500, ModelState); + if (!_deploymentInterface.EditDeploymentById(deploymentMap)) + { + ModelState.AddModelError("", "Something went wrong"); + return StatusCode(500, ModelState); + } + } + catch (ConfigurationDocumentValidationException ex) + { + ModelState.AddModelError(nameof(deployment.jsonData), ex.Message); + return BadRequest(ModelState); } - _eventHandlerInterface.FireEvent(this.GetType().Name, MethodBase.GetCurrentMethod().Name, Id); - return NoContent(); } } } + diff --git a/Controllers/DeploymentGroupController.cs b/Controllers/DeploymentGroupController.cs deleted file mode 100644 index 9c4f30b..0000000 --- a/Controllers/DeploymentGroupController.cs +++ /dev/null @@ -1,125 +0,0 @@ -using AutoMapper; -using Microsoft.AspNetCore.Mvc; -using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Get; -using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Add; -using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Edit; -using Microsoft.SelfService.Portal.Core.API.Interfaces; -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Controllers -{ - - [Route("api/[controller]")] - [ApiController] - public class DeploymentGroupController : Controller - { - private readonly IDeploymentGroupInterface _deploymentgroupInterface; - private readonly IMapper _mapper; - - public DeploymentGroupController(IDeploymentGroupInterface deploymentGroupInterface, IMapper mapper) - { - _deploymentgroupInterface = deploymentGroupInterface; - _mapper = mapper; - } - - [HttpGet] - [ProducesResponseType(200, Type = typeof(IEnumerable))] - public IActionResult GetDeploymentGroups() - { - var deploymentgroups = _mapper.Map>(_deploymentgroupInterface.GetDeploymentGroups()); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - return Ok(deploymentgroups); - } - - [HttpGet("{Id}")] - [ProducesResponseType(200, Type = typeof(DeploymentGroupModel))] - [ProducesResponseType(400)] - public IActionResult GetDeploymentGroupById(Guid Id) - { - - if (!_deploymentgroupInterface.CheckDeploymentGroupById(Id)) - return NotFound(); - - var deploymentgroup = _mapper.Map(_deploymentgroupInterface.GetDeploymentGroupById(Id)); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - return Ok(deploymentgroup); - } - - [HttpPost] - [ProducesResponseType(204)] - [ProducesResponseType(400)] - public IActionResult AddDeploymentGroupById([FromBody] AddDeploymentGroupDto deploymentgroup) - { - - if (deploymentgroup == null) - return BadRequest(ModelState); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - var deploymentgroupMap = _mapper.Map(deploymentgroup); - - if (!_deploymentgroupInterface.AddDeploymentGroupById(deploymentgroupMap, deploymentgroup.VirtualMachineIds)) - { - ModelState.AddModelError("", "Something went wrong while saving"); - return StatusCode(500, ModelState); - } - return Ok(deploymentgroupMap.Id); - } - - [HttpDelete("{Id}")] - [ProducesResponseType(204)] - [ProducesResponseType(400)] - [ProducesResponseType(404)] - public IActionResult DeleteDeploymentGroupById(Guid Id) - { - if (!_deploymentgroupInterface.CheckDeploymentGroupById(Id)) - return NotFound(); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - var deploymentgroup = _deploymentgroupInterface.GetDeploymentGroupById(Id); - - if (!_deploymentgroupInterface.DeleteDeploymentGroupById(deploymentgroup)) - { - ModelState.AddModelError("", "Something went wrong while deleting"); - return StatusCode(500, ModelState); - } - return NoContent(); - } - - [HttpPut("{Id}")] - [ProducesResponseType(204)] - [ProducesResponseType(400)] - [ProducesResponseType(404)] - public IActionResult EditDeploymentGroupById(Guid Id, [FromBody] EditDeploymentGroupDto deploymentgroup) - { - if (deploymentgroup == null) - return BadRequest(ModelState); - - if (!_deploymentgroupInterface.CheckDeploymentGroupById(Id)) - return NotFound(); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - var deploymentgroupMap = _mapper.Map(deploymentgroup); - deploymentgroupMap.Id = Id; - - if (!_deploymentgroupInterface.EditDeploymentGroupById(deploymentgroupMap)) - { - ModelState.AddModelError("", "Something went wrong"); - return StatusCode(500, ModelState); - } - - return NoContent(); - } - } -} diff --git a/Controllers/DeploymentRuleController.cs b/Controllers/DeploymentRuleController.cs new file mode 100644 index 0000000..9603a08 --- /dev/null +++ b/Controllers/DeploymentRuleController.cs @@ -0,0 +1,184 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Microsoft.SelfService.Portal.Core.API.Context; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentRule.Add; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentRule.Get; +using Microsoft.SelfService.Portal.Core.API.Models; + +namespace Microsoft.SelfService.Portal.Core.API.Controllers +{ + [Route("api/deployment-rules")] + [ApiController] + public class DeploymentRuleController : Controller + { + private readonly DataContext _context; + + public DeploymentRuleController(DataContext context) + { + _context = context; + } + + [HttpGet] + [ProducesResponseType(200, Type = typeof(IEnumerable))] + public IActionResult GetDeploymentRules() + { + var rules = _context.DeploymentRules + .AsNoTracking() + .Include(rule => rule.Steps) + .OrderBy(rule => rule.Name) + .Select(rule => MapRule(rule)) + .ToList(); + + return Ok(rules); + } + + [HttpGet("{id}")] + [ProducesResponseType(200, Type = typeof(GetDeploymentRuleDto))] + [ProducesResponseType(404)] + public IActionResult GetDeploymentRuleById(Guid id) + { + var rule = _context.DeploymentRules + .AsNoTracking() + .Include(entry => entry.Steps) + .FirstOrDefault(entry => entry.Id == id); + + if (rule == null) + return NotFound(); + + return Ok(MapRule(rule)); + } + + [HttpPost] + [ProducesResponseType(200, Type = typeof(Guid))] + [ProducesResponseType(400)] + public IActionResult AddDeploymentRule([FromBody] AddDeploymentRuleDto deploymentRule) + { + if (deploymentRule == null) + return BadRequest(ModelState); + + var rule = new DeploymentRuleModel + { + Name = deploymentRule.Name, + Description = deploymentRule.Description, + IsActive = deploymentRule.IsActive + }; + + _context.DeploymentRules.Add(rule); + _context.SaveChanges(); + + foreach (var (step, index) in deploymentRule.Steps.Select((value, idx) => (value, idx))) + { + _context.DeploymentRuleSteps.Add(new DeploymentRuleStepModel + { + DeploymentRuleId = rule.Id, + SortOrder = step.SortOrder > 0 ? step.SortOrder : index + 1, + Name = step.Name, + StepType = string.IsNullOrWhiteSpace(step.StepType) ? QueueJobStepType.Provision : step.StepType, + RequiresApproval = step.RequiresApproval, + MetadataJson = step.MetadataJson + }); + } + + _context.SaveChanges(); + return Ok(rule.Id); + } + + [HttpPut("{id}")] + [ProducesResponseType(204)] + [ProducesResponseType(404)] + public IActionResult EditDeploymentRule(Guid id, [FromBody] AddDeploymentRuleDto deploymentRule) + { + var existingRule = _context.DeploymentRules + .Include(rule => rule.Steps) + .FirstOrDefault(rule => rule.Id == id); + + if (existingRule == null) + return NotFound(); + + existingRule.Name = deploymentRule.Name; + existingRule.Description = deploymentRule.Description; + existingRule.IsActive = deploymentRule.IsActive; + + var existingSteps = _context.DeploymentRuleSteps.Where(step => step.DeploymentRuleId == id).ToList(); + if (existingSteps.Count > 0) + { + _context.DeploymentRuleSteps.RemoveRange(existingSteps); + } + + foreach (var (step, index) in deploymentRule.Steps.Select((value, idx) => (value, idx))) + { + _context.DeploymentRuleSteps.Add(new DeploymentRuleStepModel + { + DeploymentRuleId = id, + SortOrder = step.SortOrder > 0 ? step.SortOrder : index + 1, + Name = step.Name, + StepType = string.IsNullOrWhiteSpace(step.StepType) ? QueueJobStepType.Provision : step.StepType, + RequiresApproval = step.RequiresApproval, + MetadataJson = step.MetadataJson + }); + } + + _context.SaveChanges(); + return NoContent(); + } + + [HttpDelete("{id}")] + [ProducesResponseType(204)] + [ProducesResponseType(404)] + public IActionResult DeleteDeploymentRule(Guid id) + { + var existingRule = _context.DeploymentRules.FirstOrDefault(rule => rule.Id == id); + if (existingRule == null) + return NotFound(); + + var linkedTemplates = _context.Templates.Where(template => template.DeploymentRuleId == id).ToList(); + foreach (var template in linkedTemplates) + { + template.DeploymentRuleId = null; + } + + var steps = _context.DeploymentRuleSteps.Where(step => step.DeploymentRuleId == id).ToList(); + if (steps.Count > 0) + { + _context.DeploymentRuleSteps.RemoveRange(steps); + } + + _context.DeploymentRules.Remove(existingRule); + _context.SaveChanges(); + + return NoContent(); + } + + private static GetDeploymentRuleDto MapRule(DeploymentRuleModel rule) + { + return new GetDeploymentRuleDto + { + Id = rule.Id, + Name = rule.Name, + Description = rule.Description, + IsActive = rule.IsActive, + Created = rule.Created, + CreatedBy = rule.CreatedBy, + Modified = rule.Modified, + ModifiedBy = rule.ModifiedBy, + Steps = rule.Steps + .OrderBy(step => step.SortOrder) + .Select(step => new GetDeploymentRuleStepDto + { + Id = step.Id, + SortOrder = step.SortOrder, + Name = step.Name, + StepType = step.StepType, + RequiresApproval = step.RequiresApproval, + MetadataJson = step.MetadataJson, + Created = step.Created, + CreatedBy = step.CreatedBy, + Modified = step.Modified, + ModifiedBy = step.ModifiedBy + }) + .ToList() + }; + } + } +} + diff --git a/Controllers/DomainController.cs b/Controllers/DomainController.cs index faa3c94..b4729b9 100644 --- a/Controllers/DomainController.cs +++ b/Controllers/DomainController.cs @@ -210,16 +210,16 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers return NoContent(); } - [HttpGet("{Id}/VirtualMachines")] + [HttpGet("{Id}/Targets")] [ProducesResponseType(200, Type = typeof(DomainModel))] [ProducesResponseType(400)] - public IActionResult GetVirtualMachinesByDomainId(Guid Id) + public IActionResult GetTargetsByDomainId(Guid Id) { if (!_domainInterface.CheckDomainById(Id)) return NotFound(); - var domain = _mapper.Map(_domainInterface.GetVirtualMachinesByDomainId(Id)); + var domain = _mapper.Map(_domainInterface.GetTargetsByDomainId(Id)); if (!ModelState.IsValid) return BadRequest(ModelState); @@ -228,3 +228,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers } } } + diff --git a/Controllers/EnvironmentController.cs b/Controllers/EnvironmentController.cs index cb223ec..5f29d81 100644 --- a/Controllers/EnvironmentController.cs +++ b/Controllers/EnvironmentController.cs @@ -63,10 +63,16 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers if (_environmentInterface.CheckEnvironmentByName(environment.Name)) { - ModelState.AddModelError("", "Domain already exists"); + ModelState.AddModelError("", "Environment already exists"); return StatusCode(422, ModelState); } + if (!IsValidEnvironmentStage(environment.EnvironmentType) || !IsValidHostingType(environment.HostingType)) + { + ModelState.AddModelError("", "Invalid Environment Stage or Hosting Type."); + return BadRequest(ModelState); + } + if (!ModelState.IsValid) return BadRequest(ModelState); @@ -118,6 +124,12 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers if (!ModelState.IsValid) return BadRequest(ModelState); + if (!IsValidEnvironmentStage(environment.EnvironmentType) || !IsValidHostingType(environment.HostingType)) + { + ModelState.AddModelError("", "Invalid Environment Stage or Hosting Type."); + return BadRequest(ModelState); + } + var environmentMap = _mapper.Map(environment); environmentMap.Id = Id; @@ -130,6 +142,21 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers return NoContent(); } + private static bool IsValidEnvironmentStage(string? stage) + { + return stage == EnvironmentStages.Development + || stage == EnvironmentStages.Test + || stage == EnvironmentStages.QA + || stage == EnvironmentStages.Production; + } + + private static bool IsValidHostingType(string? hostingType) + { + return hostingType == EnvironmentHostingTypes.OnPrem + || hostingType == EnvironmentHostingTypes.AzureTenant + || hostingType == EnvironmentHostingTypes.M365Tenant; + } + [HttpGet("{Id}/Domains")] [ProducesResponseType(200, Type = typeof(EnvironmentModel))] [ProducesResponseType(400)] @@ -161,3 +188,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers } } } + diff --git a/Controllers/RunbookController.cs b/Controllers/RunbookController.cs deleted file mode 100644 index 37d45bc..0000000 --- a/Controllers/RunbookController.cs +++ /dev/null @@ -1,113 +0,0 @@ -using AutoMapper; -using Microsoft.AspNetCore.Mvc; -using Microsoft.SelfService.Portal.Core.API.Dto.Runbook.Get; -using Microsoft.SelfService.Portal.Core.API.Dto.Runbook.Add; -using Microsoft.SelfService.Portal.Core.API.Interfaces; -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Controllers -{ - [Route("api/[controller]")] - [ApiController] - public class RunbookController : Controller - { - - private readonly IRunbookInterface _runbookInterface; - private readonly IMapper _mapper; - - public RunbookController(IRunbookInterface runbookInterface, IMapper mapper) - { - _runbookInterface = runbookInterface; - _mapper = mapper; - } - - [HttpGet] - [ProducesResponseType(200, Type = typeof(IEnumerable))] - public IActionResult GetRunbooks() - { - var runbooks = _mapper.Map>(_runbookInterface.GetRunbooks()); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - return Ok(runbooks); - } - - [HttpGet("{Id}")] - [ProducesResponseType(200, Type = typeof(RunbookModel))] - [ProducesResponseType(400)] - public IActionResult GetRunbookById(Guid Id) - { - - if (!_runbookInterface.CheckRunbookById(Id)) - return NotFound(); - - var runbook = _mapper.Map(_runbookInterface.GetRunbookById(Id)); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - return Ok(runbook); - } - - [HttpPost] - [ProducesResponseType(204)] - [ProducesResponseType(400)] - public IActionResult AddRunbookById([FromBody] AddRunbookDto runbook) - { - - if (runbook == null) - return BadRequest(ModelState); - - if (_runbookInterface.CheckRunbookByName(runbook.Name)) - { - ModelState.AddModelError("", "Runbook already exists"); - return StatusCode(422, ModelState); - } - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - - var runbookMap = _mapper.Map(runbook); - - if (!_runbookInterface.AddRunbookById(runbookMap)) - { - ModelState.AddModelError("", "Something went wrong while saving"); - return StatusCode(500, ModelState); - } - - return Ok("Successfully created"); - } - - [HttpPut("{Id}")] - [ProducesResponseType(204)] - [ProducesResponseType(400)] - [ProducesResponseType(404)] - public IActionResult EditRunbookById(Guid Id, [FromBody] GetRunbookDetailsDto runbook) - { - if (runbook == null) - return BadRequest(ModelState); - - if (Id != runbook.Id) - return BadRequest(ModelState); - - if (!_runbookInterface.CheckRunbookById(Id)) - return NotFound(); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - var runbookMap = _mapper.Map(runbook); - - if (_runbookInterface.EditRunbookById(runbookMap)) - { - ModelState.AddModelError("", "Something went wrong"); - return StatusCode(500, ModelState); - } - - return NoContent(); - } - - } -} diff --git a/Controllers/ServiceController.cs b/Controllers/ServiceController.cs index 3d32c06..b98d140 100644 --- a/Controllers/ServiceController.cs +++ b/Controllers/ServiceController.cs @@ -1,4 +1,4 @@ -using AutoMapper; +using AutoMapper; using Microsoft.AspNetCore.Mvc; using Microsoft.SelfService.Portal.Core.API.Dto.Service.Add; using Microsoft.SelfService.Portal.Core.API.Dto.Service.Edit; @@ -240,3 +240,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers } } } + diff --git a/Controllers/TargetController.cs b/Controllers/TargetController.cs new file mode 100644 index 0000000..075b61b --- /dev/null +++ b/Controllers/TargetController.cs @@ -0,0 +1,203 @@ +using AutoMapper; +using Microsoft.AspNetCore.Mvc; +using Microsoft.SelfService.Portal.Core.API.Dto.Target.Add; +using Microsoft.SelfService.Portal.Core.API.Dto.Target.Edit; +using Microsoft.SelfService.Portal.Core.API.Dto.Target.Get; +using Microsoft.SelfService.Portal.Core.API.Interfaces; +using Microsoft.SelfService.Portal.Core.API.Models; + +namespace Microsoft.SelfService.Portal.Core.API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class TargetController : Controller + { + private readonly ITargetInterface _targetInterface; + private readonly IDomainInterface _domainInterface; + private readonly IMapper _mapper; + + public TargetController(ITargetInterface targetInterface, IDomainInterface domainInterface, IMapper mapper) + { + _targetInterface = targetInterface; + _domainInterface = domainInterface; + _mapper = mapper; + } + + [HttpGet] + [ProducesResponseType(200, Type = typeof(IEnumerable))] + public IActionResult GetTargets() + { + var targets = _mapper.Map>(_targetInterface.GetTargets()); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + return Ok(targets); + } + + [HttpGet("{Id}")] + [ProducesResponseType(200, Type = typeof(TargetModel))] + [ProducesResponseType(400)] + public IActionResult GetTargetById(Guid Id) + { + if (!_targetInterface.CheckTargetById(Id)) + return NotFound(); + + var target = _mapper.Map(_targetInterface.GetTargetById(Id)); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + return Ok(target); + } + + [HttpPost] + [ProducesResponseType(200)] + [ProducesResponseType(400)] + public IActionResult AddTargetById([FromBody] AddTargetDto target) + { + if (target == null) + return BadRequest(ModelState); + + if (_targetInterface.CheckTargetByName(target.Name)) + { + ModelState.AddModelError("", "Target already exists"); + return StatusCode(422, ModelState); + } + + if (target.DomainID.HasValue && !_domainInterface.CheckDomainById(target.DomainID.Value)) + { + ModelState.AddModelError("", "Domain does not exist"); + return BadRequest(ModelState); + } + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + var targetMap = _mapper.Map(target); + + if (!_targetInterface.AddTargetById(targetMap)) + { + ModelState.AddModelError("", "Something went wrong while saving"); + return StatusCode(500, ModelState); + } + + return Ok(targetMap.Id); + } + + [HttpPut("{Id}")] + [ProducesResponseType(204)] + [ProducesResponseType(400)] + [ProducesResponseType(404)] + public IActionResult EditTargetById(Guid Id, [FromBody] EditTargetDto target) + { + if (target == null) + return BadRequest(ModelState); + + if (!_targetInterface.CheckTargetById(Id)) + return NotFound(); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + var existingTarget = _targetInterface.GetTargetById(Id); + if (existingTarget == null) + return NotFound(); + + existingTarget.Name = target.Name; + existingTarget.TargetType = target.TargetType; + existingTarget.ProviderType = target.ProviderType; + existingTarget.ExternalId = target.ExternalId; + existingTarget.MetadataJson = target.MetadataJson; + + if (!_targetInterface.EditTargetById(existingTarget)) + { + ModelState.AddModelError("", "Something went wrong"); + return StatusCode(500, ModelState); + } + + return NoContent(); + } + + [HttpPost("{Id}/Domain/{domainId}")] + [ProducesResponseType(204)] + [ProducesResponseType(400)] + [ProducesResponseType(404)] + [ProducesResponseType(409)] + public IActionResult LinkTargetToDomain(Guid Id, Guid domainId) + { + if (!_targetInterface.CheckTargetById(Id)) + return NotFound(); + + if (!_domainInterface.CheckDomainById(domainId)) + return NotFound(); + + var existingTarget = _targetInterface.GetTargetById(Id); + if (existingTarget == null) + return NotFound(); + + if (existingTarget.DomainID.HasValue) + return Conflict("Target is already linked to a domain. Unlink it first."); + + existingTarget.DomainID = domainId; + + if (!_targetInterface.EditTargetById(existingTarget)) + { + ModelState.AddModelError("", "Something went wrong"); + return StatusCode(500, ModelState); + } + + return NoContent(); + } + + [HttpDelete("{Id}/Domain")] + [ProducesResponseType(204)] + [ProducesResponseType(404)] + public IActionResult UnlinkTargetFromDomain(Guid Id) + { + if (!_targetInterface.CheckTargetById(Id)) + return NotFound(); + + var existingTarget = _targetInterface.GetTargetById(Id); + if (existingTarget == null) + return NotFound(); + + if (!existingTarget.DomainID.HasValue) + return NoContent(); + + existingTarget.DomainID = null; + + if (!_targetInterface.EditTargetById(existingTarget)) + { + ModelState.AddModelError("", "Something went wrong"); + return StatusCode(500, ModelState); + } + + return NoContent(); + } + + [HttpDelete("{Id}")] + [ProducesResponseType(204)] + [ProducesResponseType(400)] + [ProducesResponseType(404)] + public IActionResult DeleteTargetById(Guid Id) + { + if (!_targetInterface.CheckTargetById(Id)) + return NotFound(); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + var target = _targetInterface.GetTargetById(Id); + + if (!_targetInterface.DeleteTargetById(target)) + { + ModelState.AddModelError("", "Something went wrong while deleting"); + return StatusCode(500, ModelState); + } + + return NoContent(); + } + } +} + diff --git a/Controllers/TemplateCategoryController.cs b/Controllers/TemplateCategoryController.cs index 27a39d6..05b9083 100644 --- a/Controllers/TemplateCategoryController.cs +++ b/Controllers/TemplateCategoryController.cs @@ -1,4 +1,4 @@ -using AutoMapper; +using AutoMapper; using Microsoft.AspNetCore.Mvc; using Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Add; using Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Edit; @@ -128,3 +128,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers } } } + diff --git a/Controllers/TemplateController.cs b/Controllers/TemplateController.cs index ab721a7..06f2ba5 100644 --- a/Controllers/TemplateController.cs +++ b/Controllers/TemplateController.cs @@ -1,9 +1,12 @@ -using AutoMapper; +using AutoMapper; using Microsoft.AspNetCore.Mvc; using Microsoft.SelfService.Portal.Core.API.Dto.Template.Add; using Microsoft.SelfService.Portal.Core.API.Dto.Template.Edit; using Microsoft.SelfService.Portal.Core.API.Dto.Template.Get; +using Microsoft.SelfService.Portal.Core.API.Dto.TemplateVersion.Add; +using Microsoft.SelfService.Portal.Core.API.Dto.TemplateVersion.Get; using Microsoft.SelfService.Portal.Core.API.Interfaces; +using Microsoft.SelfService.Portal.Core.API.JsonDocuments; using Microsoft.SelfService.Portal.Core.API.Models; namespace Microsoft.SelfService.Portal.Core.API.Controllers @@ -73,10 +76,18 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers var templateMap = _mapper.Map(template); - if (!_templateInterface.AddTemplateById(templateMap)) + try { - ModelState.AddModelError("", "Something went wrong while saving"); - return StatusCode(500, ModelState); + if (!_templateInterface.AddTemplateById(templateMap)) + { + ModelState.AddModelError("", "Something went wrong while saving"); + return StatusCode(500, ModelState); + } + } + catch (ConfigurationDocumentValidationException ex) + { + ModelState.AddModelError(nameof(template.JSONData), ex.Message); + return BadRequest(ModelState); } return Ok(templateMap.Id); @@ -102,10 +113,18 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers var templateMap = _mapper.Map(template); templateMap.Id = Id; - if (!_templateInterface.EditTemplateById(templateMap)) + try { - ModelState.AddModelError("", "Something went wrong"); - return StatusCode(500, ModelState); + if (!_templateInterface.EditTemplateById(templateMap)) + { + ModelState.AddModelError("", "Something went wrong"); + return StatusCode(500, ModelState); + } + } + catch (ConfigurationDocumentValidationException ex) + { + ModelState.AddModelError(nameof(template.JSONData), ex.Message); + return BadRequest(ModelState); } if (!string.Equals(existingTemplate.JSONData, template.JSONData, StringComparison.Ordinal)) @@ -138,5 +157,82 @@ namespace Microsoft.SelfService.Portal.Core.API.Controllers return NoContent(); } + + [HttpGet("{Id}/Versions")] + [ProducesResponseType(200, Type = typeof(IEnumerable))] + [ProducesResponseType(404)] + public IActionResult GetTemplateVersions(Guid Id) + { + if (!_templateInterface.CheckTemplateById(Id)) + return NotFound(); + + var versions = _mapper.Map>(_templateInterface.GetTemplateVersions(Id)); + return Ok(versions); + } + + [HttpGet("{Id}/Versions/{VersionId}")] + [ProducesResponseType(200, Type = typeof(GetTemplateVersionDto))] + [ProducesResponseType(404)] + public IActionResult GetTemplateVersionById(Guid Id, Guid VersionId) + { + var version = _templateInterface.GetTemplateVersionById(Id, VersionId); + if (version == null) + return NotFound(); + + return Ok(_mapper.Map(version)); + } + + [HttpPost("{Id}/Versions")] + [ProducesResponseType(200, Type = typeof(Guid))] + [ProducesResponseType(400)] + [ProducesResponseType(404)] + public IActionResult AddTemplateVersion(Guid Id, [FromBody] AddTemplateVersionDto templateVersion) + { + if (templateVersion == null) + return BadRequest(ModelState); + + if (!_templateInterface.CheckTemplateById(Id)) + return NotFound(); + + if (!ModelState.IsValid) + return BadRequest(ModelState); + + if (_templateInterface.CheckTemplateVersionByVersion(Id, templateVersion.Version)) + { + ModelState.AddModelError(nameof(templateVersion.Version), "Template version already exists"); + return StatusCode(422, ModelState); + } + + var version = _mapper.Map(templateVersion); + version.PublishedBy = templateVersion.PublishedBy ?? User?.Identity?.Name ?? "System"; + + try + { + if (!_templateInterface.AddTemplateVersion(Id, version, templateVersion.Publish)) + { + ModelState.AddModelError("", "Something went wrong while saving template version"); + return StatusCode(500, ModelState); + } + } + catch (ConfigurationDocumentValidationException ex) + { + ModelState.AddModelError(nameof(templateVersion.JsonData), ex.Message); + return BadRequest(ModelState); + } + + return Ok(version.Id); + } + + [HttpPost("{Id}/Versions/{VersionId}/Publish")] + [ProducesResponseType(204)] + [ProducesResponseType(404)] + public IActionResult PublishTemplateVersion(Guid Id, Guid VersionId) + { + if (!_templateInterface.PublishTemplateVersion(Id, VersionId, User?.Identity?.Name ?? "System")) + return NotFound(); + + return NoContent(); + } } } + diff --git a/Controllers/VirtualMachineController.cs b/Controllers/VirtualMachineController.cs deleted file mode 100644 index cf8e2ce..0000000 --- a/Controllers/VirtualMachineController.cs +++ /dev/null @@ -1,200 +0,0 @@ -using AutoMapper; -using Microsoft.AspNetCore.Mvc; -using Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Add; -using Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Edit; -using Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get; -using Microsoft.SelfService.Portal.Core.API.Interfaces; -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Controllers -{ - [Route("api/[controller]")] - [ApiController] - public class VirtualMachineController : Controller - { - private readonly IVirtualMachineInterface _virtualmachineInterface; - private readonly IDomainInterface _domainInterface; - private readonly IMapper _mapper; - - public VirtualMachineController(IVirtualMachineInterface virtualmachineInterface, IDomainInterface domainInterface, IMapper mapper) - { - _virtualmachineInterface = virtualmachineInterface; - _domainInterface = domainInterface; - _mapper = mapper; - } - - [HttpGet] - [ProducesResponseType(200, Type = typeof(IEnumerable))] - public IActionResult GetVirtualMachines() - { - var virtualMachines = _mapper.Map>(_virtualmachineInterface.GetVirtualMachines()); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - return Ok(virtualMachines); - } - - [HttpGet("{Id}")] - [ProducesResponseType(200, Type = typeof(VirtualMachineModel))] - [ProducesResponseType(400)] - public IActionResult GetVirtualMachineById(Guid Id) - { - if (!_virtualmachineInterface.CheckVirtualMachineById(Id)) - return NotFound(); - - var virtualMachine = _mapper.Map(_virtualmachineInterface.GetVirtualMachineById(Id)); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - return Ok(virtualMachine); - } - - [HttpPost] - [ProducesResponseType(200)] - [ProducesResponseType(400)] - public IActionResult AddVirtualMachineById([FromBody] AddVirtualMachineDto virtualMachine) - { - if (virtualMachine == null) - return BadRequest(ModelState); - - if (_virtualmachineInterface.CheckVirtualMachineByName(virtualMachine.Name)) - { - ModelState.AddModelError("", "VirtualMachine already exists"); - return StatusCode(422, ModelState); - } - - if (virtualMachine.DomainID.HasValue && !_domainInterface.CheckDomainById(virtualMachine.DomainID.Value)) - { - ModelState.AddModelError("", "Domain does not exist"); - return BadRequest(ModelState); - } - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - var virtualMachineMap = _mapper.Map(virtualMachine); - - if (!_virtualmachineInterface.AddVirtualMachineById(virtualMachineMap)) - { - ModelState.AddModelError("", "Something went wrong while saving"); - return StatusCode(500, ModelState); - } - - return Ok(virtualMachineMap.Id); - } - - [HttpPut("{Id}")] - [ProducesResponseType(204)] - [ProducesResponseType(400)] - [ProducesResponseType(404)] - public IActionResult EditVirtualMachineById(Guid Id, [FromBody] EditVirtualMachineDto virtualMachine) - { - if (virtualMachine == null) - return BadRequest(ModelState); - - if (!_virtualmachineInterface.CheckVirtualMachineById(Id)) - return NotFound(); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - var existingVirtualMachine = _virtualmachineInterface.GetVirtualMachineById(Id); - if (existingVirtualMachine == null) - return NotFound(); - - existingVirtualMachine.Name = virtualMachine.Name; - existingVirtualMachine.ExternalId = virtualMachine.ExternalId; - existingVirtualMachine.MetadataJson = virtualMachine.MetadataJson; - - if (!_virtualmachineInterface.EditVirtualMachineById(existingVirtualMachine)) - { - ModelState.AddModelError("", "Something went wrong"); - return StatusCode(500, ModelState); - } - - return NoContent(); - } - - [HttpPost("{Id}/Domain/{domainId}")] - [ProducesResponseType(204)] - [ProducesResponseType(400)] - [ProducesResponseType(404)] - [ProducesResponseType(409)] - public IActionResult LinkVirtualMachineToDomain(Guid Id, Guid domainId) - { - if (!_virtualmachineInterface.CheckVirtualMachineById(Id)) - return NotFound(); - - if (!_domainInterface.CheckDomainById(domainId)) - return NotFound(); - - var existingVirtualMachine = _virtualmachineInterface.GetVirtualMachineById(Id); - if (existingVirtualMachine == null) - return NotFound(); - - if (existingVirtualMachine.DomainID.HasValue) - return Conflict("VirtualMachine is already linked to a domain. Unlink it first."); - - existingVirtualMachine.DomainID = domainId; - - if (!_virtualmachineInterface.EditVirtualMachineById(existingVirtualMachine)) - { - ModelState.AddModelError("", "Something went wrong"); - return StatusCode(500, ModelState); - } - - return NoContent(); - } - - [HttpDelete("{Id}/Domain")] - [ProducesResponseType(204)] - [ProducesResponseType(404)] - public IActionResult UnlinkVirtualMachineFromDomain(Guid Id) - { - if (!_virtualmachineInterface.CheckVirtualMachineById(Id)) - return NotFound(); - - var existingVirtualMachine = _virtualmachineInterface.GetVirtualMachineById(Id); - if (existingVirtualMachine == null) - return NotFound(); - - if (!existingVirtualMachine.DomainID.HasValue) - return NoContent(); - - existingVirtualMachine.DomainID = null; - - if (!_virtualmachineInterface.EditVirtualMachineById(existingVirtualMachine)) - { - ModelState.AddModelError("", "Something went wrong"); - return StatusCode(500, ModelState); - } - - return NoContent(); - } - - [HttpDelete("{Id}")] - [ProducesResponseType(204)] - [ProducesResponseType(400)] - [ProducesResponseType(404)] - public IActionResult DeleteVirtualMachineById(Guid Id) - { - if (!_virtualmachineInterface.CheckVirtualMachineById(Id)) - return NotFound(); - - if (!ModelState.IsValid) - return BadRequest(ModelState); - - var virtualMachine = _virtualmachineInterface.GetVirtualMachineById(Id); - - if (!_virtualmachineInterface.DeleteVirtualMachineById(virtualMachine)) - { - ModelState.AddModelError("", "Something went wrong while deleting"); - return StatusCode(500, ModelState); - } - - return NoContent(); - } - } -} diff --git a/Docs/Architecture/DeploymentModel.md b/Docs/Architecture/DeploymentModel.md new file mode 100644 index 0000000..c7feab3 --- /dev/null +++ b/Docs/Architecture/DeploymentModel.md @@ -0,0 +1,559 @@ +# Deployment Model Architecture + +## Purpose + +The portal should become a generic configuration composition platform. It must support on-premises workloads such as Active Directory, SQL Server, SharePoint, and Exchange, as well as cloud workloads such as Teams, Azure, and M365. + +The database should not know SharePoint-specific concepts such as farm accounts or service application pools. Those details belong inside versioned template documents. The database should know how templates, environments, domains, targets, deployments, jobs, and artifacts relate to each other. + +## Core Concepts + +The model separates reusable catalog data from concrete execution data: + +```text +Catalog: + Environment + Domain + Service + Target + Template + TemplateVersion + +Design: + DeploymentGroup + Deployment + DeploymentTemplateSelection + DeploymentParameterValue + DeploymentTarget + +Execution: + QueueJob + QueueJobStep + QueueJobTarget + DeploymentArtifact +``` + +### Environment + +An environment is a logical target context, for example `Prod A`, `Test A`, `Prod B`, `Test B`, or `QA B`. + +Suggested fields: + +- `Id` +- `Key` +- `Name` +- `Stage`, for example `Development`, `Test`, `QA`, `Production` +- `HostingType`, for example `OnPrem`, `Azure`, `M365`, `Hybrid` +- `ProviderType` +- `TenantId` +- `SubscriptionId` +- `MetadataJson` + +### Domain + +A domain is reusable catalog data and configuration. A domain can be linked to multiple environments. + +Example: + +```text +Central-Management + -> Test A + -> Prod A + -> QA B +``` + +The goal is to change the Central-Management domain configuration once and then decide which linked environments should consume the new version. + +Suggested relationship: + +```text +EnvironmentDomain +- EnvironmentId +- DomainId +- Role +- SortOrder +``` + +### Service + +A service represents a workload family, for example: + +- `active-directory` +- `sql-server` +- `sharepoint` +- `exchange` +- `teams` +- `azure-network` + +Suggested fields: + +- `Id` +- `Key` +- `Name` +- `Description` +- `WorkloadType`, for example `OnPrem`, `Azure`, `M365`, `Hybrid` +- `IconKey` +- `IsActive` + +### Target + +A target is anything a deployment can act on. It should not be limited to virtual machines. + +Suggested target types: + +- `VirtualMachine` +- `Tenant` +- `Subscription` +- `ResourceGroup` +- `User` +- `Group` +- `Site` +- `PolicyScope` + +Suggested fields: + +- `Id` +- `Name` +- `TargetType` +- `EnvironmentId` +- `DomainId` +- `ExternalId` +- `MetadataJson` + +For current VM usage, `VirtualMachineModel` can either remain as a specialized target table during migration or be folded into a generic target model later. + +## Templates + +### Template + +`Template` should be the stable catalog entry. It should not contain mutable deployment content. + +Suggested fields: + +- `Id` +- `Key`, for example `service.sharepoint.default` +- `Name` +- `TemplateType`, for example `Domain`, `Environment`, `Service`, `Stage`, `TargetSet`, `Policy` +- `WorkloadType`, for example `OnPrem`, `Azure`, `M365`, `Hybrid` +- `ServiceId` +- `TemplateCategoryId` +- `DeploymentRuleId` +- `IsActive` + +`Template` is mutable catalog metadata. It can be renamed, categorized, activated, or deactivated without changing the immutable template document history. + +### TemplateVersion + +`TemplateVersion` should contain the immutable template document. + +Suggested fields: + +- `Id` +- `TemplateId` +- `Version` +- `JsonData` +- `JsonHash` +- `SchemaVersion` +- `IsPublished` +- `PublishedAt` +- `PublishedBy` +- `Created` +- `CreatedBy` + +Recommended constraints: + +- Unique: `TemplateId + Version` +- Optional unique filtered index: `TemplateId` where `IsPublished = true`, if only one current published version should exist. + +Template version content is immutable after publication. If the document changes, create a new `TemplateVersion`. + +## JsonData Strategy + +Keep `JsonData` as text in SQL Server, but do not treat it as an unstructured dumping ground. +The canonical document shapes and validation rules are defined in `Docs/Architecture/JsonDocumentContract.md`. + +Database storage: + +```text +JsonData nvarchar(max) +JsonHash nvarchar(64) +SchemaVersion nvarchar(32) +``` + +EF model storage can remain a string: + +```csharp +public string JsonData { get; private set; } = "{}"; +public string JsonHash { get; private set; } = string.Empty; +public string SchemaVersion { get; set; } = "1.0"; +``` + +API DTOs should expose real JSON instead of escaped JSON strings where practical: + +```csharp +public JsonElement JsonData { get; set; } +``` + +The service layer should canonicalize JSON, validate it, calculate the hash, and store it as a string. + +Recommended approach: + +1. Store the canonical template/deployment document as JSON. +2. Version every template document. +3. Validate JSON before saving. +4. Store a content hash beside the document. +5. Store schema version beside the document. +6. Project frequently queried values into normal columns or helper tables. + +Do not store binary .NET serialization, base64 payloads, or provider-specific object graphs. The stored document should remain plain JSON so it can be returned by the API, diffed, hashed, migrated, and rendered to DSC v3 documents later. + +This gives us flexibility for DSC v2, DSC v3, and cloud workloads without turning every possible parameter/resource into relational tables. + +### Why Keep JSON? + +The configuration document is naturally hierarchical: + +```text +Metadata +Parameters +Variables +Resources +``` + +Trying to fully normalize this would make the database rigid and painful for new services. SharePoint, Exchange, Teams, and Azure do not share the same resource shape. + +### What Should Be Normalized? + +Normalize stable catalog and workflow data: + +- templates +- template versions +- environments +- domains +- services +- targets +- deployment groups +- deployments +- template selections +- parameter overrides +- jobs +- artifacts + +Keep service-specific configuration inside `JsonData`. + +### Optional Projection Tables + +For GUI performance and validation, create projection tables derived from `JsonData`. + +Example: + +```text +TemplateParameters +- TemplateVersionId +- Name +- Type +- Required +- Sensitive +- Sealed +- DescriptionJson +- AllowedValuesJson +``` + +The source of truth stays `TemplateVersion.JsonData`. Projection tables can be rebuilt when a template version changes. + +## Deployments + +### DeploymentGroup + +A deployment group represents a deployable environment composition, for example: + +```text +Contoso Test A Full Farm + - AD Deployment + - SQL Deployment + - SharePoint Deployment +``` + +Suggested fields: + +- `Id` +- `EnvironmentId` +- `Name` +- `Status` +- `DeploymentRuleId` +- `Created` +- `CreatedBy` + +In the current model, `DeploymentGroupModel` maps to the `DeploymentBatches` table and still has a direct `TemplateId`. In the target model this direct `TemplateId` becomes legacy. The selected templates move to `DeploymentTemplateSelection`. + +### Deployment + +A deployment is one deployable workload slice inside a group. + +Examples: + +- `AD` +- `SQL` +- `SharePoint` +- `Exchange` +- `Teams Policies` + +Suggested fields: + +- `Id` +- `DeploymentGroupId` +- `ServiceId` +- `Name` +- `SortOrder` +- `Status` +- `DeploymentDataJson` +- `MergedConfigurationDataJson` +- `ResolvedPreviewJson` +- `RendererTarget`, for example `PowerShellDscV2`, `DscV3Json`, `CloudApi` + +In the current model, `DeploymentModel` maps to `DeploymentExecutions` and is keyed by `VirtualMachineId + DeploymentGroupId`. This is closer to a target execution than to a design-level deployment. During migration, keep it as compatibility data and introduce the new composition tables beside it. + +### DeploymentTemplateSelection + +A deployment selects multiple template versions. + +Suggested fields: + +- `Id` +- `DeploymentId` +- `TemplateVersionId` +- `TemplateRole`, for example `Domain`, `Environment`, `Service`, `Stage`, `TargetSet`, `Policy` +- `SortOrder` +- `Alias` + +Example SharePoint deployment: + +```text +Domain/Central-Management +Environment/Test A +Service/SharePoint/Contoso +Stage/Install +Targets/SharePointNodes +``` + +### DeploymentParameterValue + +User overrides should be stored separately from the generated full deployment document. + +Suggested fields: + +- `Id` +- `DeploymentId` +- `DeploymentTemplateSelectionId` +- `Name` +- `ValueJson` +- `IsSecretReference` +- `IsOverride` + +### DeploymentTarget + +Suggested fields: + +- `Id` +- `DeploymentId` +- `TargetId` +- `RoleKey`, for example `DomainController`, `SqlServer`, `SharePointServer`, `TeamsPolicyScope` +- `SortOrder` +- `NodeDataJson` + +## Queue And Worker + +The existing `QueueJobModel`, `QueueJobStepModel`, and `QueueJobTargetModel` are a good foundation. + +Recommended additions: + +- `CorrelationId` +- `Priority` +- `ScheduledAt` +- `HeartbeatAt` +- `WorkerName` +- `RowVersion` + +Recommended indexes: + +- `(Status, LockedUntil, Created)` +- `(Type, Status)` +- `(CorrelationId)` + +The worker should claim jobs atomically and update `LockedBy`, `LockedUntil`, and `HeartbeatAt`. + +The existing queue tables can remain. The first improvements should be additive so the current Web/API flow keeps working. + +## Artifacts + +Generated output should be stored as artifacts. + +Suggested fields: + +- `Id` +- `DeploymentId` +- `QueueJobId` +- `ArtifactType`, for example `MergedJson`, `ResolvedPreviewJson`, `PowerShellDataFile`, `Mof`, `DscV3Json`, `Log` +- `Path` +- `ContentHash` +- `ContentJson` +- `ContentText` +- `Created` + +## Worker Pipeline + +Current DSC v2 flow: + +```text +Load template versions +Convert JSON to ordered PowerShell hashtables +Merge-DSCConfigurationData +Resolve-DSCConfigurationData +Render PowerShell DSC v2 +Compile MOF +Store artifacts and status +``` + +Future DSC v3 flow: + +```text +Load template versions +Merge/resolve +Render DSC v3 JSON/YAML document +dsc config test/set +Store artifacts and status +``` + +The worker should therefore have a renderer abstraction: + +- `PowerShellDscV2Renderer` +- `DscV3JsonRenderer` +- future cloud/action renderers + +## Migration Strategy + +1. Add `TemplateVersions` while keeping `Templates.JSONData`. +2. Create one initial `TemplateVersion` per existing `Template`. +3. Update API reads to expose the current published version. +4. Add deployment composition tables next to the existing deployment batch/execution model. +5. Migrate Web and Worker to the new model. +6. Remove legacy fields only after the new flow is stable. + +## Current Model Mapping + +The current model maps to the target model as follows: + +```text +TemplateModel + -> Template + -> TemplateVersion + +TemplateCategoryModel + -> TemplateCategory + +ServiceModel + -> Service + +EnvironmentModel + -> Environment + +DomainModel + -> Domain + +EnvironmentDomainsModel + -> EnvironmentDomain + +VirtualMachineModel + -> Target where TargetType = VirtualMachine + +DeploymentGroupModel / DeploymentBatches + -> DeploymentGroup + +DeploymentModel / DeploymentExecutions + -> legacy deployment target/execution record + -> later replaced or complemented by Deployment + DeploymentTarget + +QueueJobModel / DeploymentJobs + -> QueueJob + +QueueJobStepModel / DeploymentJobSteps + -> QueueJobStep + +QueueJobTargetModel / DeploymentJobTargets + -> QueueJobTarget +``` + +## Compatibility Rules + +During migration: + +- Keep existing endpoints working. +- Keep `TemplateModel.JSONData` until API reads and writes use `TemplateVersion`. +- New code should prefer `TemplateVersion.JsonData`. +- Existing `DeploymentGroup.TemplateId` remains legacy and should be populated for old clients. +- New deployments should use `DeploymentTemplateSelection`. +- Do not remove old database columns until Web and Worker are migrated. +- Worker code should be written against the target composition model as soon as the new tables exist. + +## Planned API Shape + +Initial compatibility endpoint: + +```text +GET /api/Template/{id} +``` + +should continue to return the existing DTO shape, but its `JsonData` should come from the current published `TemplateVersion` when available. + +New endpoints: + +```text +GET /api/templates/{templateId}/versions +GET /api/templates/{templateId}/versions/{versionId} +POST /api/templates/{templateId}/versions +POST /api/templates/{templateId}/versions/{versionId}/publish +``` + +Deployment composition endpoints later: + +```text +GET /api/deployment-groups/{id}/composition +POST /api/deployment-groups/{id}/deployments +POST /api/deployments/{id}/template-selections +POST /api/deployments/{id}/targets +POST /api/deployments/{id}/parameter-values +``` + +## First Database Change + +The first concrete database change should be additive: + +```text +TemplateVersions +- Id +- TemplateId +- Version +- JsonData +- JsonHash +- SchemaVersion +- IsPublished +- PublishedAt +- PublishedBy +- Modified +- ModifiedBy +- Created +- CreatedBy +``` + +`TemplateVersions.TemplateId` references `Templates.Id`. + +For existing data, create one version per current template: + +```text +Version = Templates.Version +JsonData = Templates.JSONData +IsPublished = true +SchemaVersion = '1.0' +``` + +After this step, new code can begin reading from `TemplateVersions` while old code can still read `Templates.JSONData`. diff --git a/Docs/Architecture/JsonDocumentContract.md b/Docs/Architecture/JsonDocumentContract.md new file mode 100644 index 0000000..405693c --- /dev/null +++ b/Docs/Architecture/JsonDocumentContract.md @@ -0,0 +1,79 @@ +# JSON Document Contract + +The API stores configuration documents as JSON strings, but treats them as typed contracts. +Workers can convert those documents to ordered PowerShell hashtables for DSC v2, while future DSC v3 renderers can consume JSON directly. + +## Template Document + +Template documents are versioned through `TemplateVersionModel.JsonData`. +Every stored template version must be a JSON object with this shape: + +```json +{ + "schemaVersion": "1.0", + "templateType": "Service", + "parameters": {}, + "variables": {}, + "resources": {} +} +``` + +Required fields: + +- `schemaVersion`: Contract version. Currently supported: `1.0`. +- `templateType`: One of `Environment`, `Domain`, `Landscape`, `Service`, `Stage`, or `Deployment`. +- `parameters`: Object with user-facing inputs and metadata. +- `variables`: Object with derived values and expressions. +- `resources`: Object with configuration blocks that can be merged and rendered. + +Template documents are normalized and validated before a `TemplateVersion` is persisted. +The API calculates `JsonHash` from the normalized document and stores the effective `SchemaVersion`. + +## Deployment Override Document + +Deployment override documents are stored on deployment executions and queue jobs. +They are currently intentionally permissive so legacy requests like this remain valid: + +```json +{ + "role": "WebFrontEnd" +} +``` + +The canonical shape for new deployments should be: + +```json +{ + "schemaVersion": "1.0", + "parameters": {}, + "variables": {}, + "resources": {}, + "targets": [] +} +``` + +Step 4 will make this stricter when deployments can reference multiple immutable template versions. + +## Metadata Documents + +Fields such as `MetadataJson` and `RuleSnapshotJson` are metadata documents. +They must be valid JSON objects when explicitly validated, but they do not need the full template contract. + +## Validation Rules + +- The root value must be a JSON object. +- Template documents must contain the required fields listed above. +- Unsupported `schemaVersion` values are rejected. +- Unsupported `templateType` values are rejected. +- If a client submits `SchemaVersion` for a template version, it must match the document's `schemaVersion`. + +## Queryable Fields + +For now, the API projects these fields into columns: + +- `TemplateVersion.SchemaVersion` +- `TemplateVersion.JsonHash` +- `TemplateVersion.Version` +- `TemplateVersion.IsPublished` + +Additional document fields should only become relational columns when the GUI or worker needs filtering, sorting, or joins over that field. diff --git a/Dto/AddEnvironmentDomainDto.cs b/Dto/AddEnvironmentDomainDto.cs index 0e48af4..1347678 100644 --- a/Dto/AddEnvironmentDomainDto.cs +++ b/Dto/AddEnvironmentDomainDto.cs @@ -6,3 +6,4 @@ public Guid DomainId { get; set; } } } + diff --git a/Dto/BaseDetailsDto.cs b/Dto/BaseDetailsDto.cs index 546c5bb..29c99a8 100644 --- a/Dto/BaseDetailsDto.cs +++ b/Dto/BaseDetailsDto.cs @@ -27,3 +27,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto public string CreatedBy { get; set; } = "System"; } } + diff --git a/Dto/BaseDto.cs b/Dto/BaseDto.cs index 95b321c..504baf4 100644 --- a/Dto/BaseDto.cs +++ b/Dto/BaseDto.cs @@ -12,3 +12,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto public Guid Id { get; set; } } } + diff --git a/Dto/Deployment/Add/AddDeploymentDto.cs b/Dto/Deployment/Add/AddDeploymentDto.cs index 7927dec..95f258e 100644 --- a/Dto/Deployment/Add/AddDeploymentDto.cs +++ b/Dto/Deployment/Add/AddDeploymentDto.cs @@ -3,10 +3,11 @@ public class AddDeploymentDto { public Guid DeploymentGroupId { get; set; } - public Guid VirtualMachineId { get; set; } + public Guid TargetId { get; set; } public string Status { get; set; } public string JsonData { get; set; } } } + diff --git a/Dto/Deployment/Add/AddDeploymentRequestDto.cs b/Dto/Deployment/Add/AddDeploymentRequestDto.cs index ccf39f6..ed429b9 100644 --- a/Dto/Deployment/Add/AddDeploymentRequestDto.cs +++ b/Dto/Deployment/Add/AddDeploymentRequestDto.cs @@ -1,9 +1,10 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add +namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add { public class AddDeploymentRequestDto { public Guid DeploymentGroupId { get; set; } - public ICollection VirtualMachineIds { get; set; } = new List(); + public ICollection TargetIds { get; set; } = new List(); public string JsonData { get; set; } = "{}"; } } + diff --git a/Dto/Deployment/Add/QueueJobStepApprovalDto.cs b/Dto/Deployment/Add/QueueJobStepApprovalDto.cs index 8a5ebd3..e2ebe21 100644 --- a/Dto/Deployment/Add/QueueJobStepApprovalDto.cs +++ b/Dto/Deployment/Add/QueueJobStepApprovalDto.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add +namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add { public class QueueJobStepApprovalDto { @@ -6,3 +6,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add public string? ApprovedBy { get; set; } } } + diff --git a/Dto/Deployment/Edit/EditDeploymentDto.cs b/Dto/Deployment/Edit/EditDeploymentDto.cs index 8e9292b..4dea36e 100644 --- a/Dto/Deployment/Edit/EditDeploymentDto.cs +++ b/Dto/Deployment/Edit/EditDeploymentDto.cs @@ -11,9 +11,10 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Edit public string jsonData { get; set; } [Column(Order = 1)] - public Guid VirtualMachineId { get; set; } + public Guid TargetId { get; set; } [Column(Order = 1)] public Guid DeploymentGroupId { get; set; } } } + diff --git a/Dto/Deployment/Get/GetDeploymentDetailsDto.cs b/Dto/Deployment/Get/GetDeploymentDetailsDto.cs index bc7770e..12790c4 100644 --- a/Dto/Deployment/Get/GetDeploymentDetailsDto.cs +++ b/Dto/Deployment/Get/GetDeploymentDetailsDto.cs @@ -1,13 +1,14 @@ -using Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get; +using Microsoft.SelfService.Portal.Core.API.Dto.Target.Get; namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get { public class GetDeploymentDetailsDto : BaseDetailsDto { - public Guid VirtualMachineId { get; set; } + public Guid TargetId { get; set; } public string Status { get; set; } public string JSONData { get; set; } - public GetVirtualMachineDetailsDto VirtualMachine { get; set; } + public GetTargetDetailsDto Target { get; set; } } } + diff --git a/Dto/Deployment/Get/GetDeploymentDto.cs b/Dto/Deployment/Get/GetDeploymentDto.cs index 5a1695f..4e72890 100644 --- a/Dto/Deployment/Get/GetDeploymentDto.cs +++ b/Dto/Deployment/Get/GetDeploymentDto.cs @@ -5,8 +5,9 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get public class GetDeploymentDto : BaseDto { public Guid DeploymentGroupId { get; set; } - public Guid VirtualMachineId { get; set; } + public Guid TargetId { get; set; } public string Status { get; set; } public string JSONData { get; set; } } } + diff --git a/Dto/Deployment/Get/GetQueueJobDetailsDto.cs b/Dto/Deployment/Get/GetQueueJobDetailsDto.cs index 5414a5b..ce766f8 100644 --- a/Dto/Deployment/Get/GetQueueJobDetailsDto.cs +++ b/Dto/Deployment/Get/GetQueueJobDetailsDto.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get +namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get { public class GetQueueJobDetailsDto : BaseDetailsDto { @@ -16,3 +16,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get public ICollection Steps { get; set; } = new List(); } } + diff --git a/Dto/Deployment/Get/GetQueueJobDto.cs b/Dto/Deployment/Get/GetQueueJobDto.cs index 03eabd7..7018d0d 100644 --- a/Dto/Deployment/Get/GetQueueJobDto.cs +++ b/Dto/Deployment/Get/GetQueueJobDto.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get +namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get { public class GetQueueJobDto : BaseDto { @@ -14,3 +14,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get public int FailedTargetCount { get; set; } } } + diff --git a/Dto/Deployment/Get/GetQueueJobStepDto.cs b/Dto/Deployment/Get/GetQueueJobStepDto.cs index eb29263..c591092 100644 --- a/Dto/Deployment/Get/GetQueueJobStepDto.cs +++ b/Dto/Deployment/Get/GetQueueJobStepDto.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get +namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get { public class GetQueueJobStepDto : BaseDto { @@ -13,3 +13,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get public string? ApprovalComment { get; set; } } } + diff --git a/Dto/Deployment/Get/GetQueueJobTargetDto.cs b/Dto/Deployment/Get/GetQueueJobTargetDto.cs index 5d4cf09..bb987d5 100644 --- a/Dto/Deployment/Get/GetQueueJobTargetDto.cs +++ b/Dto/Deployment/Get/GetQueueJobTargetDto.cs @@ -1,8 +1,8 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get +namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get { public class GetQueueJobTargetDto : BaseDto { - public Guid VirtualMachineId { get; set; } + public Guid TargetId { get; set; } public Guid DeploymentGroupId { get; set; } public Guid TemplateId { get; set; } public string Status { get; set; } = string.Empty; @@ -10,3 +10,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get public string? ErrorMessage { get; set; } } } + diff --git a/Dto/DeploymentBatch/Add/AddDeploymentBatchDto.cs b/Dto/DeploymentBatch/Add/AddDeploymentBatchDto.cs new file mode 100644 index 0000000..b4aaee9 --- /dev/null +++ b/Dto/DeploymentBatch/Add/AddDeploymentBatchDto.cs @@ -0,0 +1,20 @@ +using System.ComponentModel.DataAnnotations.Schema; + +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Add +{ + public class AddDeploymentBatchDto + { + [Column(Order = 1)] + public Guid TemplateId { get; set; } + + [Column(Order = 2)] + public Guid? DeploymentRuleId { get; set; } + + [Column(Order = 3)] + public string Status { get; set; } = string.Empty; + + [Column(Order = 4)] + public ICollection? TargetIds { get; set; } + } +} + diff --git a/Dto/DeploymentBatch/Edit/EditDeploymentBatchDto.cs b/Dto/DeploymentBatch/Edit/EditDeploymentBatchDto.cs new file mode 100644 index 0000000..f4b9063 --- /dev/null +++ b/Dto/DeploymentBatch/Edit/EditDeploymentBatchDto.cs @@ -0,0 +1,17 @@ +using System.ComponentModel.DataAnnotations.Schema; + +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Edit +{ + public class EditDeploymentBatchDto + { + [Column(Order = 1)] + public Guid TemplateId { get; set; } + + [Column(Order = 2)] + public Guid? DeploymentRuleId { get; set; } + + [Column(Order = 3)] + public string Status { get; set; } = string.Empty; + } +} + diff --git a/Dto/DeploymentBatch/Get/GetDeploymentBatchDetailsDto.cs b/Dto/DeploymentBatch/Get/GetDeploymentBatchDetailsDto.cs new file mode 100644 index 0000000..03cc660 --- /dev/null +++ b/Dto/DeploymentBatch/Get/GetDeploymentBatchDetailsDto.cs @@ -0,0 +1,21 @@ +using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get; +using Microsoft.SelfService.Portal.Core.API.Dto.Template.Get; + +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Get +{ + public class GetDeploymentBatchDetailsDto : BaseDto + { + public Guid? DeploymentRuleId { get; set; } + + public string Status { get; set; } = string.Empty; + + public GetTemplateDetailsDto Template { get; set; } = null!; + + public ICollection Deployments { get; set; } = new List(); + public ICollection TemplateSelections { get; set; } = new List(); + public ICollection ParameterValues { get; set; } = new List(); + public ICollection TargetAssignments { get; set; } = new List(); + } +} + diff --git a/Dto/DeploymentBatch/Get/GetDeploymentBatchDto.cs b/Dto/DeploymentBatch/Get/GetDeploymentBatchDto.cs new file mode 100644 index 0000000..134ef56 --- /dev/null +++ b/Dto/DeploymentBatch/Get/GetDeploymentBatchDto.cs @@ -0,0 +1,12 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Get +{ + public class GetDeploymentBatchDto : BaseDetailsDto + { + public Guid TemplateId { get; set; } + + public Guid? DeploymentRuleId { get; set; } + + public string Status { get; set; } = string.Empty; + } +} + diff --git a/Dto/DeploymentComposition/Add/AddDeploymentParameterValueDto.cs b/Dto/DeploymentComposition/Add/AddDeploymentParameterValueDto.cs new file mode 100644 index 0000000..889abae --- /dev/null +++ b/Dto/DeploymentComposition/Add/AddDeploymentParameterValueDto.cs @@ -0,0 +1,12 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Add +{ + public class AddDeploymentParameterValueDto + { + public Guid? DeploymentTemplateSelectionId { get; set; } + public string Name { get; set; } = string.Empty; + public string ValueJson { get; set; } = "{}"; + public bool IsSecretReference { get; set; } + public bool IsOverride { get; set; } = true; + } +} + diff --git a/Dto/DeploymentComposition/Add/AddDeploymentTargetAssignmentDto.cs b/Dto/DeploymentComposition/Add/AddDeploymentTargetAssignmentDto.cs new file mode 100644 index 0000000..3a20ecc --- /dev/null +++ b/Dto/DeploymentComposition/Add/AddDeploymentTargetAssignmentDto.cs @@ -0,0 +1,11 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Add +{ + public class AddDeploymentTargetAssignmentDto + { + public Guid TargetId { get; set; } + public string RoleKey { get; set; } = "Node"; + public int SortOrder { get; set; } + public string NodeDataJson { get; set; } = "{}"; + } +} + diff --git a/Dto/DeploymentComposition/Add/AddDeploymentTemplateSelectionDto.cs b/Dto/DeploymentComposition/Add/AddDeploymentTemplateSelectionDto.cs new file mode 100644 index 0000000..7a336d3 --- /dev/null +++ b/Dto/DeploymentComposition/Add/AddDeploymentTemplateSelectionDto.cs @@ -0,0 +1,11 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Add +{ + public class AddDeploymentTemplateSelectionDto + { + public Guid TemplateVersionId { get; set; } + public string TemplateRole { get; set; } = "Service"; + public int SortOrder { get; set; } + public string? Alias { get; set; } + } +} + diff --git a/Dto/DeploymentComposition/Get/GetDeploymentCompositionDto.cs b/Dto/DeploymentComposition/Get/GetDeploymentCompositionDto.cs new file mode 100644 index 0000000..08dc942 --- /dev/null +++ b/Dto/DeploymentComposition/Get/GetDeploymentCompositionDto.cs @@ -0,0 +1,11 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get +{ + public class GetDeploymentCompositionDto + { + public Guid DeploymentBatchId { get; set; } + public ICollection TemplateSelections { get; set; } = new List(); + public ICollection ParameterValues { get; set; } = new List(); + public ICollection TargetAssignments { get; set; } = new List(); + } +} + diff --git a/Dto/DeploymentComposition/Get/GetDeploymentParameterValueDto.cs b/Dto/DeploymentComposition/Get/GetDeploymentParameterValueDto.cs new file mode 100644 index 0000000..b2824f0 --- /dev/null +++ b/Dto/DeploymentComposition/Get/GetDeploymentParameterValueDto.cs @@ -0,0 +1,13 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get +{ + public class GetDeploymentParameterValueDto : BaseDto + { + public Guid DeploymentGroupId { get; set; } + public Guid? DeploymentTemplateSelectionId { get; set; } + public string Name { get; set; } = string.Empty; + public string ValueJson { get; set; } = "{}"; + public bool IsSecretReference { get; set; } + public bool IsOverride { get; set; } + } +} + diff --git a/Dto/DeploymentComposition/Get/GetDeploymentTargetAssignmentDto.cs b/Dto/DeploymentComposition/Get/GetDeploymentTargetAssignmentDto.cs new file mode 100644 index 0000000..ece07c9 --- /dev/null +++ b/Dto/DeploymentComposition/Get/GetDeploymentTargetAssignmentDto.cs @@ -0,0 +1,15 @@ +using Microsoft.SelfService.Portal.Core.API.Dto.Target.Get; + +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get +{ + public class GetDeploymentTargetAssignmentDto : BaseDto + { + public Guid DeploymentGroupId { get; set; } + public Guid TargetId { get; set; } + public string RoleKey { get; set; } = string.Empty; + public int SortOrder { get; set; } + public string NodeDataJson { get; set; } = "{}"; + public GetTargetDto? Target { get; set; } + } +} + diff --git a/Dto/DeploymentComposition/Get/GetDeploymentTemplateSelectionDto.cs b/Dto/DeploymentComposition/Get/GetDeploymentTemplateSelectionDto.cs new file mode 100644 index 0000000..592b8ea --- /dev/null +++ b/Dto/DeploymentComposition/Get/GetDeploymentTemplateSelectionDto.cs @@ -0,0 +1,15 @@ +using Microsoft.SelfService.Portal.Core.API.Dto.TemplateVersion.Get; + +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get +{ + public class GetDeploymentTemplateSelectionDto : BaseDto + { + public Guid DeploymentGroupId { get; set; } + public Guid TemplateVersionId { get; set; } + public string TemplateRole { get; set; } = string.Empty; + public int SortOrder { get; set; } + public string? Alias { get; set; } + public GetTemplateVersionDto? TemplateVersion { get; set; } + } +} + diff --git a/Dto/DeploymentGroup/Add/AddDeploymentGroupDto.cs b/Dto/DeploymentGroup/Add/AddDeploymentGroupDto.cs deleted file mode 100644 index 2984d20..0000000 --- a/Dto/DeploymentGroup/Add/AddDeploymentGroupDto.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System.ComponentModel.DataAnnotations.Schema; - -namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Add -{ - public class AddDeploymentGroupDto - { - [Column(Order = 1)] - public Guid TemplateId { get; set; } - [Column(Order = 2)] - public string Status { get; set; } - [Column(Order = 3)] - public ICollection? VirtualMachineIds { get; set; } - - } -} diff --git a/Dto/DeploymentGroup/Edit/EditDeploymentGroupDto.cs b/Dto/DeploymentGroup/Edit/EditDeploymentGroupDto.cs deleted file mode 100644 index 6a1b9b3..0000000 --- a/Dto/DeploymentGroup/Edit/EditDeploymentGroupDto.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.ComponentModel.DataAnnotations.Schema; - -namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Edit -{ - public class EditDeploymentGroupDto - { - [Column(Order = 1)] - public Guid TemplateId { get; set; } - [Column(Order = 2)] - public string Status { get; set; } - } -} diff --git a/Dto/DeploymentGroup/Get/GetDeploymentGroupDetailsDto.cs b/Dto/DeploymentGroup/Get/GetDeploymentGroupDetailsDto.cs deleted file mode 100644 index f73d7c4..0000000 --- a/Dto/DeploymentGroup/Get/GetDeploymentGroupDetailsDto.cs +++ /dev/null @@ -1,14 +0,0 @@ -using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get; -using Microsoft.SelfService.Portal.Core.API.Dto.Template.Get; - -namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Get -{ - public class GetDeploymentGroupDetailsDto : BaseDto - { - public string Status { get; set; } - - public GetTemplateDetailsDto Template { get; set; } - - public ICollection Deployments { get; set; } - } -} diff --git a/Dto/DeploymentGroup/Get/GetDeploymentGroupDto.cs b/Dto/DeploymentGroup/Get/GetDeploymentGroupDto.cs deleted file mode 100644 index e54b83f..0000000 --- a/Dto/DeploymentGroup/Get/GetDeploymentGroupDto.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Get -{ - public class GetDeploymentGroupDto - { - public Guid Id { get; set; } - public string Status { get; set; } - } -} diff --git a/Dto/DeploymentRule/Add/AddDeploymentRuleDto.cs b/Dto/DeploymentRule/Add/AddDeploymentRuleDto.cs new file mode 100644 index 0000000..b8f4bc2 --- /dev/null +++ b/Dto/DeploymentRule/Add/AddDeploymentRuleDto.cs @@ -0,0 +1,11 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentRule.Add +{ + public class AddDeploymentRuleDto + { + public string Name { get; set; } + public string? Description { get; set; } + public bool IsActive { get; set; } = true; + public ICollection Steps { get; set; } = new List(); + } +} + diff --git a/Dto/DeploymentRule/Add/AddDeploymentRuleStepDto.cs b/Dto/DeploymentRule/Add/AddDeploymentRuleStepDto.cs new file mode 100644 index 0000000..6666c0d --- /dev/null +++ b/Dto/DeploymentRule/Add/AddDeploymentRuleStepDto.cs @@ -0,0 +1,12 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentRule.Add +{ + public class AddDeploymentRuleStepDto + { + public int SortOrder { get; set; } + public string Name { get; set; } + public string StepType { get; set; } + public bool RequiresApproval { get; set; } + public string? MetadataJson { get; set; } + } +} + diff --git a/Dto/DeploymentRule/Get/GetDeploymentRuleDto.cs b/Dto/DeploymentRule/Get/GetDeploymentRuleDto.cs new file mode 100644 index 0000000..f3737f4 --- /dev/null +++ b/Dto/DeploymentRule/Get/GetDeploymentRuleDto.cs @@ -0,0 +1,11 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentRule.Get +{ + public class GetDeploymentRuleDto : BaseDetailsDto + { + public string Name { get; set; } + public string? Description { get; set; } + public bool IsActive { get; set; } + public ICollection Steps { get; set; } = new List(); + } +} + diff --git a/Dto/DeploymentRule/Get/GetDeploymentRuleStepDto.cs b/Dto/DeploymentRule/Get/GetDeploymentRuleStepDto.cs new file mode 100644 index 0000000..8dc5e19 --- /dev/null +++ b/Dto/DeploymentRule/Get/GetDeploymentRuleStepDto.cs @@ -0,0 +1,12 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentRule.Get +{ + public class GetDeploymentRuleStepDto : BaseDetailsDto + { + public int SortOrder { get; set; } + public string Name { get; set; } + public string StepType { get; set; } + public bool RequiresApproval { get; set; } + public string? MetadataJson { get; set; } + } +} + diff --git a/Dto/Domain/Add/AddDomainDto.cs b/Dto/Domain/Add/AddDomainDto.cs index e0dee34..434444b 100644 --- a/Dto/Domain/Add/AddDomainDto.cs +++ b/Dto/Domain/Add/AddDomainDto.cs @@ -12,3 +12,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Domain.Add public string NetBIOS { get; set; } } } + diff --git a/Dto/Domain/Edit/EditDomainDto.cs b/Dto/Domain/Edit/EditDomainDto.cs index 6b30133..108621b 100644 --- a/Dto/Domain/Edit/EditDomainDto.cs +++ b/Dto/Domain/Edit/EditDomainDto.cs @@ -12,3 +12,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Domain.Edit public string NetBIOS { get; set; } } } + diff --git a/Dto/Domain/Get/GetDomainDetailsDto.cs b/Dto/Domain/Get/GetDomainDetailsDto.cs index 26f8328..2f8d377 100644 --- a/Dto/Domain/Get/GetDomainDetailsDto.cs +++ b/Dto/Domain/Get/GetDomainDetailsDto.cs @@ -13,3 +13,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get } } + diff --git a/Dto/Domain/Get/GetDomainDto.cs b/Dto/Domain/Get/GetDomainDto.cs index 8f1ad18..2056609 100644 --- a/Dto/Domain/Get/GetDomainDto.cs +++ b/Dto/Domain/Get/GetDomainDto.cs @@ -12,3 +12,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get public string Name { get; set; } } } + diff --git a/Dto/Domain/Get/GetDomainEnvironmentDetailsDto.cs b/Dto/Domain/Get/GetDomainEnvironmentDetailsDto.cs index d61da9a..9935f57 100644 --- a/Dto/Domain/Get/GetDomainEnvironmentDetailsDto.cs +++ b/Dto/Domain/Get/GetDomainEnvironmentDetailsDto.cs @@ -9,3 +9,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get } } + diff --git a/Dto/Domain/Get/GetDomainEnvironmentDto.cs b/Dto/Domain/Get/GetDomainEnvironmentDto.cs index 5013c61..2fb5c38 100644 --- a/Dto/Domain/Get/GetDomainEnvironmentDto.cs +++ b/Dto/Domain/Get/GetDomainEnvironmentDto.cs @@ -16,3 +16,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get public ICollection EnvironmentDomains { get; set; } } } + diff --git a/Dto/Domain/Get/GetDomainVirtualMachineDetailsDto.cs b/Dto/Domain/Get/GetDomainTargetDetailsDto.cs similarity index 66% rename from Dto/Domain/Get/GetDomainVirtualMachineDetailsDto.cs rename to Dto/Domain/Get/GetDomainTargetDetailsDto.cs index fb93c41..2e978b9 100644 --- a/Dto/Domain/Get/GetDomainVirtualMachineDetailsDto.cs +++ b/Dto/Domain/Get/GetDomainTargetDetailsDto.cs @@ -1,10 +1,10 @@ -using Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get; +using Microsoft.SelfService.Portal.Core.API.Dto.Target.Get; using Microsoft.SelfService.Portal.Core.API.Models; using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get { - public class GetDomainVirtualMachineDetailsDto : BaseDetailsDto + public class GetDomainTargetDetailsDto : BaseDetailsDto { [Column(Order = 1)] @@ -15,6 +15,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get public string NetBIOS { get; set; } [Column(Order = 4)] - public ICollection VirtualMachines { get; set; } + public ICollection Targets { get; set; } } } + diff --git a/Dto/Environment/Add/AddEnvironmentDto.cs b/Dto/Environment/Add/AddEnvironmentDto.cs index a1460e2..0ddea36 100644 --- a/Dto/Environment/Add/AddEnvironmentDto.cs +++ b/Dto/Environment/Add/AddEnvironmentDto.cs @@ -8,18 +8,22 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Add public string Name { get; set; } [Column(Order = 2)] - public string EnvironmentType { get; set; } = "OnPrem"; + public string EnvironmentType { get; set; } = "Test"; [Column(Order = 3)] - public string? ProviderType { get; set; } + public string HostingType { get; set; } = "OnPrem"; [Column(Order = 4)] - public string? TenantId { get; set; } + public string? ProviderType { get; set; } [Column(Order = 5)] - public string? SubscriptionId { get; set; } + public string? TenantId { get; set; } [Column(Order = 6)] + public string? SubscriptionId { get; set; } + + [Column(Order = 7)] public string? MetadataJson { get; set; } } } + diff --git a/Dto/Environment/Edit/EditEnvironmentDto.cs b/Dto/Environment/Edit/EditEnvironmentDto.cs index 3a80b0a..95a96d1 100644 --- a/Dto/Environment/Edit/EditEnvironmentDto.cs +++ b/Dto/Environment/Edit/EditEnvironmentDto.cs @@ -8,18 +8,22 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Edit public string Name { get; set; } [Column(Order = 2)] - public string EnvironmentType { get; set; } = "OnPrem"; + public string EnvironmentType { get; set; } = "Test"; [Column(Order = 3)] - public string? ProviderType { get; set; } + public string HostingType { get; set; } = "OnPrem"; [Column(Order = 4)] - public string? TenantId { get; set; } + public string? ProviderType { get; set; } [Column(Order = 5)] - public string? SubscriptionId { get; set; } + public string? TenantId { get; set; } [Column(Order = 6)] + public string? SubscriptionId { get; set; } + + [Column(Order = 7)] public string? MetadataJson { get; set; } } } + diff --git a/Dto/Environment/Get/GetEnvironmentDetailsDto.cs b/Dto/Environment/Get/GetEnvironmentDetailsDto.cs index 1273a8a..d1ce37f 100644 --- a/Dto/Environment/Get/GetEnvironmentDetailsDto.cs +++ b/Dto/Environment/Get/GetEnvironmentDetailsDto.cs @@ -11,15 +11,19 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Get public string EnvironmentType { get; set; } [Column(Order = 3)] - public string? ProviderType { get; set; } + public string HostingType { get; set; } [Column(Order = 4)] - public string? TenantId { get; set; } + public string? ProviderType { get; set; } [Column(Order = 5)] - public string? SubscriptionId { get; set; } + public string? TenantId { get; set; } [Column(Order = 6)] + public string? SubscriptionId { get; set; } + + [Column(Order = 7)] public string? MetadataJson { get; set; } } } + diff --git a/Dto/Environment/Get/GetEnvironmentDomainDetailsDto.cs b/Dto/Environment/Get/GetEnvironmentDomainDetailsDto.cs index ecd648c..1c75436 100644 --- a/Dto/Environment/Get/GetEnvironmentDomainDetailsDto.cs +++ b/Dto/Environment/Get/GetEnvironmentDomainDetailsDto.cs @@ -1,4 +1,4 @@ -using Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get; +using Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get; using Microsoft.SelfService.Portal.Core.API.Models; using System.ComponentModel.DataAnnotations.Schema; @@ -32,3 +32,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Get } } } + diff --git a/Dto/Environment/Get/GetEnvironmentDomainDto.cs b/Dto/Environment/Get/GetEnvironmentDomainDto.cs index 72b5fd9..130d0a7 100644 --- a/Dto/Environment/Get/GetEnvironmentDomainDto.cs +++ b/Dto/Environment/Get/GetEnvironmentDomainDto.cs @@ -1,4 +1,4 @@ -using Microsoft.SelfService.Portal.Core.API.Models; +using Microsoft.SelfService.Portal.Core.API.Models; using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Get @@ -9,6 +9,24 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Get public string Name { get; set; } [Column(Order = 2)] + public string EnvironmentType { get; set; } + + [Column(Order = 3)] + public string HostingType { get; set; } + + [Column(Order = 4)] + public string? ProviderType { get; set; } + + [Column(Order = 5)] + public string? TenantId { get; set; } + + [Column(Order = 6)] + public string? SubscriptionId { get; set; } + + [Column(Order = 7)] + public string? MetadataJson { get; set; } + + [Column(Order = 8)] public ICollection EnvironmentDomains { get; set; } public static GetEnvironmentDomainDto FromModel(EnvironmentModel environment) @@ -17,6 +35,12 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Get { Id = environment.Id, Name = environment.Name, + EnvironmentType = environment.EnvironmentType, + HostingType = environment.HostingType, + ProviderType = environment.ProviderType, + TenantId = environment.TenantId, + SubscriptionId = environment.SubscriptionId, + MetadataJson = environment.MetadataJson, Created = environment.Created, CreatedBy = environment.CreatedBy, Modified = environment.Modified, @@ -29,3 +53,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Get } } } + diff --git a/Dto/Environment/Get/GetEnvironmentDto.cs b/Dto/Environment/Get/GetEnvironmentDto.cs index 8ba6a54..b462e0b 100644 --- a/Dto/Environment/Get/GetEnvironmentDto.cs +++ b/Dto/Environment/Get/GetEnvironmentDto.cs @@ -11,12 +11,16 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Environment.Get public string EnvironmentType { get; set; } [Column(Order = 3)] - public string? ProviderType { get; set; } + public string HostingType { get; set; } [Column(Order = 4)] - public string? TenantId { get; set; } + public string? ProviderType { get; set; } [Column(Order = 5)] + public string? TenantId { get; set; } + + [Column(Order = 6)] public string? SubscriptionId { get; set; } } } + diff --git a/Dto/Runbook/Add/AddRunbookDto.cs b/Dto/Runbook/Add/AddRunbookDto.cs deleted file mode 100644 index 6529dad..0000000 --- a/Dto/Runbook/Add/AddRunbookDto.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System.ComponentModel.DataAnnotations.Schema; - -namespace Microsoft.SelfService.Portal.Core.API.Dto.Runbook.Add -{ - public class AddRunbookDto - { - [Column(Order = 1)] - public string Name { get; set; } - - [Column(Order = 2)] - public string Description { get; set; } - } -} diff --git a/Dto/Runbook/Get/GetRunbookDetailsDto.cs b/Dto/Runbook/Get/GetRunbookDetailsDto.cs deleted file mode 100644 index 6e398c0..0000000 --- a/Dto/Runbook/Get/GetRunbookDetailsDto.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System.ComponentModel.DataAnnotations.Schema; - -namespace Microsoft.SelfService.Portal.Core.API.Dto.Runbook.Get -{ - public class GetRunbookDetailsDto : BaseDetailsDto - { - [Column(Order = 1)] - public string Name { get; set; } - - [Column(Order = 2)] - public string Decription { get; set; } - } -} diff --git a/Dto/Runbook/Get/GetRunbookDto.cs b/Dto/Runbook/Get/GetRunbookDto.cs deleted file mode 100644 index cd6639f..0000000 --- a/Dto/Runbook/Get/GetRunbookDto.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System.ComponentModel.DataAnnotations.Schema; - -namespace Microsoft.SelfService.Portal.Core.API.Dto.Runbook.Get -{ - public class GetRunbookDto : BaseDto - { - [Column(Order = 1)] - public string Name { get; set; } - - [Column(Order = 2)] - public string Decription { get; set; } - } -} diff --git a/Dto/Service/Add/AddServiceDto.cs b/Dto/Service/Add/AddServiceDto.cs index b518681..72a3fd1 100644 --- a/Dto/Service/Add/AddServiceDto.cs +++ b/Dto/Service/Add/AddServiceDto.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.Add { @@ -17,3 +17,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.Add public string? IconKey { get; set; } } } + diff --git a/Dto/Service/Edit/EditServiceDto.cs b/Dto/Service/Edit/EditServiceDto.cs index 762fd13..5e3b098 100644 --- a/Dto/Service/Edit/EditServiceDto.cs +++ b/Dto/Service/Edit/EditServiceDto.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.Edit { @@ -17,3 +17,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.Edit public string? IconKey { get; set; } } } + diff --git a/Dto/Service/Get/GetServiceDetailsDto.cs b/Dto/Service/Get/GetServiceDetailsDto.cs index d64b117..929b637 100644 --- a/Dto/Service/Get/GetServiceDetailsDto.cs +++ b/Dto/Service/Get/GetServiceDetailsDto.cs @@ -14,3 +14,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.Get public string? IconKey { get; set; } } } + diff --git a/Dto/Service/Get/GetServiceDto.cs b/Dto/Service/Get/GetServiceDto.cs index 066610d..ee64525 100644 --- a/Dto/Service/Get/GetServiceDto.cs +++ b/Dto/Service/Get/GetServiceDto.cs @@ -17,3 +17,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.Get public string? IconKey { get; set; } } } + diff --git a/Dto/Service/RoleDefinition/AddServiceRoleDefinitionDto.cs b/Dto/Service/RoleDefinition/AddServiceRoleDefinitionDto.cs index bea69fb..c03d987 100644 --- a/Dto/Service/RoleDefinition/AddServiceRoleDefinitionDto.cs +++ b/Dto/Service/RoleDefinition/AddServiceRoleDefinitionDto.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.RoleDefinition +namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.RoleDefinition { public class AddServiceRoleDefinitionDto { @@ -7,3 +7,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.RoleDefinition public string? Description { get; set; } } } + diff --git a/Dto/Service/RoleDefinition/EditServiceRoleDefinitionDto.cs b/Dto/Service/RoleDefinition/EditServiceRoleDefinitionDto.cs index a33e384..f59ec55 100644 --- a/Dto/Service/RoleDefinition/EditServiceRoleDefinitionDto.cs +++ b/Dto/Service/RoleDefinition/EditServiceRoleDefinitionDto.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.RoleDefinition +namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.RoleDefinition { public class EditServiceRoleDefinitionDto { @@ -7,3 +7,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Service.RoleDefinition public string? Description { get; set; } } } + diff --git a/Dto/Target/Add/AddTargetDto.cs b/Dto/Target/Add/AddTargetDto.cs new file mode 100644 index 0000000..f3d26ba --- /dev/null +++ b/Dto/Target/Add/AddTargetDto.cs @@ -0,0 +1,13 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.Target.Add +{ + public class AddTargetDto + { + public Guid? DomainID { get; set; } + public string Name { get; set; } + public string TargetType { get; set; } = "VirtualMachine"; + public string ProviderType { get; set; } = "OnPrem"; + public string? ExternalId { get; set; } + public string? MetadataJson { get; set; } + } +} + diff --git a/Dto/Target/Edit/EditTargetDto.cs b/Dto/Target/Edit/EditTargetDto.cs new file mode 100644 index 0000000..c7ff73e --- /dev/null +++ b/Dto/Target/Edit/EditTargetDto.cs @@ -0,0 +1,12 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.Target.Edit +{ + public class EditTargetDto + { + public string Name { get; set; } + public string TargetType { get; set; } = "VirtualMachine"; + public string ProviderType { get; set; } = "OnPrem"; + public string? ExternalId { get; set; } + public string? MetadataJson { get; set; } + } +} + diff --git a/Dto/VirtualMachine/Get/GetVirtualMachineDetailsDto.cs b/Dto/Target/Get/GetTargetDetailsDto.cs similarity index 66% rename from Dto/VirtualMachine/Get/GetVirtualMachineDetailsDto.cs rename to Dto/Target/Get/GetTargetDetailsDto.cs index d8ad2cb..9da5f5b 100644 --- a/Dto/VirtualMachine/Get/GetVirtualMachineDetailsDto.cs +++ b/Dto/Target/Get/GetTargetDetailsDto.cs @@ -2,9 +2,9 @@ using Microsoft.SelfService.Portal.Core.API.Models; using System.ComponentModel.DataAnnotations.Schema; -namespace Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get +namespace Microsoft.SelfService.Portal.Core.API.Dto.Target.Get { - public class GetVirtualMachineDetailsDto : BaseDetailsDto + public class GetTargetDetailsDto : BaseDetailsDto { [Column(Order = 1)] @@ -14,11 +14,18 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get public string Name { get; set; } [Column(Order = 3)] - public string? ExternalId { get; set; } + public string TargetType { get; set; } [Column(Order = 4)] + public string ProviderType { get; set; } + + [Column(Order = 5)] + public string? ExternalId { get; set; } + + [Column(Order = 6)] public string? MetadataJson { get; set; } public GetDomainDto? Domain { get; set; } } } + diff --git a/Dto/VirtualMachine/Get/GetVirtualMachineDto.cs b/Dto/Target/Get/GetTargetDto.cs similarity index 53% rename from Dto/VirtualMachine/Get/GetVirtualMachineDto.cs rename to Dto/Target/Get/GetTargetDto.cs index 54ad630..c3ca85b 100644 --- a/Dto/VirtualMachine/Get/GetVirtualMachineDto.cs +++ b/Dto/Target/Get/GetTargetDto.cs @@ -1,8 +1,8 @@ using System.ComponentModel.DataAnnotations.Schema; -namespace Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get +namespace Microsoft.SelfService.Portal.Core.API.Dto.Target.Get { - public class GetVirtualMachineDto : BaseDto + public class GetTargetDto : BaseDto { [Column(Order = 1)] public Guid? DomainID { get; set; } @@ -11,7 +11,14 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get public string Name { get; set; } [Column(Order = 3)] + public string TargetType { get; set; } + + [Column(Order = 4)] + public string ProviderType { get; set; } + + [Column(Order = 5)] public string? ExternalId { get; set; } } } + diff --git a/Dto/Template/Add/AddTemplateDto.cs b/Dto/Template/Add/AddTemplateDto.cs index df7f88f..9eb501d 100644 --- a/Dto/Template/Add/AddTemplateDto.cs +++ b/Dto/Template/Add/AddTemplateDto.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Dto.Template.Add { @@ -20,3 +20,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Template.Add public string JSONData { get; set; } } } + diff --git a/Dto/Template/Edit/EditTemplateDto.cs b/Dto/Template/Edit/EditTemplateDto.cs index b561025..3e6e245 100644 --- a/Dto/Template/Edit/EditTemplateDto.cs +++ b/Dto/Template/Edit/EditTemplateDto.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Dto.Template.Edit { @@ -20,3 +20,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.Template.Edit public string JSONData { get; set; } } } + diff --git a/Dto/Template/Get/GetTemplateDetailsDto.cs b/Dto/Template/Get/GetTemplateDetailsDto.cs index ad1b630..78dda58 100644 --- a/Dto/Template/Get/GetTemplateDetailsDto.cs +++ b/Dto/Template/Get/GetTemplateDetailsDto.cs @@ -10,3 +10,4 @@ } } + diff --git a/Dto/Template/Get/GetTemplateDto.cs b/Dto/Template/Get/GetTemplateDto.cs index e27b059..8bbc8ca 100644 --- a/Dto/Template/Get/GetTemplateDto.cs +++ b/Dto/Template/Get/GetTemplateDto.cs @@ -9,3 +9,4 @@ public string JSONData { get; set; } } } + diff --git a/Dto/TemplateCategory/Add/AddTemplateCategoryDto.cs b/Dto/TemplateCategory/Add/AddTemplateCategoryDto.cs index 9fa468f..894c476 100644 --- a/Dto/TemplateCategory/Add/AddTemplateCategoryDto.cs +++ b/Dto/TemplateCategory/Add/AddTemplateCategoryDto.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Add +namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Add { public class AddTemplateCategoryDto { @@ -9,3 +9,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Add public string? Color { get; set; } } } + diff --git a/Dto/TemplateCategory/Edit/EditTemplateCategoryDto.cs b/Dto/TemplateCategory/Edit/EditTemplateCategoryDto.cs index eee0457..8ee2b96 100644 --- a/Dto/TemplateCategory/Edit/EditTemplateCategoryDto.cs +++ b/Dto/TemplateCategory/Edit/EditTemplateCategoryDto.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Edit +namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Edit { public class EditTemplateCategoryDto { @@ -9,3 +9,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Edit public string? Color { get; set; } } } + diff --git a/Dto/TemplateCategory/Get/GetTemplateCategoryDetailsDto.cs b/Dto/TemplateCategory/Get/GetTemplateCategoryDetailsDto.cs index 56c78a2..5379768 100644 --- a/Dto/TemplateCategory/Get/GetTemplateCategoryDetailsDto.cs +++ b/Dto/TemplateCategory/Get/GetTemplateCategoryDetailsDto.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Get +namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Get { public class GetTemplateCategoryDetailsDto : BaseDetailsDto { @@ -9,3 +9,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Get public string? Color { get; set; } } } + diff --git a/Dto/TemplateCategory/Get/GetTemplateCategoryDto.cs b/Dto/TemplateCategory/Get/GetTemplateCategoryDto.cs index 518f2e5..f6ccd93 100644 --- a/Dto/TemplateCategory/Get/GetTemplateCategoryDto.cs +++ b/Dto/TemplateCategory/Get/GetTemplateCategoryDto.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Get +namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Get { public class GetTemplateCategoryDto : BaseDto { @@ -9,3 +9,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateCategory.Get public string? Color { get; set; } } } + diff --git a/Dto/TemplateVersion/Add/AddTemplateVersionDto.cs b/Dto/TemplateVersion/Add/AddTemplateVersionDto.cs new file mode 100644 index 0000000..6fa8abd --- /dev/null +++ b/Dto/TemplateVersion/Add/AddTemplateVersionDto.cs @@ -0,0 +1,12 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateVersion.Add +{ + public class AddTemplateVersionDto + { + public string Version { get; set; } = "1.0.0"; + public string JsonData { get; set; } = "{}"; + public string SchemaVersion { get; set; } = "1.0"; + public bool Publish { get; set; } + public string? PublishedBy { get; set; } + } +} + diff --git a/Dto/TemplateVersion/Get/GetTemplateVersionDto.cs b/Dto/TemplateVersion/Get/GetTemplateVersionDto.cs new file mode 100644 index 0000000..ee4c6dd --- /dev/null +++ b/Dto/TemplateVersion/Get/GetTemplateVersionDto.cs @@ -0,0 +1,15 @@ +namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateVersion.Get +{ + public class GetTemplateVersionDto : BaseDetailsDto + { + public Guid TemplateId { get; set; } + public string Version { get; set; } = string.Empty; + public string JsonData { get; set; } = "{}"; + public string JsonHash { get; set; } = string.Empty; + public string SchemaVersion { get; set; } = "1.0"; + public bool IsPublished { get; set; } + public DateTime? PublishedAt { get; set; } + public string? PublishedBy { get; set; } + } +} + diff --git a/Dto/VirtualMachine/Add/AddVirtualMachineDto.cs b/Dto/VirtualMachine/Add/AddVirtualMachineDto.cs deleted file mode 100644 index 468c011..0000000 --- a/Dto/VirtualMachine/Add/AddVirtualMachineDto.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Add -{ - public class AddVirtualMachineDto - { - public Guid? DomainID { get; set; } - public string Name { get; set; } - public string? ExternalId { get; set; } - public string? MetadataJson { get; set; } - } -} diff --git a/Dto/VirtualMachine/Edit/EditVirtualMachineDto.cs b/Dto/VirtualMachine/Edit/EditVirtualMachineDto.cs deleted file mode 100644 index 6ececce..0000000 --- a/Dto/VirtualMachine/Edit/EditVirtualMachineDto.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Edit -{ - public class EditVirtualMachineDto - { - public string Name { get; set; } - public string? ExternalId { get; set; } - public string? MetadataJson { get; set; } - } -} diff --git a/Events/AbstractEventHandler.cs b/Events/AbstractEventHandler.cs deleted file mode 100644 index 5e87dc7..0000000 --- a/Events/AbstractEventHandler.cs +++ /dev/null @@ -1,50 +0,0 @@ -using Microsoft.EntityFrameworkCore; -using Microsoft.SelfService.Portal.Core.API.Context; -using Microsoft.SelfService.Portal.Core.API.Events.Interfaces; -using Microsoft.SelfService.Portal.Core.API.Helper; -using Microsoft.SelfService.Portal.Core.API.Models; - - -namespace Microsoft.SelfService.Portal.Core.API.Events -{ - public class AbstractEventHandler : IEventHandlerInterface - { - private readonly DataContext _context; - - public AbstractEventHandler(DataContext context) - { - _context = context; - new APIHelper(); - } - - public ICollection GetEvents(string Class, string Method) - { - return _context.Events - .Where(e => e.Class == Class && e.Method == Method) - .Include(r => r.Runbook) - .ToList(); - } - - public async void FireEvent(string Class, string Method, Guid parameters) - { - var events = GetEvents(Class, Method); - - foreach (EventModel @event in events){ - - APIHelper.SetUrl(@event.RunbookId, @event.RestEndpointOperation); - APIHelper.SetRequestBody(parameters); - - var response = await APIHelper.ApiClient.PostAsync(APIHelper.GetUrl(), APIHelper.SetRequestHeaders("application/json;odata=verbose;charset=utf-8")); - - if (response.IsSuccessStatusCode) - { - var stringResponse = await response.Content.ReadAsStringAsync(); - } - else - { - throw new HttpRequestException(response.ReasonPhrase); - } - } - } - } -} diff --git a/Events/Interfaces/IEventHandlerInterface.cs b/Events/Interfaces/IEventHandlerInterface.cs deleted file mode 100644 index d13bc67..0000000 --- a/Events/Interfaces/IEventHandlerInterface.cs +++ /dev/null @@ -1,10 +0,0 @@ -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Events.Interfaces -{ - public interface IEventHandlerInterface - { - ICollection GetEvents(string Class, string Method); - void FireEvent(string Class, string Method, Guid parameters); - } -} diff --git a/Extensions/Dataannotations/DefaultValueSqlAttribute.cs b/Extensions/Dataannotations/DefaultValueSqlAttribute.cs index 09ec9a5..17a6063 100644 --- a/Extensions/Dataannotations/DefaultValueSqlAttribute.cs +++ b/Extensions/Dataannotations/DefaultValueSqlAttribute.cs @@ -11,3 +11,4 @@ } } } + diff --git a/Handlers/DomainEditedHandler.cs b/Handlers/DomainEditedHandler.cs deleted file mode 100644 index 2b652c6..0000000 --- a/Handlers/DomainEditedHandler.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace Microsoft.SelfService.Portal.Core.API.Handlers -{ - public class DomainEditedHandler - { - } -} diff --git a/Helper/APIHelper.cs b/Helper/APIHelper.cs deleted file mode 100644 index ab61907..0000000 --- a/Helper/APIHelper.cs +++ /dev/null @@ -1,70 +0,0 @@ -using System.Net.Http.Headers; -using System.Text; -using System.Text.Json; - -namespace Microsoft.SelfService.Portal.Core.API.Helper -{ - public class APIHelper - { - public static HttpClient ApiClient { get; set; } = new HttpClient(); - - public static String _Url; - public static String _Body; - - public APIHelper() - { - ApiClient = new HttpClient(); - ApiClient.BaseAddress = new Uri("http://rz1vcmsma001.cm.p01s01.ccis.svc.intranetbw.de:8080"); - ApiClient.DefaultRequestHeaders.Accept.Clear(); - ApiClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/xml")); - - ApiClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", Convert.ToBase64String( - Encoding.UTF8.GetBytes("CCIS-P01S01-CM\\ASA_Administrator:UQp7AurAkH4M") - )); - } - - public static void SetUrl(Guid RunbookId, String RestEndpointMethod) - { - _Url = string.Format("/00000000-0000-0000-0000-000000000000/Runbooks(guid'{0}')/{1}", RunbookId, RestEndpointMethod); - } - - public static string GetUrl() - { - return _Url; - } - - public static StringContent SetRequestHeaders(String ContentType) - { - MediaTypeHeaderValue JsonMediaType = null; - MediaTypeHeaderValue.TryParse(ContentType, out JsonMediaType); - - return new StringContent(_Body, Encoding.UTF8, JsonMediaType); ; - } - - public static void SetRequestBody(Guid parameters) - { - var obj = new - { - parameters = new[] - { - new - { - __metadata = new - { - type = "Orchestrator.ResourceModel.NameValuePair" - }, - Name = "deploymentId", - Value = parameters - - } - } - }; - _Body = JsonSerializer.Serialize(obj); - } - - public static String GetRequestBody() - { - return _Body; - } - } -} diff --git a/Helper/MappingProfilesHelper.cs b/Helper/MappingProfilesHelper.cs index f7ae94e..272278e 100644 --- a/Helper/MappingProfilesHelper.cs +++ b/Helper/MappingProfilesHelper.cs @@ -3,23 +3,26 @@ using Microsoft.SelfService.Portal.Core.API.Models; using Microsoft.SelfService.Portal.Core.API.Dto; using Microsoft.SelfService.Portal.Core.API.Dto.Domain.Get; using Microsoft.SelfService.Portal.Core.API.Dto.Domain.Add; -using Microsoft.SelfService.Portal.Core.API.Dto.Runbook.Get; -using Microsoft.SelfService.Portal.Core.API.Dto.Runbook.Add; using Microsoft.SelfService.Portal.Core.API.Dto.Environment.Get; -using Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get; -using Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Add; -using Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Edit; +using Microsoft.SelfService.Portal.Core.API.Dto.Target.Get; +using Microsoft.SelfService.Portal.Core.API.Dto.Target.Add; +using Microsoft.SelfService.Portal.Core.API.Dto.Target.Edit; using Microsoft.SelfService.Portal.Core.API.Dto.Domain.Edit; using Microsoft.SelfService.Portal.Core.API.Dto.Environment.Add; using Microsoft.SelfService.Portal.Core.API.Dto.Environment.Edit; using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get; using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add; using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Edit; -using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Get; -using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Add; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Get; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Add; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Edit; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Add; +using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get; using Microsoft.SelfService.Portal.Core.API.Dto.Template.Get; using Microsoft.SelfService.Portal.Core.API.Dto.Template.Add; using Microsoft.SelfService.Portal.Core.API.Dto.Template.Edit; +using Microsoft.SelfService.Portal.Core.API.Dto.TemplateVersion.Add; +using Microsoft.SelfService.Portal.Core.API.Dto.TemplateVersion.Get; using Microsoft.SelfService.Portal.Core.API.Dto.Service.Get; using Microsoft.SelfService.Portal.Core.API.Dto.Service.Add; using Microsoft.SelfService.Portal.Core.API.Dto.Service.Edit; @@ -40,8 +43,8 @@ namespace Microsoft.SelfService.Portal.Core.API.Helper CreateMap(); CreateMap(); CreateMap(); - CreateMap(); - CreateMap(); + CreateMap(); + CreateMap(); CreateMap(); CreateMap(); CreateMap(); @@ -67,41 +70,50 @@ namespace Microsoft.SelfService.Portal.Core.API.Helper CreateMap(); CreateMap(); - /** Virtual Machine Model **/ - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); - - /** Runbook Model **/ - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); + /** Target Model **/ + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); /** Deployment Model **/ CreateMap(); CreateMap(); CreateMap(); CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); + CreateMap() + .ForMember(destination => destination.JsonData, option => option.MapFrom(source => source.JSONData)); + CreateMap() + .ForMember(destination => destination.JSONData, option => option.MapFrom(source => source.JsonData)); + CreateMap() + .ForMember(destination => destination.jsonData, option => option.MapFrom(source => source.JSONData)); + CreateMap() + .ForMember(destination => destination.JSONData, option => option.MapFrom(source => source.jsonData)); /** Deployment Group Model **/ - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); - CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + + /** Deployment Composition Model **/ + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); /** Template Model **/ CreateMap(); @@ -113,6 +125,12 @@ namespace Microsoft.SelfService.Portal.Core.API.Helper CreateMap(); CreateMap(); + /** Template Version Model **/ + CreateMap(); + CreateMap(); + CreateMap(); + CreateMap(); + /** Service Model **/ CreateMap(); CreateMap(); @@ -135,3 +153,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Helper } } } + diff --git a/Interfaces/IAbstractInterface.cs b/Interfaces/IAbstractInterface.cs deleted file mode 100644 index 35e7e86..0000000 --- a/Interfaces/IAbstractInterface.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Microsoft.SelfService.Portal.Core.API.Interfaces -{ - public interface IAbstractInterface - { - bool SaveChanges(); - } -} diff --git a/Interfaces/IDeploymentBatchInterface.cs b/Interfaces/IDeploymentBatchInterface.cs new file mode 100644 index 0000000..7f7843e --- /dev/null +++ b/Interfaces/IDeploymentBatchInterface.cs @@ -0,0 +1,22 @@ +using Microsoft.SelfService.Portal.Core.API.Models; + +namespace Microsoft.SelfService.Portal.Core.API.Interfaces +{ + public interface IDeploymentBatchInterface + { + ICollection GetDeploymentBatches(); + + DeploymentGroupModel? GetDeploymentBatchById(Guid id); + + bool AddDeploymentBatchById(DeploymentGroupModel deploymentBatch, ICollection? targetIds); + + bool DeleteDeploymentBatchById(DeploymentGroupModel deploymentBatch); + + bool EditDeploymentBatchById(DeploymentGroupModel deploymentBatch); + + bool CheckDeploymentBatchById(Guid id); + + bool SaveChanges(); + } +} + diff --git a/Interfaces/IDeploymentGroupInterface.cs b/Interfaces/IDeploymentGroupInterface.cs deleted file mode 100644 index 6d14c5a..0000000 --- a/Interfaces/IDeploymentGroupInterface.cs +++ /dev/null @@ -1,18 +0,0 @@ -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Interfaces -{ - public interface IDeploymentGroupInterface - { - ICollection GetDeploymentGroups(); - - DeploymentGroupModel GetDeploymentGroupById(Guid Id); - bool AddDeploymentGroupById(DeploymentGroupModel deploymentgroup, ICollection? virtualMachineIds); - bool DeleteDeploymentGroupById(DeploymentGroupModel deploymentgroup); - bool EditDeploymentGroupById(DeploymentGroupModel deploymentgroup); - - bool CheckDeploymentGroupById(Guid Id); - - bool SaveChanges(); - } -} diff --git a/Interfaces/IDeploymentInterface.cs b/Interfaces/IDeploymentInterface.cs index 8f01203..bdc1aa6 100644 --- a/Interfaces/IDeploymentInterface.cs +++ b/Interfaces/IDeploymentInterface.cs @@ -10,8 +10,11 @@ namespace Microsoft.SelfService.Portal.Core.API.Interfaces bool AddDeploymentById(DeploymentModel deployment); bool DeleteDeploymentById(DeploymentModel deployment); bool EditDeploymentById(DeploymentModel deployment); + DeploymentModel GetDeploymentByCompositeId(Guid deploymentGroupId, Guid targetId); + bool CheckDeploymentByCompositeId(Guid deploymentGroupId, Guid targetId); bool CheckDeploymentById(Guid Id); bool SaveChanges(); } } + diff --git a/Interfaces/IDomainInterface.cs b/Interfaces/IDomainInterface.cs index 23cd9e1..0e3302e 100644 --- a/Interfaces/IDomainInterface.cs +++ b/Interfaces/IDomainInterface.cs @@ -12,7 +12,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Interfaces bool EditDomainById(DomainModel domain); DomainModel GetDomainByIdInEnvironments(Guid Id); - DomainModel GetVirtualMachinesByDomainId(Guid Id); + DomainModel GetTargetsByDomainId(Guid Id); bool LinkDomainByIdToEnvironment(EnvironmentDomainsModel environmentDomain); bool UnlinkDomainByIdFromEnvironment(EnvironmentDomainsModel environmentDomain); @@ -23,3 +23,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Interfaces bool SaveChanges(); } } + diff --git a/Interfaces/IEnvironmentInterface.cs b/Interfaces/IEnvironmentInterface.cs index 61ee752..e047970 100644 --- a/Interfaces/IEnvironmentInterface.cs +++ b/Interfaces/IEnvironmentInterface.cs @@ -20,3 +20,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Interfaces bool SaveChanges(); } } + diff --git a/Interfaces/IJobInterface.cs b/Interfaces/IJobInterface.cs deleted file mode 100644 index e159230..0000000 --- a/Interfaces/IJobInterface.cs +++ /dev/null @@ -1,16 +0,0 @@ -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Interfaces -{ - public interface IJobInterface : IAbstractInterface - { - ICollection GetJobs(); - JobModel GetJobById(Guid Id); - - bool CreateJobById(JobModel job); - bool UpdateJobById(JobModel job); - bool DeleteJobById(JobModel job); - - bool CheckJobById(Guid Id); - } -} diff --git a/Interfaces/IQueueJobService.cs b/Interfaces/IQueueJobService.cs index aaae2fb..eb64eed 100644 --- a/Interfaces/IQueueJobService.cs +++ b/Interfaces/IQueueJobService.cs @@ -1,11 +1,12 @@ -namespace Microsoft.SelfService.Portal.Core.API.Interfaces +namespace Microsoft.SelfService.Portal.Core.API.Interfaces { public interface IQueueJobService { Guid EnqueueTemplateJsonChanged(Guid templateId, string oldJsonData, string newJsonData); - Guid EnqueueDeploymentRequest(Guid deploymentGroupId, ICollection virtualMachineIds, string jsonData); + Guid EnqueueDeploymentRequest(Guid deploymentGroupId, ICollection targetIds, string jsonData); bool RetryQueueJob(Guid queueJobId); bool ApproveQueueJobStep(Guid queueJobStepId, string approvedBy, string? comment); bool RejectQueueJobStep(Guid queueJobStepId, string approvedBy, string? comment); } } + diff --git a/Interfaces/IRunbookInterface.cs b/Interfaces/IRunbookInterface.cs deleted file mode 100644 index fff08c7..0000000 --- a/Interfaces/IRunbookInterface.cs +++ /dev/null @@ -1,18 +0,0 @@ -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Interfaces -{ - public interface IRunbookInterface - { - ICollection GetRunbooks(); - - RunbookModel GetRunbookById(Guid Id); - bool AddRunbookById(RunbookModel runbook); - bool EditRunbookById(RunbookModel runbook); - - bool CheckRunbookById(Guid Id); - bool CheckRunbookByName(string Name); - - bool SaveChanges(); - } -} diff --git a/Interfaces/IServiceInterface.cs b/Interfaces/IServiceInterface.cs index e174730..c21fdcc 100644 --- a/Interfaces/IServiceInterface.cs +++ b/Interfaces/IServiceInterface.cs @@ -28,3 +28,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Interfaces } } + diff --git a/Interfaces/ITargetInterface.cs b/Interfaces/ITargetInterface.cs new file mode 100644 index 0000000..0f5f9ff --- /dev/null +++ b/Interfaces/ITargetInterface.cs @@ -0,0 +1,21 @@ +using Microsoft.SelfService.Portal.Core.API.Models; +using System.Diagnostics.Eventing.Reader; + +namespace Microsoft.SelfService.Portal.Core.API.Interfaces +{ + public interface ITargetInterface + { + ICollection GetTargets(); + bool AddTargetById(TargetModel target); + bool EditTargetById(TargetModel target); + bool DeleteTargetById(TargetModel target); + + TargetModel GetTargetById(Guid Id); + TargetModel GetTargetByName(string Name); + + bool CheckTargetById(Guid Id); + bool CheckTargetByName(String Name); + bool SaveChanges(); + } +} + diff --git a/Interfaces/ITemplateCategoryInterface.cs b/Interfaces/ITemplateCategoryInterface.cs index b50626d..5a02680 100644 --- a/Interfaces/ITemplateCategoryInterface.cs +++ b/Interfaces/ITemplateCategoryInterface.cs @@ -1,4 +1,4 @@ -using Microsoft.SelfService.Portal.Core.API.Models; +using Microsoft.SelfService.Portal.Core.API.Models; namespace Microsoft.SelfService.Portal.Core.API.Interfaces { @@ -18,3 +18,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Interfaces bool SaveChanges(); } } + diff --git a/Interfaces/ITemplateInterface.cs b/Interfaces/ITemplateInterface.cs index a89217f..af6bfa5 100644 --- a/Interfaces/ITemplateInterface.cs +++ b/Interfaces/ITemplateInterface.cs @@ -15,6 +15,14 @@ namespace Microsoft.SelfService.Portal.Core.API.Interfaces bool CheckTemplateById(Guid Id); TemplateModel GetTemplateByName(string Name); bool CheckTemplateByName(string Name); + ICollection GetTemplateVersions(Guid templateId); + TemplateVersionModel? GetTemplateVersionById(Guid templateId, Guid versionId); + TemplateVersionModel? GetPublishedTemplateVersion(Guid templateId); + bool AddTemplateVersion(Guid templateId, TemplateVersionModel version, bool publish); + bool PublishTemplateVersion(Guid templateId, Guid versionId, string? publishedBy); + bool CheckTemplateVersionById(Guid templateId, Guid versionId); + bool CheckTemplateVersionByVersion(Guid templateId, string version); bool SaveChanges(); } } + diff --git a/Interfaces/IVirtualMachineInterface.cs b/Interfaces/IVirtualMachineInterface.cs deleted file mode 100644 index bdbdc02..0000000 --- a/Interfaces/IVirtualMachineInterface.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Microsoft.SelfService.Portal.Core.API.Models; -using System.Diagnostics.Eventing.Reader; - -namespace Microsoft.SelfService.Portal.Core.API.Interfaces -{ - public interface IVirtualMachineInterface - { - ICollection GetVirtualMachines(); - bool AddVirtualMachineById(VirtualMachineModel virtualMachine); - bool EditVirtualMachineById(VirtualMachineModel virtualMachine); - bool DeleteVirtualMachineById(VirtualMachineModel virtualMachine); - - VirtualMachineModel GetVirtualMachineById(Guid Id); - VirtualMachineModel GetVirtualMachineByName(string Name); - - bool CheckVirtualMachineById(Guid Id); - bool CheckVirtualMachineByName(String Name); - bool SaveChanges(); - } -} diff --git a/JsonDocuments/ConfigurationDocumentKind.cs b/JsonDocuments/ConfigurationDocumentKind.cs new file mode 100644 index 0000000..52f733a --- /dev/null +++ b/JsonDocuments/ConfigurationDocumentKind.cs @@ -0,0 +1,10 @@ +namespace Microsoft.SelfService.Portal.Core.API.JsonDocuments +{ + public enum ConfigurationDocumentKind + { + Template, + DeploymentOverride, + Metadata + } +} + diff --git a/JsonDocuments/ConfigurationDocumentValidationException.cs b/JsonDocuments/ConfigurationDocumentValidationException.cs new file mode 100644 index 0000000..da328ae --- /dev/null +++ b/JsonDocuments/ConfigurationDocumentValidationException.cs @@ -0,0 +1,11 @@ +namespace Microsoft.SelfService.Portal.Core.API.JsonDocuments +{ + public class ConfigurationDocumentValidationException : Exception + { + public ConfigurationDocumentValidationException(string message) + : base(message) + { + } + } +} + diff --git a/JsonDocuments/ConfigurationDocumentValidationResult.cs b/JsonDocuments/ConfigurationDocumentValidationResult.cs new file mode 100644 index 0000000..41db40d --- /dev/null +++ b/JsonDocuments/ConfigurationDocumentValidationResult.cs @@ -0,0 +1,5 @@ +namespace Microsoft.SelfService.Portal.Core.API.JsonDocuments +{ + public sealed record ConfigurationDocumentValidationResult(string JsonData, string SchemaVersion); +} + diff --git a/JsonDocuments/ConfigurationDocumentValidator.cs b/JsonDocuments/ConfigurationDocumentValidator.cs new file mode 100644 index 0000000..3e84857 --- /dev/null +++ b/JsonDocuments/ConfigurationDocumentValidator.cs @@ -0,0 +1,140 @@ +using System.Text.Json; + +namespace Microsoft.SelfService.Portal.Core.API.JsonDocuments +{ + public static class ConfigurationDocumentValidator + { + public const string CurrentSchemaVersion = "1.0"; + + private static readonly HashSet SupportedSchemaVersions = new(StringComparer.OrdinalIgnoreCase) + { + CurrentSchemaVersion + }; + + private static readonly HashSet SupportedTemplateTypes = new(StringComparer.OrdinalIgnoreCase) + { + "Environment", + "Domain", + "Landscape", + "Service", + "Stage", + "Deployment" + }; + + public static ConfigurationDocumentValidationResult NormalizeAndValidate( + string? jsonData, + ConfigurationDocumentKind kind, + string? expectedSchemaVersion = null) + { + var source = string.IsNullOrWhiteSpace(jsonData) ? "{}" : jsonData; + + using var document = Parse(source); + var root = document.RootElement; + + if (root.ValueKind != JsonValueKind.Object) + { + throw new ConfigurationDocumentValidationException("Configuration data must be a JSON object."); + } + + return kind switch + { + ConfigurationDocumentKind.Template => ValidateTemplate(root, expectedSchemaVersion), + ConfigurationDocumentKind.DeploymentOverride => ValidateDeploymentOverride(root), + ConfigurationDocumentKind.Metadata => ValidateMetadata(root), + _ => throw new ConfigurationDocumentValidationException($"Unsupported configuration document kind [{kind}].") + }; + } + + public static string NormalizeObject(string? jsonData) + { + return NormalizeAndValidate(jsonData, ConfigurationDocumentKind.Metadata).JsonData; + } + + private static ConfigurationDocumentValidationResult ValidateTemplate(JsonElement root, string? expectedSchemaVersion) + { + var schemaVersion = GetRequiredString(root, "schemaVersion"); + if (!SupportedSchemaVersions.Contains(schemaVersion)) + { + throw new ConfigurationDocumentValidationException($"Unsupported schemaVersion [{schemaVersion}]."); + } + + if (!string.IsNullOrWhiteSpace(expectedSchemaVersion) + && !string.Equals(schemaVersion, expectedSchemaVersion, StringComparison.OrdinalIgnoreCase)) + { + throw new ConfigurationDocumentValidationException($"Document schemaVersion [{schemaVersion}] does not match requested schemaVersion [{expectedSchemaVersion}]."); + } + + var templateType = GetRequiredString(root, "templateType"); + if (!SupportedTemplateTypes.Contains(templateType)) + { + throw new ConfigurationDocumentValidationException($"Unsupported templateType [{templateType}]."); + } + + RequireObject(root, "parameters"); + RequireObject(root, "variables"); + RequireObject(root, "resources"); + + return new ConfigurationDocumentValidationResult(root.GetRawText(), schemaVersion); + } + + private static ConfigurationDocumentValidationResult ValidateDeploymentOverride(JsonElement root) + { + var schemaVersion = TryGetString(root, "schemaVersion") ?? CurrentSchemaVersion; + if (!SupportedSchemaVersions.Contains(schemaVersion)) + { + throw new ConfigurationDocumentValidationException($"Unsupported deployment override schemaVersion [{schemaVersion}]."); + } + + return new ConfigurationDocumentValidationResult(root.GetRawText(), schemaVersion); + } + + private static ConfigurationDocumentValidationResult ValidateMetadata(JsonElement root) + { + return new ConfigurationDocumentValidationResult(root.GetRawText(), TryGetString(root, "schemaVersion") ?? CurrentSchemaVersion); + } + + private static JsonDocument Parse(string jsonData) + { + try + { + return JsonDocument.Parse(jsonData); + } + catch (JsonException ex) + { + throw new ConfigurationDocumentValidationException($"Invalid JSON document: {ex.Message}"); + } + } + + private static string GetRequiredString(JsonElement root, string propertyName) + { + var value = TryGetString(root, propertyName); + if (string.IsNullOrWhiteSpace(value)) + { + throw new ConfigurationDocumentValidationException($"Configuration data requires string property [{propertyName}]."); + } + + return value; + } + + private static string? TryGetString(JsonElement root, string propertyName) + { + if (!root.TryGetProperty(propertyName, out var property)) + { + return null; + } + + return property.ValueKind == JsonValueKind.String + ? property.GetString() + : null; + } + + private static void RequireObject(JsonElement root, string propertyName) + { + if (!root.TryGetProperty(propertyName, out var property) || property.ValueKind != JsonValueKind.Object) + { + throw new ConfigurationDocumentValidationException($"Configuration data requires object property [{propertyName}]."); + } + } + } +} + diff --git a/Migrations/20260517193537_SyncEnvironmentStageAndHostingType.Designer.cs b/Migrations/20260517193537_SyncEnvironmentStageAndHostingType.Designer.cs new file mode 100644 index 0000000..0d22dde --- /dev/null +++ b/Migrations/20260517193537_SyncEnvironmentStageAndHostingType.Designer.cs @@ -0,0 +1,1489 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Microsoft.SelfService.Portal.Core.API.Context; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + [DbContext(typeof(DataContext))] + [Migration("20260517193537_SyncEnvironmentStageAndHostingType")] + partial class SyncEnvironmentStageAndHostingType + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "10.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4) + .HasDefaultValueSql("'New'"); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TemplateId"); + + b.ToTable("DeploymentBatches", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("VirtualMachineId", "DeploymentGroupId"); + + b.HasIndex("DeploymentGroupId"); + + b.ToTable("DeploymentExecutions", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentRules"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RequiresApproval") + .HasColumnType("bit") + .HasColumnOrder(5); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(2); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.ToTable("DeploymentRuleSteps"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("FQDN") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("NetBIOS") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("Domains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.Property("EnvironmentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("DomainId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("EnvironmentId", "DomainId"); + + b.HasIndex("DomainId"); + + b.ToTable("EnvironmentDomains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("EnvironmentType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("HostingType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ProviderType") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("SubscriptionId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("TenantId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.ToTable("Environments"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EventModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Class") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Method") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("RestEndpointMethod") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("RestEndpointOperation") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("RunbookId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("RunbookId"); + + b.ToTable("Events"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.JobModel", b => + { + b.Property("RunbookId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.Property("DeploymentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("RunbookId", "DeploymentId"); + + b.HasIndex("DeploymentId"); + + b.ToTable("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ParentCategoryName") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("showOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("OptionCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("OptionCategoryId") + .HasColumnType("uniqueidentifier"); + + b.Property("OptionType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("OptionValue") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.HasIndex("OptionCategoryId"); + + b.ToTable("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("Finished") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("LockedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("LockedUntil") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("MaxAttempts") + .HasColumnType("int") + .HasColumnOrder(5); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(11); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PayloadJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RuleSnapshotJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(12); + + b.Property("Started") + .HasColumnType("datetime2") + .HasColumnOrder(6); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Type") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentJobs", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("ApprovalComment") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("ApprovedAt") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("ApprovedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DependsOnQueueJobStepId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DependsOnDeploymentJobStepId") + .HasColumnOrder(2); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.HasIndex("DependsOnQueueJobStepId"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobSteps", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(6); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(3); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(4); + + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobTargets", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Runbooks"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IconKey") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("IsCloudService") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Services"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Key") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("ServiceRoleDefinitions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Color") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("TemplateCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(6); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("TemplateCategoryId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(5); + + b.Property("Version") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateCategoryId"); + + b.ToTable("Templates"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.Property("OptionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("OptionId", "TemplateId"); + + b.HasIndex("TemplateId"); + + b.ToTable("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DomainID") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("ExternalId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DomainID"); + + b.ToTable("VirtualMachines"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("DeploymentGroups") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("Deployments") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", "VirtualMachine") + .WithMany("Deployments") + .HasForeignKey("VirtualMachineId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("VirtualMachine"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany("Steps") + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("EnvironmentDomains") + .HasForeignKey("DomainId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", "Environment") + .WithMany("EnvironmentDomains") + .HasForeignKey("EnvironmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Domain"); + + b.Navigation("Environment"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EventModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", "Runbook") + .WithMany("Events") + .HasForeignKey("RunbookId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Runbook"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.JobModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", "Deployment") + .WithMany("Jobs") + .HasForeignKey("DeploymentId") + .HasPrincipalKey("Id") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", "Runbook") + .WithMany("Jobs") + .HasForeignKey("RunbookId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Deployment"); + + b.Navigation("Runbook"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", "OptionCategory") + .WithMany("Options") + .HasForeignKey("OptionCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("OptionCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", "DependsOnQueueJobStep") + .WithMany() + .HasForeignKey("DependsOnQueueJobStepId") + .OnDelete(DeleteBehavior.Restrict); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Steps") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DependsOnQueueJobStep"); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Targets") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("RoleDefinitions") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("TemplateCategories") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId"); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", "TemplateCategory") + .WithMany("Templates") + .HasForeignKey("TemplateCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("TemplateCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", "Option") + .WithMany("TemplateOptions") + .HasForeignKey("OptionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateOptions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Option"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("VirtualMachines") + .HasForeignKey("DomainID"); + + b.Navigation("Domain"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Navigation("Deployments"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Navigation("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Navigation("Steps"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Navigation("EnvironmentDomains"); + + b.Navigation("VirtualMachines"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Navigation("EnvironmentDomains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Navigation("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Navigation("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Navigation("Steps"); + + b.Navigation("Targets"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", b => + { + b.Navigation("Events"); + + b.Navigation("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Navigation("RoleDefinitions"); + + b.Navigation("TemplateCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Navigation("Templates"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Navigation("DeploymentGroups"); + + b.Navigation("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Navigation("Deployments"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20260517193537_SyncEnvironmentStageAndHostingType.cs b/Migrations/20260517193537_SyncEnvironmentStageAndHostingType.cs new file mode 100644 index 0000000..d5f3e03 --- /dev/null +++ b/Migrations/20260517193537_SyncEnvironmentStageAndHostingType.cs @@ -0,0 +1,142 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + /// + public partial class SyncEnvironmentStageAndHostingType : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AlterColumn( + name: "TenantId", + table: "Environments", + type: "nvarchar(max)", + nullable: true, + oldClrType: typeof(string), + oldType: "nvarchar(max)", + oldNullable: true) + .Annotation("Relational:ColumnOrder", 5) + .OldAnnotation("Relational:ColumnOrder", 4); + + migrationBuilder.AlterColumn( + name: "SubscriptionId", + table: "Environments", + type: "nvarchar(max)", + nullable: true, + oldClrType: typeof(string), + oldType: "nvarchar(max)", + oldNullable: true) + .Annotation("Relational:ColumnOrder", 6) + .OldAnnotation("Relational:ColumnOrder", 5); + + migrationBuilder.AlterColumn( + name: "ProviderType", + table: "Environments", + type: "nvarchar(max)", + nullable: true, + oldClrType: typeof(string), + oldType: "nvarchar(max)", + oldNullable: true) + .Annotation("Relational:ColumnOrder", 4) + .OldAnnotation("Relational:ColumnOrder", 3); + + migrationBuilder.AlterColumn( + name: "MetadataJson", + table: "Environments", + type: "nvarchar(max)", + nullable: true, + oldClrType: typeof(string), + oldType: "nvarchar(max)", + oldNullable: true) + .Annotation("Relational:ColumnOrder", 7) + .OldAnnotation("Relational:ColumnOrder", 6); + + migrationBuilder.AddColumn( + name: "HostingType", + table: "Environments", + type: "nvarchar(max)", + nullable: false, + defaultValue: "OnPrem") + .Annotation("Relational:ColumnOrder", 3); + + migrationBuilder.Sql(@" + UPDATE [Environments] + SET [HostingType] = CASE + WHEN [EnvironmentType] IN ('OnPrem','AzureTenant','M365Tenant') THEN [EnvironmentType] + ELSE 'OnPrem' + END + "); + + migrationBuilder.Sql(@" + UPDATE [Environments] + SET [EnvironmentType] = CASE + WHEN [EnvironmentType] IN ('Development','Test','QA','Production') THEN [EnvironmentType] + ELSE 'Test' + END + "); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.Sql(@" + UPDATE [Environments] + SET [EnvironmentType] = CASE + WHEN [HostingType] IN ('OnPrem','AzureTenant','M365Tenant') THEN [HostingType] + ELSE 'OnPrem' + END + "); + + migrationBuilder.DropColumn( + name: "HostingType", + table: "Environments"); + + migrationBuilder.AlterColumn( + name: "TenantId", + table: "Environments", + type: "nvarchar(max)", + nullable: true, + oldClrType: typeof(string), + oldType: "nvarchar(max)", + oldNullable: true) + .Annotation("Relational:ColumnOrder", 4) + .OldAnnotation("Relational:ColumnOrder", 5); + + migrationBuilder.AlterColumn( + name: "SubscriptionId", + table: "Environments", + type: "nvarchar(max)", + nullable: true, + oldClrType: typeof(string), + oldType: "nvarchar(max)", + oldNullable: true) + .Annotation("Relational:ColumnOrder", 5) + .OldAnnotation("Relational:ColumnOrder", 6); + + migrationBuilder.AlterColumn( + name: "ProviderType", + table: "Environments", + type: "nvarchar(max)", + nullable: true, + oldClrType: typeof(string), + oldType: "nvarchar(max)", + oldNullable: true) + .Annotation("Relational:ColumnOrder", 3) + .OldAnnotation("Relational:ColumnOrder", 4); + + migrationBuilder.AlterColumn( + name: "MetadataJson", + table: "Environments", + type: "nvarchar(max)", + nullable: true, + oldClrType: typeof(string), + oldType: "nvarchar(max)", + oldNullable: true) + .Annotation("Relational:ColumnOrder", 6) + .OldAnnotation("Relational:ColumnOrder", 7); + } + } +} diff --git a/Migrations/20260517205713_LinkDeploymentBatchToDeploymentRule.Designer.cs b/Migrations/20260517205713_LinkDeploymentBatchToDeploymentRule.Designer.cs new file mode 100644 index 0000000..27081d0 --- /dev/null +++ b/Migrations/20260517205713_LinkDeploymentBatchToDeploymentRule.Designer.cs @@ -0,0 +1,1489 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Microsoft.SelfService.Portal.Core.API.Context; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + [DbContext(typeof(DataContext))] + [Migration("20260517205713_LinkDeploymentBatchToDeploymentRule")] + partial class LinkDeploymentBatchToDeploymentRule + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "10.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4) + .HasDefaultValueSql("'New'"); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TemplateId"); + + b.ToTable("DeploymentBatches", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("VirtualMachineId", "DeploymentGroupId"); + + b.HasIndex("DeploymentGroupId"); + + b.ToTable("DeploymentExecutions", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentRules"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RequiresApproval") + .HasColumnType("bit") + .HasColumnOrder(5); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(2); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.ToTable("DeploymentRuleSteps"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("FQDN") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("NetBIOS") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("Domains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.Property("EnvironmentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("DomainId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("EnvironmentId", "DomainId"); + + b.HasIndex("DomainId"); + + b.ToTable("EnvironmentDomains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("EnvironmentType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("HostingType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ProviderType") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("SubscriptionId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("TenantId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.ToTable("Environments"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EventModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Class") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Method") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("RestEndpointMethod") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("RestEndpointOperation") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("RunbookId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("RunbookId"); + + b.ToTable("Events"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.JobModel", b => + { + b.Property("RunbookId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.Property("DeploymentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("RunbookId", "DeploymentId"); + + b.HasIndex("DeploymentId"); + + b.ToTable("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ParentCategoryName") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("showOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("OptionCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("OptionCategoryId") + .HasColumnType("uniqueidentifier"); + + b.Property("OptionType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("OptionValue") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.HasIndex("OptionCategoryId"); + + b.ToTable("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("Finished") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("LockedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("LockedUntil") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("MaxAttempts") + .HasColumnType("int") + .HasColumnOrder(5); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(11); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PayloadJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RuleSnapshotJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(12); + + b.Property("Started") + .HasColumnType("datetime2") + .HasColumnOrder(6); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Type") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentJobs", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("ApprovalComment") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("ApprovedAt") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("ApprovedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DependsOnQueueJobStepId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DependsOnDeploymentJobStepId") + .HasColumnOrder(2); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.HasIndex("DependsOnQueueJobStepId"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobSteps", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(6); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(3); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(4); + + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobTargets", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Runbooks"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IconKey") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("IsCloudService") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Services"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Key") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("ServiceRoleDefinitions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Color") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("TemplateCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(6); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("TemplateCategoryId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(5); + + b.Property("Version") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateCategoryId"); + + b.ToTable("Templates"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.Property("OptionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("OptionId", "TemplateId"); + + b.HasIndex("TemplateId"); + + b.ToTable("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DomainID") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("ExternalId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DomainID"); + + b.ToTable("VirtualMachines"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("DeploymentGroups") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("Deployments") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", "VirtualMachine") + .WithMany("Deployments") + .HasForeignKey("VirtualMachineId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("VirtualMachine"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany("Steps") + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("EnvironmentDomains") + .HasForeignKey("DomainId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", "Environment") + .WithMany("EnvironmentDomains") + .HasForeignKey("EnvironmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Domain"); + + b.Navigation("Environment"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EventModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", "Runbook") + .WithMany("Events") + .HasForeignKey("RunbookId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Runbook"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.JobModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", "Deployment") + .WithMany("Jobs") + .HasForeignKey("DeploymentId") + .HasPrincipalKey("Id") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", "Runbook") + .WithMany("Jobs") + .HasForeignKey("RunbookId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Deployment"); + + b.Navigation("Runbook"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", "OptionCategory") + .WithMany("Options") + .HasForeignKey("OptionCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("OptionCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", "DependsOnQueueJobStep") + .WithMany() + .HasForeignKey("DependsOnQueueJobStepId") + .OnDelete(DeleteBehavior.Restrict); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Steps") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DependsOnQueueJobStep"); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Targets") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("RoleDefinitions") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("TemplateCategories") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId"); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", "TemplateCategory") + .WithMany("Templates") + .HasForeignKey("TemplateCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("TemplateCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", "Option") + .WithMany("TemplateOptions") + .HasForeignKey("OptionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateOptions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Option"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("VirtualMachines") + .HasForeignKey("DomainID"); + + b.Navigation("Domain"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Navigation("Deployments"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Navigation("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Navigation("Steps"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Navigation("EnvironmentDomains"); + + b.Navigation("VirtualMachines"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Navigation("EnvironmentDomains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Navigation("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Navigation("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Navigation("Steps"); + + b.Navigation("Targets"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", b => + { + b.Navigation("Events"); + + b.Navigation("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Navigation("RoleDefinitions"); + + b.Navigation("TemplateCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Navigation("Templates"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Navigation("DeploymentGroups"); + + b.Navigation("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Navigation("Deployments"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20260517205713_LinkDeploymentBatchToDeploymentRule.cs b/Migrations/20260517205713_LinkDeploymentBatchToDeploymentRule.cs new file mode 100644 index 0000000..bf9c29b --- /dev/null +++ b/Migrations/20260517205713_LinkDeploymentBatchToDeploymentRule.cs @@ -0,0 +1,22 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + /// + public partial class LinkDeploymentBatchToDeploymentRule : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + + } + } +} diff --git a/Migrations/20260707195927_AddTemplateVersions.Designer.cs b/Migrations/20260707195927_AddTemplateVersions.Designer.cs new file mode 100644 index 0000000..a0469c2 --- /dev/null +++ b/Migrations/20260707195927_AddTemplateVersions.Designer.cs @@ -0,0 +1,1599 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Microsoft.SelfService.Portal.Core.API.Context; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + [DbContext(typeof(DataContext))] + [Migration("20260707195927_AddTemplateVersions")] + partial class AddTemplateVersions + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "10.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4) + .HasDefaultValueSql("'New'"); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateId"); + + b.ToTable("DeploymentBatches", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("VirtualMachineId", "DeploymentGroupId"); + + b.HasIndex("DeploymentGroupId"); + + b.ToTable("DeploymentExecutions", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentRules"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RequiresApproval") + .HasColumnType("bit") + .HasColumnOrder(5); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(2); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.ToTable("DeploymentRuleSteps"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("FQDN") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("NetBIOS") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("Domains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.Property("EnvironmentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("DomainId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("EnvironmentId", "DomainId"); + + b.HasIndex("DomainId"); + + b.ToTable("EnvironmentDomains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("EnvironmentType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("HostingType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ProviderType") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("SubscriptionId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("TenantId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.ToTable("Environments"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EventModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Class") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Method") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("RestEndpointMethod") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("RestEndpointOperation") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("RunbookId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("RunbookId"); + + b.ToTable("Events"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.JobModel", b => + { + b.Property("RunbookId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.Property("DeploymentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("RunbookId", "DeploymentId"); + + b.HasIndex("DeploymentId"); + + b.ToTable("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ParentCategoryName") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("showOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("OptionCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("OptionCategoryId") + .HasColumnType("uniqueidentifier"); + + b.Property("OptionType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("OptionValue") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.HasIndex("OptionCategoryId"); + + b.ToTable("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("Finished") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("LockedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("LockedUntil") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("MaxAttempts") + .HasColumnType("int") + .HasColumnOrder(5); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(11); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PayloadJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RuleSnapshotJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(12); + + b.Property("Started") + .HasColumnType("datetime2") + .HasColumnOrder(6); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Type") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentJobs", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("ApprovalComment") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("ApprovedAt") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("ApprovedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DependsOnQueueJobStepId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DependsOnDeploymentJobStepId") + .HasColumnOrder(2); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.HasIndex("DependsOnQueueJobStepId"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobSteps", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(6); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(3); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(4); + + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobTargets", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Runbooks"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IconKey") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("IsCloudService") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Services"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Key") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("ServiceRoleDefinitions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Color") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("TemplateCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(6); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("TemplateCategoryId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(5); + + b.Property("Version") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateCategoryId"); + + b.ToTable("Templates"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.Property("OptionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("OptionId", "TemplateId"); + + b.HasIndex("TemplateId"); + + b.ToTable("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("IsPublished") + .HasColumnType("bit") + .HasColumnOrder(6); + + b.Property("JsonData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JsonHash") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PublishedAt") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("PublishedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(8); + + b.Property("SchemaVersion") + .IsRequired() + .HasMaxLength(32) + .HasColumnType("nvarchar(32)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Version") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TemplateId") + .IsUnique() + .HasFilter("[IsPublished] = 1"); + + b.HasIndex("TemplateId", "Version") + .IsUnique(); + + b.ToTable("TemplateVersions", t => + { + t.HasCheckConstraint("CK_TemplateVersions_JsonData_IsJson", "ISJSON([JsonData]) = 1"); + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DomainID") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("ExternalId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DomainID"); + + b.ToTable("VirtualMachines"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.SetNull); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("DeploymentGroups") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("Deployments") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", "VirtualMachine") + .WithMany("Deployments") + .HasForeignKey("VirtualMachineId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("VirtualMachine"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany("Steps") + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("EnvironmentDomains") + .HasForeignKey("DomainId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", "Environment") + .WithMany("EnvironmentDomains") + .HasForeignKey("EnvironmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Domain"); + + b.Navigation("Environment"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EventModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", "Runbook") + .WithMany("Events") + .HasForeignKey("RunbookId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Runbook"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.JobModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", "Deployment") + .WithMany("Jobs") + .HasForeignKey("DeploymentId") + .HasPrincipalKey("Id") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", "Runbook") + .WithMany("Jobs") + .HasForeignKey("RunbookId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Deployment"); + + b.Navigation("Runbook"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", "OptionCategory") + .WithMany("Options") + .HasForeignKey("OptionCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("OptionCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", "DependsOnQueueJobStep") + .WithMany() + .HasForeignKey("DependsOnQueueJobStepId") + .OnDelete(DeleteBehavior.Restrict); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Steps") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DependsOnQueueJobStep"); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Targets") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("RoleDefinitions") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("TemplateCategories") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId"); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", "TemplateCategory") + .WithMany("Templates") + .HasForeignKey("TemplateCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("TemplateCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", "Option") + .WithMany("TemplateOptions") + .HasForeignKey("OptionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateOptions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Option"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateVersions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("VirtualMachines") + .HasForeignKey("DomainID"); + + b.Navigation("Domain"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Navigation("Deployments"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Navigation("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Navigation("Steps"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Navigation("EnvironmentDomains"); + + b.Navigation("VirtualMachines"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Navigation("EnvironmentDomains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Navigation("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Navigation("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Navigation("Steps"); + + b.Navigation("Targets"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", b => + { + b.Navigation("Events"); + + b.Navigation("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Navigation("RoleDefinitions"); + + b.Navigation("TemplateCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Navigation("Templates"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Navigation("DeploymentGroups"); + + b.Navigation("TemplateOptions"); + + b.Navigation("TemplateVersions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Navigation("Deployments"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20260707195927_AddTemplateVersions.cs b/Migrations/20260707195927_AddTemplateVersions.cs new file mode 100644 index 0000000..d0aefa4 --- /dev/null +++ b/Migrations/20260707195927_AddTemplateVersions.cs @@ -0,0 +1,128 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + /// + public partial class AddTemplateVersions : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "DeploymentRuleId", + table: "DeploymentBatches", + type: "uniqueidentifier", + nullable: true) + .Annotation("Relational:ColumnOrder", 3); + + migrationBuilder.CreateTable( + name: "TemplateVersions", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false, defaultValueSql: "NEWID()"), + TemplateId = table.Column(type: "uniqueidentifier", nullable: false), + Version = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), + JsonData = table.Column(type: "nvarchar(max)", nullable: false), + JsonHash = table.Column(type: "nvarchar(64)", maxLength: 64, nullable: false), + SchemaVersion = table.Column(type: "nvarchar(32)", maxLength: 32, nullable: false), + IsPublished = table.Column(type: "bit", nullable: false), + PublishedAt = table.Column(type: "datetime2", nullable: true), + PublishedBy = table.Column(type: "nvarchar(max)", nullable: true), + Modified = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + ModifiedBy = table.Column(type: "nvarchar(max)", nullable: false), + Created = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + CreatedBy = table.Column(type: "nvarchar(max)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_TemplateVersions", x => x.Id); + table.CheckConstraint("CK_TemplateVersions_JsonData_IsJson", "ISJSON([JsonData]) = 1"); + table.ForeignKey( + name: "FK_TemplateVersions_Templates_TemplateId", + column: x => x.TemplateId, + principalTable: "Templates", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.Sql(""" + INSERT INTO [TemplateVersions] + ([Id], [TemplateId], [Version], [JsonData], [JsonHash], [SchemaVersion], [IsPublished], [PublishedAt], [PublishedBy], [Modified], [ModifiedBy], [Created], [CreatedBy]) + SELECT + NEWID(), + [Id], + CASE + WHEN [Version] IS NULL OR LTRIM(RTRIM([Version])) = '' THEN '1.0.0' + ELSE [Version] + END, + CASE + WHEN ISJSON([JSONData]) = 1 THEN [JSONData] + ELSE '{}' + END, + CONVERT(varchar(64), HASHBYTES('SHA2_256', CONVERT(varbinary(max), CASE WHEN ISJSON([JSONData]) = 1 THEN [JSONData] ELSE '{}' END)), 2), + '1.0', + 1, + SYSUTCDATETIME(), + [CreatedBy], + [Modified], + [ModifiedBy], + [Created], + [CreatedBy] + FROM [Templates] + WHERE NOT EXISTS ( + SELECT 1 + FROM [TemplateVersions] + WHERE [TemplateVersions].[TemplateId] = [Templates].[Id] + ); + """); + + migrationBuilder.CreateIndex( + name: "IX_DeploymentBatches_DeploymentRuleId", + table: "DeploymentBatches", + column: "DeploymentRuleId"); + + migrationBuilder.CreateIndex( + name: "IX_TemplateVersions_TemplateId", + table: "TemplateVersions", + column: "TemplateId", + unique: true, + filter: "[IsPublished] = 1"); + + migrationBuilder.CreateIndex( + name: "IX_TemplateVersions_TemplateId_Version", + table: "TemplateVersions", + columns: new[] { "TemplateId", "Version" }, + unique: true); + + migrationBuilder.AddForeignKey( + name: "FK_DeploymentBatches_DeploymentRules_DeploymentRuleId", + table: "DeploymentBatches", + column: "DeploymentRuleId", + principalTable: "DeploymentRules", + principalColumn: "Id", + onDelete: ReferentialAction.SetNull); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_DeploymentBatches_DeploymentRules_DeploymentRuleId", + table: "DeploymentBatches"); + + migrationBuilder.DropTable( + name: "TemplateVersions"); + + migrationBuilder.DropIndex( + name: "IX_DeploymentBatches_DeploymentRuleId", + table: "DeploymentBatches"); + + migrationBuilder.DropColumn( + name: "DeploymentRuleId", + table: "DeploymentBatches"); + } + } +} diff --git a/Migrations/20260707203222_ResetAndSeedDemoData.Designer.cs b/Migrations/20260707203222_ResetAndSeedDemoData.Designer.cs new file mode 100644 index 0000000..f6bcc37 --- /dev/null +++ b/Migrations/20260707203222_ResetAndSeedDemoData.Designer.cs @@ -0,0 +1,2123 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Microsoft.SelfService.Portal.Core.API.Context; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + [DbContext(typeof(DataContext))] + [Migration("20260707203222_ResetAndSeedDemoData")] + partial class ResetAndSeedDemoData + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "10.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4) + .HasDefaultValueSql("'New'"); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateId"); + + b.ToTable("DeploymentBatches", (string)null); + + b.HasData( + new + { + Id = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending", + TemplateId = new Guid("70000000-0000-0000-0000-000000000003") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("VirtualMachineId", "DeploymentGroupId"); + + b.HasIndex("DeploymentGroupId"); + + b.ToTable("DeploymentExecutions", (string)null); + + b.HasData( + new + { + VirtualMachineId = new Guid("30000000-0000-0000-0000-000000000004"), + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Id = new Guid("81000000-0000-0000-0000-000000000001"), + JSONData = "{\"role\":\"WebFrontEnd\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending" + }, + new + { + VirtualMachineId = new Guid("30000000-0000-0000-0000-000000000005"), + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Id = new Guid("81000000-0000-0000-0000-000000000002"), + JSONData = "{\"role\":\"Application\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentRules"); + + b.HasData( + new + { + Id = new Guid("60000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Validate input, wait for approval, then provision targets.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Standard Provisioning" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RequiresApproval") + .HasColumnType("bit") + .HasColumnOrder(5); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(2); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.ToTable("DeploymentRuleSteps"); + + b.HasData( + new + { + Id = new Guid("60000000-0000-0000-0000-000000000101"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"action\":\"validate\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Validate configuration", + RequiresApproval = false, + SortOrder = 10, + StepType = "Provision" + }, + new + { + Id = new Guid("60000000-0000-0000-0000-000000000102"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"approverGroup\":\"Platform Owners\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Approve deployment", + RequiresApproval = true, + SortOrder = 20, + StepType = "Approval" + }, + new + { + Id = new Guid("60000000-0000-0000-0000-000000000103"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"action\":\"deploy\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Provision workload", + RequiresApproval = false, + SortOrder = 30, + StepType = "Provision" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("FQDN") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("NetBIOS") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("Domains"); + + b.HasData( + new + { + Id = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + FQDN = "corp.contoso.com", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Central Management", + NetBIOS = "CONTOSO" + }, + new + { + Id = new Guid("20000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + FQDN = "resource.contoso.com", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Resource Domain", + NetBIOS = "RESOURCE" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.Property("EnvironmentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("DomainId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("EnvironmentId", "DomainId"); + + b.HasIndex("DomainId"); + + b.ToTable("EnvironmentDomains"); + + b.HasData( + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000001"), + DomainId = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }, + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000002"), + DomainId = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }, + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000002"), + DomainId = new Guid("20000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("EnvironmentType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("HostingType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ProviderType") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("SubscriptionId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("TenantId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.ToTable("Environments"); + + b.HasData( + new + { + Id = new Guid("10000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Test", + HostingType = "OnPrem", + MetadataJson = "{\"location\":\"Datacenter A\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Test" + }, + new + { + Id = new Guid("10000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Production", + HostingType = "OnPrem", + MetadataJson = "{\"location\":\"Datacenter A\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Production" + }, + new + { + Id = new Guid("10000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Production", + HostingType = "M365Tenant", + MetadataJson = "{\"tenant\":\"contoso.onmicrosoft.com\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso M365", + ProviderType = "Microsoft365", + TenantId = "11111111-1111-1111-1111-111111111111" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EventModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Class") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Method") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("RestEndpointMethod") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("RestEndpointOperation") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("RunbookId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("RunbookId"); + + b.ToTable("Events"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.JobModel", b => + { + b.Property("RunbookId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.Property("DeploymentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("RunbookId", "DeploymentId"); + + b.HasIndex("DeploymentId"); + + b.ToTable("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ParentCategoryName") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("showOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("OptionCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("OptionCategoryId") + .HasColumnType("uniqueidentifier"); + + b.Property("OptionType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("OptionValue") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.HasIndex("OptionCategoryId"); + + b.ToTable("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("Finished") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("LockedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("LockedUntil") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("MaxAttempts") + .HasColumnType("int") + .HasColumnOrder(5); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(11); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PayloadJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RuleSnapshotJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(12); + + b.Property("Started") + .HasColumnType("datetime2") + .HasColumnOrder(6); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Type") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentJobs", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("ApprovalComment") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("ApprovedAt") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("ApprovedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DependsOnQueueJobStepId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DependsOnDeploymentJobStepId") + .HasColumnOrder(2); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.HasIndex("DependsOnQueueJobStepId"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobSteps", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(6); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(3); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(4); + + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobTargets", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Runbooks"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IconKey") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("IsCloudService") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Services"); + + b.HasData( + new + { + Id = new Guid("40000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "On-premises directory and identity service.", + IconKey = "network", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Active Directory" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Database platform for application workloads.", + IconKey = "database", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "SQL Server" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Collaboration platform for on-premises workloads.", + IconKey = "sharepoint", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "SharePoint Server" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Cloud collaboration workload in Microsoft 365.", + IconKey = "messages-square", + IsCloudService = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Microsoft Teams" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Key") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("ServiceRoleDefinitions"); + + b.HasData( + new + { + Id = new Guid("41000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint farm role.", + Key = "Farm", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Farm", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint web front-end role.", + Key = "WebFrontEnd", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Web Front End", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint service application role.", + Key = "Application", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Application", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SQL Server database role.", + Key = "Database", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Database", + ServiceId = new Guid("40000000-0000-0000-0000-000000000002") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Color") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("TemplateCategories"); + + b.HasData( + new + { + Id = new Guid("50000000-0000-0000-0000-000000000001"), + Color = "#2563EB", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for domain controller and domain configuration.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Domain Services", + ServiceId = new Guid("40000000-0000-0000-0000-000000000001") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000002"), + Color = "#16A34A", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for SQL Server workloads.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Database Platform", + ServiceId = new Guid("40000000-0000-0000-0000-000000000002") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000003"), + Color = "#0F766E", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for SharePoint Server farms.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Collaboration Farm", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000004"), + Color = "#7C3AED", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for Teams policy configuration.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Teams Policies", + ServiceId = new Guid("40000000-0000-0000-0000-000000000004") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(6); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("TemplateCategoryId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(5); + + b.Property("Version") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateCategoryId"); + + b.ToTable("Templates"); + + b.HasData( + new + { + Id = new Guid("70000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a reusable Active Directory domain baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Active Directory Domain", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000001"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a SQL Server baseline for application workloads.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso SQL Server", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000002"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a SharePoint Server farm baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso SharePoint Server", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000003"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a Microsoft Teams policy baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Teams Policies", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000004"), + Version = "1.0.0" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.Property("OptionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("OptionId", "TemplateId"); + + b.HasIndex("TemplateId"); + + b.ToTable("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("IsPublished") + .HasColumnType("bit") + .HasColumnOrder(6); + + b.Property("JsonData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JsonHash") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PublishedAt") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("PublishedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(8); + + b.Property("SchemaVersion") + .IsRequired() + .HasMaxLength(32) + .HasColumnType("nvarchar(32)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Version") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TemplateId") + .IsUnique() + .HasFilter("[IsPublished] = 1"); + + b.HasIndex("TemplateId", "Version") + .IsUnique(); + + b.ToTable("TemplateVersions", t => + { + t.HasCheckConstraint("CK_TemplateVersions_JsonData_IsJson", "ISJSON([JsonData]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("71000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", + JsonHash = "C05CBEF91131C75DE53B9609D9C2709D680AFC9559EE8D998318A132490F79A7", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000001"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", + JsonHash = "F376737E82CB6B729F7B9960CB9988897C16D90A1C454ED2F594B28EB86ECA11", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000002"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", + JsonHash = "FD5F0FD3C13538FAC70646972DC364DFCEAAF85BBE91B0F50FDFF9FD3A3748B4", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000003"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", + JsonHash = "32A902FE1A871D4CE2C877EBC5542F7562856532F09BA7F53597B21270586241", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000004"), + Version = "1.0.0" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DomainID") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("ExternalId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DomainID"); + + b.ToTable("VirtualMachines"); + + b.HasData( + new + { + Id = new Guid("30000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-DC-01" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Production\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-DC-02" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SqlServer\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SQL-01" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SHP-01" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000005"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SHP-02" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.SetNull); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("DeploymentGroups") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("Deployments") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", "VirtualMachine") + .WithMany("Deployments") + .HasForeignKey("VirtualMachineId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("VirtualMachine"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany("Steps") + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("EnvironmentDomains") + .HasForeignKey("DomainId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", "Environment") + .WithMany("EnvironmentDomains") + .HasForeignKey("EnvironmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Domain"); + + b.Navigation("Environment"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EventModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", "Runbook") + .WithMany("Events") + .HasForeignKey("RunbookId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Runbook"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.JobModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", "Deployment") + .WithMany("Jobs") + .HasForeignKey("DeploymentId") + .HasPrincipalKey("Id") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", "Runbook") + .WithMany("Jobs") + .HasForeignKey("RunbookId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Deployment"); + + b.Navigation("Runbook"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", "OptionCategory") + .WithMany("Options") + .HasForeignKey("OptionCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("OptionCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", "DependsOnQueueJobStep") + .WithMany() + .HasForeignKey("DependsOnQueueJobStepId") + .OnDelete(DeleteBehavior.Restrict); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Steps") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DependsOnQueueJobStep"); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Targets") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("RoleDefinitions") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("TemplateCategories") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId"); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", "TemplateCategory") + .WithMany("Templates") + .HasForeignKey("TemplateCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("TemplateCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", "Option") + .WithMany("TemplateOptions") + .HasForeignKey("OptionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateOptions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Option"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateVersions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("VirtualMachines") + .HasForeignKey("DomainID"); + + b.Navigation("Domain"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Navigation("Deployments"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Navigation("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Navigation("Steps"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Navigation("EnvironmentDomains"); + + b.Navigation("VirtualMachines"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Navigation("EnvironmentDomains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Navigation("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Navigation("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Navigation("Steps"); + + b.Navigation("Targets"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", b => + { + b.Navigation("Events"); + + b.Navigation("Jobs"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Navigation("RoleDefinitions"); + + b.Navigation("TemplateCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Navigation("Templates"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Navigation("DeploymentGroups"); + + b.Navigation("TemplateOptions"); + + b.Navigation("TemplateVersions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Navigation("Deployments"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20260707203222_ResetAndSeedDemoData.cs b/Migrations/20260707203222_ResetAndSeedDemoData.cs new file mode 100644 index 0000000..893a9cd --- /dev/null +++ b/Migrations/20260707203222_ResetAndSeedDemoData.cs @@ -0,0 +1,370 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + /// + public partial class ResetAndSeedDemoData : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.Sql(""" + DELETE FROM [DeploymentJobTargets]; + DELETE FROM [DeploymentJobSteps]; + DELETE FROM [DeploymentJobs]; + DELETE FROM [Jobs]; + DELETE FROM [Events]; + DELETE FROM [DeploymentExecutions]; + DELETE FROM [DeploymentBatches]; + DELETE FROM [TemplateVersions]; + DELETE FROM [TemplateOptions]; + DELETE FROM [Templates]; + DELETE FROM [DeploymentRuleSteps]; + DELETE FROM [DeploymentRules]; + DELETE FROM [ServiceRoleDefinitions]; + DELETE FROM [TemplateCategories]; + DELETE FROM [Options]; + DELETE FROM [OptionCategories]; + DELETE FROM [Services]; + DELETE FROM [VirtualMachines]; + DELETE FROM [EnvironmentDomains]; + DELETE FROM [Domains]; + DELETE FROM [Environments]; + """); + + migrationBuilder.InsertData( + table: "DeploymentRules", + columns: new[] { "Id", "Created", "CreatedBy", "Description", "IsActive", "Modified", "ModifiedBy", "Name" }, + values: new object[] { new Guid("60000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Validate input, wait for approval, then provision targets.", true, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Standard Provisioning" }); + + migrationBuilder.InsertData( + table: "Domains", + columns: new[] { "Id", "Created", "CreatedBy", "FQDN", "Modified", "ModifiedBy", "Name", "NetBIOS" }, + values: new object[,] + { + { new Guid("20000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "corp.contoso.com", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Central Management", "CONTOSO" }, + { new Guid("20000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "resource.contoso.com", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Resource Domain", "RESOURCE" } + }); + + migrationBuilder.InsertData( + table: "Environments", + columns: new[] { "Id", "Created", "CreatedBy", "EnvironmentType", "HostingType", "MetadataJson", "Modified", "ModifiedBy", "Name", "ProviderType", "SubscriptionId", "TenantId" }, + values: new object[,] + { + { new Guid("10000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Test", "OnPrem", "{\"location\":\"Datacenter A\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Contoso Test", null, null, null }, + { new Guid("10000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Production", "OnPrem", "{\"location\":\"Datacenter A\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Contoso Production", null, null, null }, + { new Guid("10000000-0000-0000-0000-000000000003"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Production", "M365Tenant", "{\"tenant\":\"contoso.onmicrosoft.com\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Contoso M365", "Microsoft365", null, "11111111-1111-1111-1111-111111111111" } + }); + + migrationBuilder.InsertData( + table: "Services", + columns: new[] { "Id", "Created", "CreatedBy", "Description", "IconKey", "IsCloudService", "Modified", "ModifiedBy", "Name" }, + values: new object[,] + { + { new Guid("40000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "On-premises directory and identity service.", "network", false, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Active Directory" }, + { new Guid("40000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Database platform for application workloads.", "database", false, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "SQL Server" }, + { new Guid("40000000-0000-0000-0000-000000000003"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Collaboration platform for on-premises workloads.", "sharepoint", false, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "SharePoint Server" }, + { new Guid("40000000-0000-0000-0000-000000000004"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Cloud collaboration workload in Microsoft 365.", "messages-square", true, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Microsoft Teams" } + }); + + migrationBuilder.InsertData( + table: "DeploymentRuleSteps", + columns: new[] { "Id", "Created", "CreatedBy", "DeploymentRuleId", "MetadataJson", "Modified", "ModifiedBy", "Name", "RequiresApproval", "SortOrder", "StepType" }, + values: new object[,] + { + { new Guid("60000000-0000-0000-0000-000000000101"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("60000000-0000-0000-0000-000000000001"), "{\"action\":\"validate\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Validate configuration", false, 10, "Provision" }, + { new Guid("60000000-0000-0000-0000-000000000102"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("60000000-0000-0000-0000-000000000001"), "{\"approverGroup\":\"Platform Owners\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Approve deployment", true, 20, "Approval" }, + { new Guid("60000000-0000-0000-0000-000000000103"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("60000000-0000-0000-0000-000000000001"), "{\"action\":\"deploy\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Provision workload", false, 30, "Provision" } + }); + + migrationBuilder.InsertData( + table: "EnvironmentDomains", + columns: new[] { "DomainId", "EnvironmentId", "Created", "CreatedBy", "Modified", "ModifiedBy" }, + values: new object[,] + { + { new Guid("20000000-0000-0000-0000-000000000001"), new Guid("10000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed" }, + { new Guid("20000000-0000-0000-0000-000000000001"), new Guid("10000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed" }, + { new Guid("20000000-0000-0000-0000-000000000002"), new Guid("10000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed" } + }); + + migrationBuilder.InsertData( + table: "ServiceRoleDefinitions", + columns: new[] { "Id", "Created", "CreatedBy", "Description", "Key", "Modified", "ModifiedBy", "Name", "ServiceId" }, + values: new object[,] + { + { new Guid("41000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "SharePoint farm role.", "Farm", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Farm", new Guid("40000000-0000-0000-0000-000000000003") }, + { new Guid("41000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "SharePoint web front-end role.", "WebFrontEnd", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Web Front End", new Guid("40000000-0000-0000-0000-000000000003") }, + { new Guid("41000000-0000-0000-0000-000000000003"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "SharePoint service application role.", "Application", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Application", new Guid("40000000-0000-0000-0000-000000000003") }, + { new Guid("41000000-0000-0000-0000-000000000004"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "SQL Server database role.", "Database", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Database", new Guid("40000000-0000-0000-0000-000000000002") } + }); + + migrationBuilder.InsertData( + table: "TemplateCategories", + columns: new[] { "Id", "Color", "Created", "CreatedBy", "Description", "IsActive", "Modified", "ModifiedBy", "Name", "ServiceId" }, + values: new object[,] + { + { new Guid("50000000-0000-0000-0000-000000000001"), "#2563EB", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Templates for domain controller and domain configuration.", true, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Domain Services", new Guid("40000000-0000-0000-0000-000000000001") }, + { new Guid("50000000-0000-0000-0000-000000000002"), "#16A34A", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Templates for SQL Server workloads.", true, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Database Platform", new Guid("40000000-0000-0000-0000-000000000002") }, + { new Guid("50000000-0000-0000-0000-000000000003"), "#0F766E", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Templates for SharePoint Server farms.", true, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Collaboration Farm", new Guid("40000000-0000-0000-0000-000000000003") }, + { new Guid("50000000-0000-0000-0000-000000000004"), "#7C3AED", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Templates for Teams policy configuration.", true, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Teams Policies", new Guid("40000000-0000-0000-0000-000000000004") } + }); + + migrationBuilder.InsertData( + table: "VirtualMachines", + columns: new[] { "Id", "Created", "CreatedBy", "DomainID", "ExternalId", "MetadataJson", "Modified", "ModifiedBy", "Name" }, + values: new object[,] + { + { new Guid("30000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("20000000-0000-0000-0000-000000000001"), null, "{\"role\":\"DomainController\",\"environment\":\"Test\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "CT-DC-01" }, + { new Guid("30000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("20000000-0000-0000-0000-000000000001"), null, "{\"role\":\"DomainController\",\"environment\":\"Production\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "CT-DC-02" }, + { new Guid("30000000-0000-0000-0000-000000000003"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("20000000-0000-0000-0000-000000000001"), null, "{\"role\":\"SqlServer\",\"environment\":\"Test\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "CT-SQL-01" }, + { new Guid("30000000-0000-0000-0000-000000000004"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("20000000-0000-0000-0000-000000000001"), null, "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "CT-SHP-01" }, + { new Guid("30000000-0000-0000-0000-000000000005"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("20000000-0000-0000-0000-000000000001"), null, "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "CT-SHP-02" } + }); + + migrationBuilder.InsertData( + table: "Templates", + columns: new[] { "Id", "Created", "CreatedBy", "DeploymentRuleId", "Description", "JSONData", "Modified", "ModifiedBy", "Name", "TemplateCategoryId", "Version" }, + values: new object[,] + { + { new Guid("70000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("60000000-0000-0000-0000-000000000001"), "Creates a reusable Active Directory domain baseline.", "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Contoso Active Directory Domain", new Guid("50000000-0000-0000-0000-000000000001"), "1.0.0" }, + { new Guid("70000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("60000000-0000-0000-0000-000000000001"), "Creates a SQL Server baseline for application workloads.", "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Contoso SQL Server", new Guid("50000000-0000-0000-0000-000000000002"), "1.0.0" }, + { new Guid("70000000-0000-0000-0000-000000000003"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("60000000-0000-0000-0000-000000000001"), "Creates a SharePoint Server farm baseline.", "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Contoso SharePoint Server", new Guid("50000000-0000-0000-0000-000000000003"), "1.0.0" }, + { new Guid("70000000-0000-0000-0000-000000000004"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("60000000-0000-0000-0000-000000000001"), "Creates a Microsoft Teams policy baseline.", "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Contoso Teams Policies", new Guid("50000000-0000-0000-0000-000000000004"), "1.0.0" } + }); + + migrationBuilder.InsertData( + table: "DeploymentBatches", + columns: new[] { "Id", "Created", "CreatedBy", "DeploymentRuleId", "Modified", "ModifiedBy", "Status", "TemplateId" }, + values: new object[] { new Guid("80000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("60000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Pending", new Guid("70000000-0000-0000-0000-000000000003") }); + + migrationBuilder.InsertData( + table: "TemplateVersions", + columns: new[] { "Id", "Created", "CreatedBy", "IsPublished", "JsonData", "JsonHash", "Modified", "ModifiedBy", "PublishedAt", "PublishedBy", "SchemaVersion", "TemplateId", "Version" }, + values: new object[,] + { + { new Guid("71000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", true, "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", "C05CBEF91131C75DE53B9609D9C2709D680AFC9559EE8D998318A132490F79A7", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "1.0", new Guid("70000000-0000-0000-0000-000000000001"), "1.0.0" }, + { new Guid("71000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", true, "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", "F376737E82CB6B729F7B9960CB9988897C16D90A1C454ED2F594B28EB86ECA11", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "1.0", new Guid("70000000-0000-0000-0000-000000000002"), "1.0.0" }, + { new Guid("71000000-0000-0000-0000-000000000003"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", true, "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", "FD5F0FD3C13538FAC70646972DC364DFCEAAF85BBE91B0F50FDFF9FD3A3748B4", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "1.0", new Guid("70000000-0000-0000-0000-000000000003"), "1.0.0" }, + { new Guid("71000000-0000-0000-0000-000000000004"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", true, "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", "32A902FE1A871D4CE2C877EBC5542F7562856532F09BA7F53597B21270586241", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "1.0", new Guid("70000000-0000-0000-0000-000000000004"), "1.0.0" } + }); + + migrationBuilder.InsertData( + table: "DeploymentExecutions", + columns: new[] { "DeploymentBatchId", "VirtualMachineId", "Created", "CreatedBy", "Id", "JSONData", "Modified", "ModifiedBy", "Status" }, + values: new object[,] + { + { new Guid("80000000-0000-0000-0000-000000000001"), new Guid("30000000-0000-0000-0000-000000000004"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("81000000-0000-0000-0000-000000000001"), "{\"role\":\"WebFrontEnd\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Pending" }, + { new Guid("80000000-0000-0000-0000-000000000001"), new Guid("30000000-0000-0000-0000-000000000005"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("81000000-0000-0000-0000-000000000002"), "{\"role\":\"Application\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Pending" } + }); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DeleteData( + table: "DeploymentExecutions", + keyColumns: new[] { "DeploymentBatchId", "VirtualMachineId" }, + keyValues: new object[] { new Guid("80000000-0000-0000-0000-000000000001"), new Guid("30000000-0000-0000-0000-000000000004") }); + + migrationBuilder.DeleteData( + table: "DeploymentExecutions", + keyColumns: new[] { "DeploymentBatchId", "VirtualMachineId" }, + keyValues: new object[] { new Guid("80000000-0000-0000-0000-000000000001"), new Guid("30000000-0000-0000-0000-000000000005") }); + + migrationBuilder.DeleteData( + table: "DeploymentRuleSteps", + keyColumn: "Id", + keyValue: new Guid("60000000-0000-0000-0000-000000000101")); + + migrationBuilder.DeleteData( + table: "DeploymentRuleSteps", + keyColumn: "Id", + keyValue: new Guid("60000000-0000-0000-0000-000000000102")); + + migrationBuilder.DeleteData( + table: "DeploymentRuleSteps", + keyColumn: "Id", + keyValue: new Guid("60000000-0000-0000-0000-000000000103")); + + migrationBuilder.DeleteData( + table: "EnvironmentDomains", + keyColumns: new[] { "DomainId", "EnvironmentId" }, + keyValues: new object[] { new Guid("20000000-0000-0000-0000-000000000001"), new Guid("10000000-0000-0000-0000-000000000001") }); + + migrationBuilder.DeleteData( + table: "EnvironmentDomains", + keyColumns: new[] { "DomainId", "EnvironmentId" }, + keyValues: new object[] { new Guid("20000000-0000-0000-0000-000000000001"), new Guid("10000000-0000-0000-0000-000000000002") }); + + migrationBuilder.DeleteData( + table: "EnvironmentDomains", + keyColumns: new[] { "DomainId", "EnvironmentId" }, + keyValues: new object[] { new Guid("20000000-0000-0000-0000-000000000002"), new Guid("10000000-0000-0000-0000-000000000002") }); + + migrationBuilder.DeleteData( + table: "Environments", + keyColumn: "Id", + keyValue: new Guid("10000000-0000-0000-0000-000000000003")); + + migrationBuilder.DeleteData( + table: "ServiceRoleDefinitions", + keyColumn: "Id", + keyValue: new Guid("41000000-0000-0000-0000-000000000001")); + + migrationBuilder.DeleteData( + table: "ServiceRoleDefinitions", + keyColumn: "Id", + keyValue: new Guid("41000000-0000-0000-0000-000000000002")); + + migrationBuilder.DeleteData( + table: "ServiceRoleDefinitions", + keyColumn: "Id", + keyValue: new Guid("41000000-0000-0000-0000-000000000003")); + + migrationBuilder.DeleteData( + table: "ServiceRoleDefinitions", + keyColumn: "Id", + keyValue: new Guid("41000000-0000-0000-0000-000000000004")); + + migrationBuilder.DeleteData( + table: "TemplateVersions", + keyColumn: "Id", + keyValue: new Guid("71000000-0000-0000-0000-000000000001")); + + migrationBuilder.DeleteData( + table: "TemplateVersions", + keyColumn: "Id", + keyValue: new Guid("71000000-0000-0000-0000-000000000002")); + + migrationBuilder.DeleteData( + table: "TemplateVersions", + keyColumn: "Id", + keyValue: new Guid("71000000-0000-0000-0000-000000000003")); + + migrationBuilder.DeleteData( + table: "TemplateVersions", + keyColumn: "Id", + keyValue: new Guid("71000000-0000-0000-0000-000000000004")); + + migrationBuilder.DeleteData( + table: "VirtualMachines", + keyColumn: "Id", + keyValue: new Guid("30000000-0000-0000-0000-000000000001")); + + migrationBuilder.DeleteData( + table: "VirtualMachines", + keyColumn: "Id", + keyValue: new Guid("30000000-0000-0000-0000-000000000002")); + + migrationBuilder.DeleteData( + table: "VirtualMachines", + keyColumn: "Id", + keyValue: new Guid("30000000-0000-0000-0000-000000000003")); + + migrationBuilder.DeleteData( + table: "DeploymentBatches", + keyColumn: "Id", + keyValue: new Guid("80000000-0000-0000-0000-000000000001")); + + migrationBuilder.DeleteData( + table: "Domains", + keyColumn: "Id", + keyValue: new Guid("20000000-0000-0000-0000-000000000002")); + + migrationBuilder.DeleteData( + table: "Environments", + keyColumn: "Id", + keyValue: new Guid("10000000-0000-0000-0000-000000000001")); + + migrationBuilder.DeleteData( + table: "Environments", + keyColumn: "Id", + keyValue: new Guid("10000000-0000-0000-0000-000000000002")); + + migrationBuilder.DeleteData( + table: "Templates", + keyColumn: "Id", + keyValue: new Guid("70000000-0000-0000-0000-000000000001")); + + migrationBuilder.DeleteData( + table: "Templates", + keyColumn: "Id", + keyValue: new Guid("70000000-0000-0000-0000-000000000002")); + + migrationBuilder.DeleteData( + table: "Templates", + keyColumn: "Id", + keyValue: new Guid("70000000-0000-0000-0000-000000000004")); + + migrationBuilder.DeleteData( + table: "VirtualMachines", + keyColumn: "Id", + keyValue: new Guid("30000000-0000-0000-0000-000000000004")); + + migrationBuilder.DeleteData( + table: "VirtualMachines", + keyColumn: "Id", + keyValue: new Guid("30000000-0000-0000-0000-000000000005")); + + migrationBuilder.DeleteData( + table: "Domains", + keyColumn: "Id", + keyValue: new Guid("20000000-0000-0000-0000-000000000001")); + + migrationBuilder.DeleteData( + table: "TemplateCategories", + keyColumn: "Id", + keyValue: new Guid("50000000-0000-0000-0000-000000000001")); + + migrationBuilder.DeleteData( + table: "TemplateCategories", + keyColumn: "Id", + keyValue: new Guid("50000000-0000-0000-0000-000000000002")); + + migrationBuilder.DeleteData( + table: "TemplateCategories", + keyColumn: "Id", + keyValue: new Guid("50000000-0000-0000-0000-000000000004")); + + migrationBuilder.DeleteData( + table: "Templates", + keyColumn: "Id", + keyValue: new Guid("70000000-0000-0000-0000-000000000003")); + + migrationBuilder.DeleteData( + table: "DeploymentRules", + keyColumn: "Id", + keyValue: new Guid("60000000-0000-0000-0000-000000000001")); + + migrationBuilder.DeleteData( + table: "Services", + keyColumn: "Id", + keyValue: new Guid("40000000-0000-0000-0000-000000000001")); + + migrationBuilder.DeleteData( + table: "Services", + keyColumn: "Id", + keyValue: new Guid("40000000-0000-0000-0000-000000000002")); + + migrationBuilder.DeleteData( + table: "Services", + keyColumn: "Id", + keyValue: new Guid("40000000-0000-0000-0000-000000000004")); + + migrationBuilder.DeleteData( + table: "TemplateCategories", + keyColumn: "Id", + keyValue: new Guid("50000000-0000-0000-0000-000000000003")); + + migrationBuilder.DeleteData( + table: "Services", + keyColumn: "Id", + keyValue: new Guid("40000000-0000-0000-0000-000000000003")); + } + } +} diff --git a/Migrations/20260707204104_RemoveSmaRunbooks.Designer.cs b/Migrations/20260707204104_RemoveSmaRunbooks.Designer.cs new file mode 100644 index 0000000..5b988ba --- /dev/null +++ b/Migrations/20260707204104_RemoveSmaRunbooks.Designer.cs @@ -0,0 +1,1929 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Microsoft.SelfService.Portal.Core.API.Context; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + [DbContext(typeof(DataContext))] + [Migration("20260707204104_RemoveSmaRunbooks")] + partial class RemoveSmaRunbooks + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "10.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4) + .HasDefaultValueSql("'New'"); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateId"); + + b.ToTable("DeploymentBatches", (string)null); + + b.HasData( + new + { + Id = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending", + TemplateId = new Guid("70000000-0000-0000-0000-000000000003") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("VirtualMachineId", "DeploymentGroupId"); + + b.HasIndex("DeploymentGroupId"); + + b.ToTable("DeploymentExecutions", (string)null); + + b.HasData( + new + { + VirtualMachineId = new Guid("30000000-0000-0000-0000-000000000004"), + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Id = new Guid("81000000-0000-0000-0000-000000000001"), + JSONData = "{\"role\":\"WebFrontEnd\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending" + }, + new + { + VirtualMachineId = new Guid("30000000-0000-0000-0000-000000000005"), + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Id = new Guid("81000000-0000-0000-0000-000000000002"), + JSONData = "{\"role\":\"Application\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentRules"); + + b.HasData( + new + { + Id = new Guid("60000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Validate input, wait for approval, then provision targets.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Standard Provisioning" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RequiresApproval") + .HasColumnType("bit") + .HasColumnOrder(5); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(2); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.ToTable("DeploymentRuleSteps"); + + b.HasData( + new + { + Id = new Guid("60000000-0000-0000-0000-000000000101"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"action\":\"validate\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Validate configuration", + RequiresApproval = false, + SortOrder = 10, + StepType = "Provision" + }, + new + { + Id = new Guid("60000000-0000-0000-0000-000000000102"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"approverGroup\":\"Platform Owners\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Approve deployment", + RequiresApproval = true, + SortOrder = 20, + StepType = "Approval" + }, + new + { + Id = new Guid("60000000-0000-0000-0000-000000000103"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"action\":\"deploy\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Provision workload", + RequiresApproval = false, + SortOrder = 30, + StepType = "Provision" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("FQDN") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("NetBIOS") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("Domains"); + + b.HasData( + new + { + Id = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + FQDN = "corp.contoso.com", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Central Management", + NetBIOS = "CONTOSO" + }, + new + { + Id = new Guid("20000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + FQDN = "resource.contoso.com", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Resource Domain", + NetBIOS = "RESOURCE" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.Property("EnvironmentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("DomainId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("EnvironmentId", "DomainId"); + + b.HasIndex("DomainId"); + + b.ToTable("EnvironmentDomains"); + + b.HasData( + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000001"), + DomainId = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }, + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000002"), + DomainId = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }, + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000002"), + DomainId = new Guid("20000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("EnvironmentType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("HostingType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ProviderType") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("SubscriptionId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("TenantId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.ToTable("Environments"); + + b.HasData( + new + { + Id = new Guid("10000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Test", + HostingType = "OnPrem", + MetadataJson = "{\"location\":\"Datacenter A\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Test" + }, + new + { + Id = new Guid("10000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Production", + HostingType = "OnPrem", + MetadataJson = "{\"location\":\"Datacenter A\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Production" + }, + new + { + Id = new Guid("10000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Production", + HostingType = "M365Tenant", + MetadataJson = "{\"tenant\":\"contoso.onmicrosoft.com\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso M365", + ProviderType = "Microsoft365", + TenantId = "11111111-1111-1111-1111-111111111111" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ParentCategoryName") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("showOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("OptionCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("OptionCategoryId") + .HasColumnType("uniqueidentifier"); + + b.Property("OptionType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("OptionValue") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.HasIndex("OptionCategoryId"); + + b.ToTable("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("Finished") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("LockedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("LockedUntil") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("MaxAttempts") + .HasColumnType("int") + .HasColumnOrder(5); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(11); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PayloadJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RuleSnapshotJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(12); + + b.Property("Started") + .HasColumnType("datetime2") + .HasColumnOrder(6); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Type") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentJobs", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("ApprovalComment") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("ApprovedAt") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("ApprovedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DependsOnQueueJobStepId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DependsOnDeploymentJobStepId") + .HasColumnOrder(2); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.HasIndex("DependsOnQueueJobStepId"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobSteps", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(6); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(3); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(4); + + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobTargets", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IconKey") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("IsCloudService") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Services"); + + b.HasData( + new + { + Id = new Guid("40000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "On-premises directory and identity service.", + IconKey = "network", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Active Directory" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Database platform for application workloads.", + IconKey = "database", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "SQL Server" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Collaboration platform for on-premises workloads.", + IconKey = "sharepoint", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "SharePoint Server" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Cloud collaboration workload in Microsoft 365.", + IconKey = "messages-square", + IsCloudService = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Microsoft Teams" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Key") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("ServiceRoleDefinitions"); + + b.HasData( + new + { + Id = new Guid("41000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint farm role.", + Key = "Farm", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Farm", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint web front-end role.", + Key = "WebFrontEnd", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Web Front End", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint service application role.", + Key = "Application", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Application", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SQL Server database role.", + Key = "Database", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Database", + ServiceId = new Guid("40000000-0000-0000-0000-000000000002") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Color") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("TemplateCategories"); + + b.HasData( + new + { + Id = new Guid("50000000-0000-0000-0000-000000000001"), + Color = "#2563EB", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for domain controller and domain configuration.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Domain Services", + ServiceId = new Guid("40000000-0000-0000-0000-000000000001") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000002"), + Color = "#16A34A", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for SQL Server workloads.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Database Platform", + ServiceId = new Guid("40000000-0000-0000-0000-000000000002") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000003"), + Color = "#0F766E", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for SharePoint Server farms.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Collaboration Farm", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000004"), + Color = "#7C3AED", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for Teams policy configuration.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Teams Policies", + ServiceId = new Guid("40000000-0000-0000-0000-000000000004") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(6); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("TemplateCategoryId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(5); + + b.Property("Version") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateCategoryId"); + + b.ToTable("Templates"); + + b.HasData( + new + { + Id = new Guid("70000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a reusable Active Directory domain baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Active Directory Domain", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000001"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a SQL Server baseline for application workloads.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso SQL Server", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000002"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a SharePoint Server farm baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso SharePoint Server", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000003"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a Microsoft Teams policy baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Teams Policies", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000004"), + Version = "1.0.0" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.Property("OptionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("OptionId", "TemplateId"); + + b.HasIndex("TemplateId"); + + b.ToTable("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("IsPublished") + .HasColumnType("bit") + .HasColumnOrder(6); + + b.Property("JsonData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JsonHash") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PublishedAt") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("PublishedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(8); + + b.Property("SchemaVersion") + .IsRequired() + .HasMaxLength(32) + .HasColumnType("nvarchar(32)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Version") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TemplateId") + .IsUnique() + .HasFilter("[IsPublished] = 1"); + + b.HasIndex("TemplateId", "Version") + .IsUnique(); + + b.ToTable("TemplateVersions", t => + { + t.HasCheckConstraint("CK_TemplateVersions_JsonData_IsJson", "ISJSON([JsonData]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("71000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", + JsonHash = "C05CBEF91131C75DE53B9609D9C2709D680AFC9559EE8D998318A132490F79A7", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000001"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", + JsonHash = "F376737E82CB6B729F7B9960CB9988897C16D90A1C454ED2F594B28EB86ECA11", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000002"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", + JsonHash = "FD5F0FD3C13538FAC70646972DC364DFCEAAF85BBE91B0F50FDFF9FD3A3748B4", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000003"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", + JsonHash = "32A902FE1A871D4CE2C877EBC5542F7562856532F09BA7F53597B21270586241", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000004"), + Version = "1.0.0" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DomainID") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("ExternalId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DomainID"); + + b.ToTable("VirtualMachines"); + + b.HasData( + new + { + Id = new Guid("30000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-DC-01" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Production\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-DC-02" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SqlServer\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SQL-01" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SHP-01" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000005"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SHP-02" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.SetNull); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("DeploymentGroups") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("Deployments") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", "VirtualMachine") + .WithMany("Deployments") + .HasForeignKey("VirtualMachineId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("VirtualMachine"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany("Steps") + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("EnvironmentDomains") + .HasForeignKey("DomainId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", "Environment") + .WithMany("EnvironmentDomains") + .HasForeignKey("EnvironmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Domain"); + + b.Navigation("Environment"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", "OptionCategory") + .WithMany("Options") + .HasForeignKey("OptionCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("OptionCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", "DependsOnQueueJobStep") + .WithMany() + .HasForeignKey("DependsOnQueueJobStepId") + .OnDelete(DeleteBehavior.Restrict); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Steps") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DependsOnQueueJobStep"); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Targets") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("RoleDefinitions") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("TemplateCategories") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId"); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", "TemplateCategory") + .WithMany("Templates") + .HasForeignKey("TemplateCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("TemplateCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", "Option") + .WithMany("TemplateOptions") + .HasForeignKey("OptionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateOptions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Option"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateVersions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("VirtualMachines") + .HasForeignKey("DomainID"); + + b.Navigation("Domain"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Navigation("Deployments"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Navigation("Steps"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Navigation("EnvironmentDomains"); + + b.Navigation("VirtualMachines"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Navigation("EnvironmentDomains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Navigation("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Navigation("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Navigation("Steps"); + + b.Navigation("Targets"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Navigation("RoleDefinitions"); + + b.Navigation("TemplateCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Navigation("Templates"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Navigation("DeploymentGroups"); + + b.Navigation("TemplateOptions"); + + b.Navigation("TemplateVersions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Navigation("Deployments"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20260707204104_RemoveSmaRunbooks.cs b/Migrations/20260707204104_RemoveSmaRunbooks.cs new file mode 100644 index 0000000..e0bc71a --- /dev/null +++ b/Migrations/20260707204104_RemoveSmaRunbooks.cs @@ -0,0 +1,119 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + /// + public partial class RemoveSmaRunbooks : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Events"); + + migrationBuilder.DropTable( + name: "Jobs"); + + migrationBuilder.DropTable( + name: "Runbooks"); + + migrationBuilder.DropUniqueConstraint( + name: "AK_DeploymentExecutions_Id", + table: "DeploymentExecutions"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddUniqueConstraint( + name: "AK_DeploymentExecutions_Id", + table: "DeploymentExecutions", + column: "Id"); + + migrationBuilder.CreateTable( + name: "Runbooks", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false, defaultValueSql: "NEWID()"), + Name = table.Column(type: "nvarchar(max)", nullable: false), + Description = table.Column(type: "nvarchar(max)", nullable: false), + Modified = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + ModifiedBy = table.Column(type: "nvarchar(max)", nullable: false), + Created = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + CreatedBy = table.Column(type: "nvarchar(max)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Runbooks", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "Events", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false, defaultValueSql: "NEWID()"), + RunbookId = table.Column(type: "uniqueidentifier", nullable: false), + Class = table.Column(type: "nvarchar(max)", nullable: false), + Method = table.Column(type: "nvarchar(max)", nullable: false), + RestEndpointMethod = table.Column(type: "nvarchar(max)", nullable: false), + RestEndpointOperation = table.Column(type: "nvarchar(max)", nullable: false), + Modified = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + ModifiedBy = table.Column(type: "nvarchar(max)", nullable: false), + Created = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + CreatedBy = table.Column(type: "nvarchar(max)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Events", x => x.Id); + table.ForeignKey( + name: "FK_Events_Runbooks_RunbookId", + column: x => x.RunbookId, + principalTable: "Runbooks", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "Jobs", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false, defaultValueSql: "NEWID()"), + DeploymentId = table.Column(type: "uniqueidentifier", nullable: false), + RunbookId = table.Column(type: "uniqueidentifier", nullable: false), + Modified = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + ModifiedBy = table.Column(type: "nvarchar(max)", nullable: false), + Created = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + CreatedBy = table.Column(type: "nvarchar(max)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Jobs", x => new { x.RunbookId, x.DeploymentId }); + table.ForeignKey( + name: "FK_Jobs_DeploymentExecutions_DeploymentId", + column: x => x.DeploymentId, + principalTable: "DeploymentExecutions", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_Jobs_Runbooks_RunbookId", + column: x => x.RunbookId, + principalTable: "Runbooks", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateIndex( + name: "IX_Events_RunbookId", + table: "Events", + column: "RunbookId"); + + migrationBuilder.CreateIndex( + name: "IX_Jobs_DeploymentId", + table: "Jobs", + column: "DeploymentId"); + } + } +} diff --git a/Migrations/20260707210631_AddDeploymentComposition.Designer.cs b/Migrations/20260707210631_AddDeploymentComposition.Designer.cs new file mode 100644 index 0000000..84a4f2c --- /dev/null +++ b/Migrations/20260707210631_AddDeploymentComposition.Designer.cs @@ -0,0 +1,2264 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Microsoft.SelfService.Portal.Core.API.Context; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + [DbContext(typeof(DataContext))] + [Migration("20260707210631_AddDeploymentComposition")] + partial class AddDeploymentComposition + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "10.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4) + .HasDefaultValueSql("'New'"); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateId"); + + b.ToTable("DeploymentBatches", (string)null); + + b.HasData( + new + { + Id = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending", + TemplateId = new Guid("70000000-0000-0000-0000-000000000003") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("VirtualMachineId", "DeploymentGroupId"); + + b.HasIndex("DeploymentGroupId"); + + b.ToTable("DeploymentExecutions", (string)null); + + b.HasData( + new + { + VirtualMachineId = new Guid("30000000-0000-0000-0000-000000000004"), + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Id = new Guid("81000000-0000-0000-0000-000000000001"), + JSONData = "{\"role\":\"WebFrontEnd\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending" + }, + new + { + VirtualMachineId = new Guid("30000000-0000-0000-0000-000000000005"), + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Id = new Guid("81000000-0000-0000-0000-000000000002"), + JSONData = "{\"role\":\"Application\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentParameterValueModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("DeploymentTemplateSelectionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.Property("IsOverride") + .HasColumnType("bit") + .HasColumnOrder(6); + + b.Property("IsSecretReference") + .HasColumnType("bit") + .HasColumnOrder(5); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(450)") + .HasColumnOrder(3); + + b.Property("ValueJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("DeploymentTemplateSelectionId"); + + b.HasIndex("DeploymentGroupId", "Name") + .IsUnique() + .HasFilter("[DeploymentTemplateSelectionId] IS NULL"); + + b.HasIndex("DeploymentGroupId", "DeploymentTemplateSelectionId", "Name") + .IsUnique() + .HasFilter("[DeploymentTemplateSelectionId] IS NOT NULL"); + + b.ToTable("DeploymentParameterValues", t => + { + t.HasCheckConstraint("CK_DeploymentParameterValues_ValueJson_IsJson", "ISJSON([ValueJson]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("83000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + DeploymentTemplateSelectionId = new Guid("82000000-0000-0000-0000-000000000001"), + IsOverride = true, + IsSecretReference = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "DatabasePrefix", + ValueJson = "{\"value\":\"SharePoint_Contoso_Test\"}" + }, + new + { + Id = new Guid("83000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + DeploymentTemplateSelectionId = new Guid("82000000-0000-0000-0000-000000000001"), + IsOverride = true, + IsSecretReference = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "FarmAccount", + ValueJson = "{\"provider\":\"SecretManagement\",\"vault\":\"ContosoDemo\",\"name\":\"Windows/SharePoint/FarmAccount\"}" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentRules"); + + b.HasData( + new + { + Id = new Guid("60000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Validate input, wait for approval, then provision targets.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Standard Provisioning" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RequiresApproval") + .HasColumnType("bit") + .HasColumnOrder(5); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(2); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.ToTable("DeploymentRuleSteps"); + + b.HasData( + new + { + Id = new Guid("60000000-0000-0000-0000-000000000101"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"action\":\"validate\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Validate configuration", + RequiresApproval = false, + SortOrder = 10, + StepType = "Provision" + }, + new + { + Id = new Guid("60000000-0000-0000-0000-000000000102"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"approverGroup\":\"Platform Owners\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Approve deployment", + RequiresApproval = true, + SortOrder = 20, + StepType = "Approval" + }, + new + { + Id = new Guid("60000000-0000-0000-0000-000000000103"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"action\":\"deploy\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Provision workload", + RequiresApproval = false, + SortOrder = 30, + StepType = "Provision" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTargetAssignmentModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("NodeDataJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("RoleKey") + .IsRequired() + .HasColumnType("nvarchar(450)") + .HasColumnOrder(3); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("VirtualMachineId"); + + b.HasIndex("DeploymentGroupId", "VirtualMachineId", "RoleKey") + .IsUnique(); + + b.ToTable("DeploymentTargetAssignments", t => + { + t.HasCheckConstraint("CK_DeploymentTargetAssignments_NodeDataJson_IsJson", "ISJSON([NodeDataJson]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("84000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + NodeDataJson = "{\"nodeName\":\"CT-SHP-01\"}", + RoleKey = "WebFrontEnd", + SortOrder = 10, + VirtualMachineId = new Guid("30000000-0000-0000-0000-000000000004") + }, + new + { + Id = new Guid("84000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + NodeDataJson = "{\"nodeName\":\"CT-SHP-02\"}", + RoleKey = "Application", + SortOrder = 20, + VirtualMachineId = new Guid("30000000-0000-0000-0000-000000000005") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTemplateSelectionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Alias") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("TemplateRole") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("TemplateVersionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TemplateVersionId"); + + b.HasIndex("DeploymentGroupId", "SortOrder") + .IsUnique(); + + b.ToTable("DeploymentTemplateSelections"); + + b.HasData( + new + { + Id = new Guid("82000000-0000-0000-0000-000000000001"), + Alias = "SharePoint", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + SortOrder = 10, + TemplateRole = "Service", + TemplateVersionId = new Guid("71000000-0000-0000-0000-000000000003") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("FQDN") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("NetBIOS") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("Domains"); + + b.HasData( + new + { + Id = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + FQDN = "corp.contoso.com", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Central Management", + NetBIOS = "CONTOSO" + }, + new + { + Id = new Guid("20000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + FQDN = "resource.contoso.com", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Resource Domain", + NetBIOS = "RESOURCE" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.Property("EnvironmentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("DomainId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("EnvironmentId", "DomainId"); + + b.HasIndex("DomainId"); + + b.ToTable("EnvironmentDomains"); + + b.HasData( + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000001"), + DomainId = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }, + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000002"), + DomainId = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }, + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000002"), + DomainId = new Guid("20000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("EnvironmentType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("HostingType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ProviderType") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("SubscriptionId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("TenantId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.ToTable("Environments"); + + b.HasData( + new + { + Id = new Guid("10000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Test", + HostingType = "OnPrem", + MetadataJson = "{\"location\":\"Datacenter A\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Test" + }, + new + { + Id = new Guid("10000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Production", + HostingType = "OnPrem", + MetadataJson = "{\"location\":\"Datacenter A\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Production" + }, + new + { + Id = new Guid("10000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Production", + HostingType = "M365Tenant", + MetadataJson = "{\"tenant\":\"contoso.onmicrosoft.com\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso M365", + ProviderType = "Microsoft365", + TenantId = "11111111-1111-1111-1111-111111111111" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ParentCategoryName") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("showOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("OptionCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("OptionCategoryId") + .HasColumnType("uniqueidentifier"); + + b.Property("OptionType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("OptionValue") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.HasIndex("OptionCategoryId"); + + b.ToTable("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("Finished") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("LockedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("LockedUntil") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("MaxAttempts") + .HasColumnType("int") + .HasColumnOrder(5); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(11); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PayloadJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RuleSnapshotJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(12); + + b.Property("Started") + .HasColumnType("datetime2") + .HasColumnOrder(6); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Type") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentJobs", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("ApprovalComment") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("ApprovedAt") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("ApprovedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DependsOnQueueJobStepId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DependsOnDeploymentJobStepId") + .HasColumnOrder(2); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.HasIndex("DependsOnQueueJobStepId"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobSteps", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(6); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(3); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(4); + + b.Property("VirtualMachineId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobTargets", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IconKey") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("IsCloudService") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Services"); + + b.HasData( + new + { + Id = new Guid("40000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "On-premises directory and identity service.", + IconKey = "network", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Active Directory" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Database platform for application workloads.", + IconKey = "database", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "SQL Server" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Collaboration platform for on-premises workloads.", + IconKey = "sharepoint", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "SharePoint Server" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Cloud collaboration workload in Microsoft 365.", + IconKey = "messages-square", + IsCloudService = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Microsoft Teams" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Key") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("ServiceRoleDefinitions"); + + b.HasData( + new + { + Id = new Guid("41000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint farm role.", + Key = "Farm", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Farm", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint web front-end role.", + Key = "WebFrontEnd", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Web Front End", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint service application role.", + Key = "Application", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Application", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SQL Server database role.", + Key = "Database", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Database", + ServiceId = new Guid("40000000-0000-0000-0000-000000000002") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Color") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("TemplateCategories"); + + b.HasData( + new + { + Id = new Guid("50000000-0000-0000-0000-000000000001"), + Color = "#2563EB", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for domain controller and domain configuration.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Domain Services", + ServiceId = new Guid("40000000-0000-0000-0000-000000000001") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000002"), + Color = "#16A34A", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for SQL Server workloads.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Database Platform", + ServiceId = new Guid("40000000-0000-0000-0000-000000000002") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000003"), + Color = "#0F766E", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for SharePoint Server farms.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Collaboration Farm", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000004"), + Color = "#7C3AED", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for Teams policy configuration.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Teams Policies", + ServiceId = new Guid("40000000-0000-0000-0000-000000000004") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(6); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("TemplateCategoryId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(5); + + b.Property("Version") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateCategoryId"); + + b.ToTable("Templates"); + + b.HasData( + new + { + Id = new Guid("70000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a reusable Active Directory domain baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Active Directory Domain", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000001"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a SQL Server baseline for application workloads.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso SQL Server", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000002"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a SharePoint Server farm baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso SharePoint Server", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000003"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a Microsoft Teams policy baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Teams Policies", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000004"), + Version = "1.0.0" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.Property("OptionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("OptionId", "TemplateId"); + + b.HasIndex("TemplateId"); + + b.ToTable("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("IsPublished") + .HasColumnType("bit") + .HasColumnOrder(6); + + b.Property("JsonData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JsonHash") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PublishedAt") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("PublishedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(8); + + b.Property("SchemaVersion") + .IsRequired() + .HasMaxLength(32) + .HasColumnType("nvarchar(32)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Version") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TemplateId") + .IsUnique() + .HasFilter("[IsPublished] = 1"); + + b.HasIndex("TemplateId", "Version") + .IsUnique(); + + b.ToTable("TemplateVersions", t => + { + t.HasCheckConstraint("CK_TemplateVersions_JsonData_IsJson", "ISJSON([JsonData]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("71000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", + JsonHash = "C05CBEF91131C75DE53B9609D9C2709D680AFC9559EE8D998318A132490F79A7", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000001"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", + JsonHash = "F376737E82CB6B729F7B9960CB9988897C16D90A1C454ED2F594B28EB86ECA11", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000002"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", + JsonHash = "FD5F0FD3C13538FAC70646972DC364DFCEAAF85BBE91B0F50FDFF9FD3A3748B4", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000003"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", + JsonHash = "32A902FE1A871D4CE2C877EBC5542F7562856532F09BA7F53597B21270586241", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000004"), + Version = "1.0.0" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DomainID") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("ExternalId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DomainID"); + + b.ToTable("VirtualMachines"); + + b.HasData( + new + { + Id = new Guid("30000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-DC-01" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Production\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-DC-02" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SqlServer\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SQL-01" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SHP-01" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000005"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SHP-02" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.SetNull); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("DeploymentGroups") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("Deployments") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", "VirtualMachine") + .WithMany("Deployments") + .HasForeignKey("VirtualMachineId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("VirtualMachine"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentParameterValueModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("ParameterValues") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTemplateSelectionModel", "DeploymentTemplateSelection") + .WithMany() + .HasForeignKey("DeploymentTemplateSelectionId") + .OnDelete(DeleteBehavior.NoAction); + + b.Navigation("DeploymentGroup"); + + b.Navigation("DeploymentTemplateSelection"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany("Steps") + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTargetAssignmentModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("TargetAssignments") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", "VirtualMachine") + .WithMany() + .HasForeignKey("VirtualMachineId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("VirtualMachine"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTemplateSelectionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("TemplateSelections") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", "TemplateVersion") + .WithMany() + .HasForeignKey("TemplateVersionId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("TemplateVersion"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("EnvironmentDomains") + .HasForeignKey("DomainId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", "Environment") + .WithMany("EnvironmentDomains") + .HasForeignKey("EnvironmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Domain"); + + b.Navigation("Environment"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", "OptionCategory") + .WithMany("Options") + .HasForeignKey("OptionCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("OptionCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", "DependsOnQueueJobStep") + .WithMany() + .HasForeignKey("DependsOnQueueJobStepId") + .OnDelete(DeleteBehavior.Restrict); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Steps") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DependsOnQueueJobStep"); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Targets") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("RoleDefinitions") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("TemplateCategories") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId"); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", "TemplateCategory") + .WithMany("Templates") + .HasForeignKey("TemplateCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("TemplateCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", "Option") + .WithMany("TemplateOptions") + .HasForeignKey("OptionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateOptions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Option"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateVersions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("VirtualMachines") + .HasForeignKey("DomainID"); + + b.Navigation("Domain"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Navigation("Deployments"); + + b.Navigation("ParameterValues"); + + b.Navigation("TargetAssignments"); + + b.Navigation("TemplateSelections"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Navigation("Steps"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Navigation("EnvironmentDomains"); + + b.Navigation("VirtualMachines"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Navigation("EnvironmentDomains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Navigation("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Navigation("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Navigation("Steps"); + + b.Navigation("Targets"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Navigation("RoleDefinitions"); + + b.Navigation("TemplateCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Navigation("Templates"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Navigation("DeploymentGroups"); + + b.Navigation("TemplateOptions"); + + b.Navigation("TemplateVersions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + { + b.Navigation("Deployments"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20260707210631_AddDeploymentComposition.cs b/Migrations/20260707210631_AddDeploymentComposition.cs new file mode 100644 index 0000000..ff7f3f6 --- /dev/null +++ b/Migrations/20260707210631_AddDeploymentComposition.cs @@ -0,0 +1,192 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + /// + public partial class AddDeploymentComposition : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "DeploymentTargetAssignments", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false, defaultValueSql: "NEWID()"), + DeploymentGroupId = table.Column(type: "uniqueidentifier", nullable: false), + VirtualMachineId = table.Column(type: "uniqueidentifier", nullable: false), + RoleKey = table.Column(type: "nvarchar(450)", nullable: false), + SortOrder = table.Column(type: "int", nullable: false), + NodeDataJson = table.Column(type: "nvarchar(max)", nullable: false), + Modified = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + ModifiedBy = table.Column(type: "nvarchar(max)", nullable: false), + Created = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + CreatedBy = table.Column(type: "nvarchar(max)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_DeploymentTargetAssignments", x => x.Id); + table.CheckConstraint("CK_DeploymentTargetAssignments_NodeDataJson_IsJson", "ISJSON([NodeDataJson]) = 1"); + table.ForeignKey( + name: "FK_DeploymentTargetAssignments_DeploymentBatches_DeploymentGroupId", + column: x => x.DeploymentGroupId, + principalTable: "DeploymentBatches", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_DeploymentTargetAssignments_VirtualMachines_VirtualMachineId", + column: x => x.VirtualMachineId, + principalTable: "VirtualMachines", + principalColumn: "Id", + onDelete: ReferentialAction.Restrict); + }); + + migrationBuilder.CreateTable( + name: "DeploymentTemplateSelections", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false, defaultValueSql: "NEWID()"), + DeploymentGroupId = table.Column(type: "uniqueidentifier", nullable: false), + TemplateVersionId = table.Column(type: "uniqueidentifier", nullable: false), + TemplateRole = table.Column(type: "nvarchar(max)", nullable: false), + SortOrder = table.Column(type: "int", nullable: false), + Alias = table.Column(type: "nvarchar(max)", nullable: true), + Modified = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + ModifiedBy = table.Column(type: "nvarchar(max)", nullable: false), + Created = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + CreatedBy = table.Column(type: "nvarchar(max)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_DeploymentTemplateSelections", x => x.Id); + table.ForeignKey( + name: "FK_DeploymentTemplateSelections_DeploymentBatches_DeploymentGroupId", + column: x => x.DeploymentGroupId, + principalTable: "DeploymentBatches", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_DeploymentTemplateSelections_TemplateVersions_TemplateVersionId", + column: x => x.TemplateVersionId, + principalTable: "TemplateVersions", + principalColumn: "Id", + onDelete: ReferentialAction.Restrict); + }); + + migrationBuilder.CreateTable( + name: "DeploymentParameterValues", + columns: table => new + { + Id = table.Column(type: "uniqueidentifier", nullable: false, defaultValueSql: "NEWID()"), + DeploymentGroupId = table.Column(type: "uniqueidentifier", nullable: false), + DeploymentTemplateSelectionId = table.Column(type: "uniqueidentifier", nullable: true), + Name = table.Column(type: "nvarchar(450)", nullable: false), + ValueJson = table.Column(type: "nvarchar(max)", nullable: false), + IsSecretReference = table.Column(type: "bit", nullable: false), + IsOverride = table.Column(type: "bit", nullable: false), + Modified = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + ModifiedBy = table.Column(type: "nvarchar(max)", nullable: false), + Created = table.Column(type: "datetime2", nullable: false, defaultValueSql: "GETDATE()"), + CreatedBy = table.Column(type: "nvarchar(max)", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_DeploymentParameterValues", x => x.Id); + table.CheckConstraint("CK_DeploymentParameterValues_ValueJson_IsJson", "ISJSON([ValueJson]) = 1"); + table.ForeignKey( + name: "FK_DeploymentParameterValues_DeploymentBatches_DeploymentGroupId", + column: x => x.DeploymentGroupId, + principalTable: "DeploymentBatches", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_DeploymentParameterValues_DeploymentTemplateSelections_DeploymentTemplateSelectionId", + column: x => x.DeploymentTemplateSelectionId, + principalTable: "DeploymentTemplateSelections", + principalColumn: "Id"); + }); + + migrationBuilder.InsertData( + table: "DeploymentTargetAssignments", + columns: new[] { "Id", "Created", "CreatedBy", "DeploymentGroupId", "Modified", "ModifiedBy", "NodeDataJson", "RoleKey", "SortOrder", "VirtualMachineId" }, + values: new object[,] + { + { new Guid("84000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("80000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "{\"nodeName\":\"CT-SHP-01\"}", "WebFrontEnd", 10, new Guid("30000000-0000-0000-0000-000000000004") }, + { new Guid("84000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("80000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "{\"nodeName\":\"CT-SHP-02\"}", "Application", 20, new Guid("30000000-0000-0000-0000-000000000005") } + }); + + migrationBuilder.InsertData( + table: "DeploymentTemplateSelections", + columns: new[] { "Id", "Alias", "Created", "CreatedBy", "DeploymentGroupId", "Modified", "ModifiedBy", "SortOrder", "TemplateRole", "TemplateVersionId" }, + values: new object[] { new Guid("82000000-0000-0000-0000-000000000001"), "SharePoint", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("80000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", 10, "Service", new Guid("71000000-0000-0000-0000-000000000003") }); + + migrationBuilder.InsertData( + table: "DeploymentParameterValues", + columns: new[] { "Id", "Created", "CreatedBy", "DeploymentGroupId", "DeploymentTemplateSelectionId", "IsOverride", "IsSecretReference", "Modified", "ModifiedBy", "Name", "ValueJson" }, + values: new object[,] + { + { new Guid("83000000-0000-0000-0000-000000000001"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("80000000-0000-0000-0000-000000000001"), new Guid("82000000-0000-0000-0000-000000000001"), true, false, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "DatabasePrefix", "{\"value\":\"SharePoint_Contoso_Test\"}" }, + { new Guid("83000000-0000-0000-0000-000000000002"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", new Guid("80000000-0000-0000-0000-000000000001"), new Guid("82000000-0000-0000-0000-000000000001"), true, true, new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "FarmAccount", "{\"provider\":\"SecretManagement\",\"vault\":\"ContosoDemo\",\"name\":\"Windows/SharePoint/FarmAccount\"}" } + }); + + migrationBuilder.CreateIndex( + name: "IX_DeploymentParameterValues_DeploymentGroupId_DeploymentTemplateSelectionId_Name", + table: "DeploymentParameterValues", + columns: new[] { "DeploymentGroupId", "DeploymentTemplateSelectionId", "Name" }, + unique: true, + filter: "[DeploymentTemplateSelectionId] IS NOT NULL"); + + migrationBuilder.CreateIndex( + name: "IX_DeploymentParameterValues_DeploymentGroupId_Name", + table: "DeploymentParameterValues", + columns: new[] { "DeploymentGroupId", "Name" }, + unique: true, + filter: "[DeploymentTemplateSelectionId] IS NULL"); + + migrationBuilder.CreateIndex( + name: "IX_DeploymentParameterValues_DeploymentTemplateSelectionId", + table: "DeploymentParameterValues", + column: "DeploymentTemplateSelectionId"); + + migrationBuilder.CreateIndex( + name: "IX_DeploymentTargetAssignments_DeploymentGroupId_VirtualMachineId_RoleKey", + table: "DeploymentTargetAssignments", + columns: new[] { "DeploymentGroupId", "VirtualMachineId", "RoleKey" }, + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_DeploymentTargetAssignments_VirtualMachineId", + table: "DeploymentTargetAssignments", + column: "VirtualMachineId"); + + migrationBuilder.CreateIndex( + name: "IX_DeploymentTemplateSelections_DeploymentGroupId_SortOrder", + table: "DeploymentTemplateSelections", + columns: new[] { "DeploymentGroupId", "SortOrder" }, + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_DeploymentTemplateSelections_TemplateVersionId", + table: "DeploymentTemplateSelections", + column: "TemplateVersionId"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "DeploymentParameterValues"); + + migrationBuilder.DropTable( + name: "DeploymentTargetAssignments"); + + migrationBuilder.DropTable( + name: "DeploymentTemplateSelections"); + } + } +} diff --git a/Migrations/20260707211957_AddGenericTargetModel.Designer.cs b/Migrations/20260707211957_AddGenericTargetModel.Designer.cs new file mode 100644 index 0000000..282957b --- /dev/null +++ b/Migrations/20260707211957_AddGenericTargetModel.Designer.cs @@ -0,0 +1,2312 @@ +// +using System; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Metadata; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Microsoft.SelfService.Portal.Core.API.Context; + +#nullable disable + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + [DbContext(typeof(DataContext))] + [Migration("20260707211957_AddGenericTargetModel")] + partial class AddGenericTargetModel + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "10.0.8") + .HasAnnotation("Relational:MaxIdentifierLength", 128); + + SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .ValueGeneratedOnAdd() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4) + .HasDefaultValueSql("'New'"); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateId"); + + b.ToTable("DeploymentBatches", (string)null); + + b.HasData( + new + { + Id = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending", + TemplateId = new Guid("70000000-0000-0000-0000-000000000003") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.Property("TargetId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(2); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("TargetId", "DeploymentGroupId"); + + b.HasIndex("DeploymentGroupId"); + + b.ToTable("DeploymentExecutions", (string)null); + + b.HasData( + new + { + TargetId = new Guid("30000000-0000-0000-0000-000000000004"), + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Id = new Guid("81000000-0000-0000-0000-000000000001"), + JSONData = "{\"role\":\"WebFrontEnd\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending" + }, + new + { + TargetId = new Guid("30000000-0000-0000-0000-000000000005"), + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Id = new Guid("81000000-0000-0000-0000-000000000002"), + JSONData = "{\"role\":\"Application\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentParameterValueModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("DeploymentTemplateSelectionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.Property("IsOverride") + .HasColumnType("bit") + .HasColumnOrder(6); + + b.Property("IsSecretReference") + .HasColumnType("bit") + .HasColumnOrder(5); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(450)") + .HasColumnOrder(3); + + b.Property("ValueJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("DeploymentTemplateSelectionId"); + + b.HasIndex("DeploymentGroupId", "Name") + .IsUnique() + .HasFilter("[DeploymentTemplateSelectionId] IS NULL"); + + b.HasIndex("DeploymentGroupId", "DeploymentTemplateSelectionId", "Name") + .IsUnique() + .HasFilter("[DeploymentTemplateSelectionId] IS NOT NULL"); + + b.ToTable("DeploymentParameterValues", t => + { + t.HasCheckConstraint("CK_DeploymentParameterValues_ValueJson_IsJson", "ISJSON([ValueJson]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("83000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + DeploymentTemplateSelectionId = new Guid("82000000-0000-0000-0000-000000000001"), + IsOverride = true, + IsSecretReference = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "DatabasePrefix", + ValueJson = "{\"value\":\"SharePoint_Contoso_Test\"}" + }, + new + { + Id = new Guid("83000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + DeploymentTemplateSelectionId = new Guid("82000000-0000-0000-0000-000000000001"), + IsOverride = true, + IsSecretReference = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "FarmAccount", + ValueJson = "{\"provider\":\"SecretManagement\",\"vault\":\"ContosoDemo\",\"name\":\"Windows/SharePoint/FarmAccount\"}" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentRules"); + + b.HasData( + new + { + Id = new Guid("60000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Validate input, wait for approval, then provision targets.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Standard Provisioning" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RequiresApproval") + .HasColumnType("bit") + .HasColumnOrder(5); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(2); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.ToTable("DeploymentRuleSteps"); + + b.HasData( + new + { + Id = new Guid("60000000-0000-0000-0000-000000000101"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"action\":\"validate\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Validate configuration", + RequiresApproval = false, + SortOrder = 10, + StepType = "Provision" + }, + new + { + Id = new Guid("60000000-0000-0000-0000-000000000102"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"approverGroup\":\"Platform Owners\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Approve deployment", + RequiresApproval = true, + SortOrder = 20, + StepType = "Approval" + }, + new + { + Id = new Guid("60000000-0000-0000-0000-000000000103"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"action\":\"deploy\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Provision workload", + RequiresApproval = false, + SortOrder = 30, + StepType = "Provision" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTargetAssignmentModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("NodeDataJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("RoleKey") + .IsRequired() + .HasColumnType("nvarchar(450)") + .HasColumnOrder(3); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("TargetId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TargetId"); + + b.HasIndex("DeploymentGroupId", "TargetId", "RoleKey") + .IsUnique(); + + b.ToTable("DeploymentTargetAssignments", t => + { + t.HasCheckConstraint("CK_DeploymentTargetAssignments_NodeDataJson_IsJson", "ISJSON([NodeDataJson]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("84000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + NodeDataJson = "{\"nodeName\":\"CT-SHP-01\"}", + RoleKey = "WebFrontEnd", + SortOrder = 10, + TargetId = new Guid("30000000-0000-0000-0000-000000000004") + }, + new + { + Id = new Guid("84000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + NodeDataJson = "{\"nodeName\":\"CT-SHP-02\"}", + RoleKey = "Application", + SortOrder = 20, + TargetId = new Guid("30000000-0000-0000-0000-000000000005") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTemplateSelectionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Alias") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("TemplateRole") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("TemplateVersionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TemplateVersionId"); + + b.HasIndex("DeploymentGroupId", "SortOrder") + .IsUnique(); + + b.ToTable("DeploymentTemplateSelections"); + + b.HasData( + new + { + Id = new Guid("82000000-0000-0000-0000-000000000001"), + Alias = "SharePoint", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + SortOrder = 10, + TemplateRole = "Service", + TemplateVersionId = new Guid("71000000-0000-0000-0000-000000000003") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("FQDN") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("NetBIOS") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("Domains"); + + b.HasData( + new + { + Id = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + FQDN = "corp.contoso.com", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Central Management", + NetBIOS = "CONTOSO" + }, + new + { + Id = new Guid("20000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + FQDN = "resource.contoso.com", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Resource Domain", + NetBIOS = "RESOURCE" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.Property("EnvironmentId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("DomainId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.HasKey("EnvironmentId", "DomainId"); + + b.HasIndex("DomainId"); + + b.ToTable("EnvironmentDomains"); + + b.HasData( + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000001"), + DomainId = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }, + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000002"), + DomainId = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }, + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000002"), + DomainId = new Guid("20000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("EnvironmentType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("HostingType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ProviderType") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("SubscriptionId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("TenantId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.ToTable("Environments"); + + b.HasData( + new + { + Id = new Guid("10000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Test", + HostingType = "OnPrem", + MetadataJson = "{\"location\":\"Datacenter A\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Test" + }, + new + { + Id = new Guid("10000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Production", + HostingType = "OnPrem", + MetadataJson = "{\"location\":\"Datacenter A\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Production" + }, + new + { + Id = new Guid("10000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Production", + HostingType = "M365Tenant", + MetadataJson = "{\"tenant\":\"contoso.onmicrosoft.com\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso M365", + ProviderType = "Microsoft365", + TenantId = "11111111-1111-1111-1111-111111111111" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("ParentCategoryName") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("showOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.ToTable("OptionCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("OptionCategoryId") + .HasColumnType("uniqueidentifier"); + + b.Property("OptionType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("OptionValue") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.HasIndex("OptionCategoryId"); + + b.ToTable("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("Finished") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("LockedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("LockedUntil") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("MaxAttempts") + .HasColumnType("int") + .HasColumnOrder(5); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(11); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PayloadJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("RuleSnapshotJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(12); + + b.Property("Started") + .HasColumnType("datetime2") + .HasColumnOrder(6); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Type") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("DeploymentJobs", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("ApprovalComment") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(10); + + b.Property("ApprovedAt") + .HasColumnType("datetime2") + .HasColumnOrder(8); + + b.Property("ApprovedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(9); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DependsOnQueueJobStepId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DependsOnDeploymentJobStepId") + .HasColumnOrder(2); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(3); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("StepType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.HasKey("Id"); + + b.HasIndex("DependsOnQueueJobStepId"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobSteps", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Attempts") + .HasColumnType("int") + .HasColumnOrder(6); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentBatchId") + .HasColumnOrder(3); + + b.Property("ErrorMessage") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(7); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("QueueJobId") + .HasColumnType("uniqueidentifier") + .HasColumnName("DeploymentJobId") + .HasColumnOrder(1); + + b.Property("Status") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("TargetId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("QueueJobId"); + + b.ToTable("DeploymentJobTargets", (string)null); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("IconKey") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("IsCloudService") + .HasColumnType("bit") + .HasColumnOrder(3); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.ToTable("Services"); + + b.HasData( + new + { + Id = new Guid("40000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "On-premises directory and identity service.", + IconKey = "network", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Active Directory" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Database platform for application workloads.", + IconKey = "database", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "SQL Server" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Collaboration platform for on-premises workloads.", + IconKey = "sharepoint", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "SharePoint Server" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Cloud collaboration workload in Microsoft 365.", + IconKey = "messages-square", + IsCloudService = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Microsoft Teams" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Key") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("ServiceRoleDefinitions"); + + b.HasData( + new + { + Id = new Guid("41000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint farm role.", + Key = "Farm", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Farm", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint web front-end role.", + Key = "WebFrontEnd", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Web Front End", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint service application role.", + Key = "Application", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Application", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SQL Server database role.", + Key = "Database", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Database", + ServiceId = new Guid("40000000-0000-0000-0000-000000000002") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TargetModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DomainID") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("ExternalId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("ProviderType") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(4); + + b.Property("TargetType") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.HasIndex("DomainID"); + + b.ToTable("Targets"); + + b.HasData( + new + { + Id = new Guid("30000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-DC-01", + ProviderType = "OnPrem", + TargetType = "VirtualMachine" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Production\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-DC-02", + ProviderType = "OnPrem", + TargetType = "VirtualMachine" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SqlServer\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SQL-01", + ProviderType = "OnPrem", + TargetType = "VirtualMachine" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SHP-01", + ProviderType = "OnPrem", + TargetType = "VirtualMachine" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000005"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SHP-02", + ProviderType = "OnPrem", + TargetType = "VirtualMachine" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000006"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + ExternalId = "11111111-1111-1111-1111-111111111111", + MetadataJson = "{\"environment\":\"Production\",\"workload\":\"M365\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "contoso.onmicrosoft.com", + ProviderType = "Microsoft365", + TargetType = "Tenant" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000007"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + ExternalId = "Teams.StandardUsers", + MetadataJson = "{\"workload\":\"Teams\",\"scope\":\"StandardUsers\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Teams - Standard Users", + ProviderType = "Microsoft365", + TargetType = "PolicyScope" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Color") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Description") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("IsActive") + .HasColumnType("bit") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("ServiceId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.HasKey("Id"); + + b.HasIndex("ServiceId"); + + b.ToTable("TemplateCategories"); + + b.HasData( + new + { + Id = new Guid("50000000-0000-0000-0000-000000000001"), + Color = "#2563EB", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for domain controller and domain configuration.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Domain Services", + ServiceId = new Guid("40000000-0000-0000-0000-000000000001") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000002"), + Color = "#16A34A", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for SQL Server workloads.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Database Platform", + ServiceId = new Guid("40000000-0000-0000-0000-000000000002") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000003"), + Color = "#0F766E", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for SharePoint Server farms.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Collaboration Farm", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000004"), + Color = "#7C3AED", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for Teams policy configuration.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Teams Policies", + ServiceId = new Guid("40000000-0000-0000-0000-000000000004") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(6); + + b.Property("Description") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JSONData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(1); + + b.Property("TemplateCategoryId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(5); + + b.Property("Version") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("DeploymentRuleId"); + + b.HasIndex("TemplateCategoryId"); + + b.ToTable("Templates"); + + b.HasData( + new + { + Id = new Guid("70000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a reusable Active Directory domain baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Active Directory Domain", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000001"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a SQL Server baseline for application workloads.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso SQL Server", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000002"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a SharePoint Server farm baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso SharePoint Server", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000003"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a Microsoft Teams policy baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Teams Policies", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000004"), + Version = "1.0.0" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.Property("OptionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0); + + b.Property("Created") + .HasColumnType("datetime2") + .HasColumnOrder(52); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("Modified") + .HasColumnType("datetime2") + .HasColumnOrder(50); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Value") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.HasKey("OptionId", "TemplateId"); + + b.HasIndex("TemplateId"); + + b.ToTable("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("IsPublished") + .HasColumnType("bit") + .HasColumnOrder(6); + + b.Property("JsonData") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("JsonHash") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(4); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("PublishedAt") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("PublishedBy") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(8); + + b.Property("SchemaVersion") + .IsRequired() + .HasMaxLength(32) + .HasColumnType("nvarchar(32)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Version") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TemplateId") + .IsUnique() + .HasFilter("[IsPublished] = 1"); + + b.HasIndex("TemplateId", "Version") + .IsUnique(); + + b.ToTable("TemplateVersions", t => + { + t.HasCheckConstraint("CK_TemplateVersions_JsonData_IsJson", "ISJSON([JsonData]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("71000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", + JsonHash = "C05CBEF91131C75DE53B9609D9C2709D680AFC9559EE8D998318A132490F79A7", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000001"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", + JsonHash = "F376737E82CB6B729F7B9960CB9988897C16D90A1C454ED2F594B28EB86ECA11", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000002"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", + JsonHash = "FD5F0FD3C13538FAC70646972DC364DFCEAAF85BBE91B0F50FDFF9FD3A3748B4", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000003"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", + JsonHash = "32A902FE1A871D4CE2C877EBC5542F7562856532F09BA7F53597B21270586241", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000004"), + Version = "1.0.0" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.SetNull); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("DeploymentGroups") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("Deployments") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TargetModel", "Target") + .WithMany("Deployments") + .HasForeignKey("TargetId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("Target"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentParameterValueModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("ParameterValues") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTemplateSelectionModel", "DeploymentTemplateSelection") + .WithMany() + .HasForeignKey("DeploymentTemplateSelectionId") + .OnDelete(DeleteBehavior.NoAction); + + b.Navigation("DeploymentGroup"); + + b.Navigation("DeploymentTemplateSelection"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany("Steps") + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTargetAssignmentModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("TargetAssignments") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TargetModel", "Target") + .WithMany() + .HasForeignKey("TargetId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("Target"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTemplateSelectionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("TemplateSelections") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", "TemplateVersion") + .WithMany() + .HasForeignKey("TemplateVersionId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("TemplateVersion"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("EnvironmentDomains") + .HasForeignKey("DomainId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", "Environment") + .WithMany("EnvironmentDomains") + .HasForeignKey("EnvironmentId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Domain"); + + b.Navigation("Environment"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", "OptionCategory") + .WithMany("Options") + .HasForeignKey("OptionCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("OptionCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobStepModel", "DependsOnQueueJobStep") + .WithMany() + .HasForeignKey("DependsOnQueueJobStepId") + .OnDelete(DeleteBehavior.Restrict); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Steps") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DependsOnQueueJobStep"); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobTargetModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", "QueueJob") + .WithMany("Targets") + .HasForeignKey("QueueJobId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("QueueJob"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("RoleDefinitions") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TargetModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("Targets") + .HasForeignKey("DomainID"); + + b.Navigation("Domain"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") + .WithMany("TemplateCategories") + .HasForeignKey("ServiceId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Service"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId"); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", "TemplateCategory") + .WithMany("Templates") + .HasForeignKey("TemplateCategoryId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("DeploymentRule"); + + b.Navigation("TemplateCategory"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", "Option") + .WithMany("TemplateOptions") + .HasForeignKey("OptionId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateOptions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Option"); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateVersions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Template"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => + { + b.Navigation("Deployments"); + + b.Navigation("ParameterValues"); + + b.Navigation("TargetAssignments"); + + b.Navigation("TemplateSelections"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => + { + b.Navigation("Steps"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => + { + b.Navigation("EnvironmentDomains"); + + b.Navigation("Targets"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => + { + b.Navigation("EnvironmentDomains"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => + { + b.Navigation("Options"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => + { + b.Navigation("TemplateOptions"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.QueueJobModel", b => + { + b.Navigation("Steps"); + + b.Navigation("Targets"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => + { + b.Navigation("RoleDefinitions"); + + b.Navigation("TemplateCategories"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TargetModel", b => + { + b.Navigation("Deployments"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => + { + b.Navigation("Templates"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => + { + b.Navigation("DeploymentGroups"); + + b.Navigation("TemplateOptions"); + + b.Navigation("TemplateVersions"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20260707211957_AddGenericTargetModel.cs b/Migrations/20260707211957_AddGenericTargetModel.cs new file mode 100644 index 0000000..dea4dd9 --- /dev/null +++ b/Migrations/20260707211957_AddGenericTargetModel.cs @@ -0,0 +1,220 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional + +namespace Microsoft.SelfService.Portal.Core.API.Migrations +{ + /// + public partial class AddGenericTargetModel : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_DeploymentExecutions_VirtualMachines_VirtualMachineId", + table: "DeploymentExecutions"); + + migrationBuilder.DropForeignKey( + name: "FK_DeploymentTargetAssignments_VirtualMachines_VirtualMachineId", + table: "DeploymentTargetAssignments"); + + migrationBuilder.DropForeignKey( + name: "FK_VirtualMachines_Domains_DomainID", + table: "VirtualMachines"); + + migrationBuilder.DropPrimaryKey( + name: "PK_VirtualMachines", + table: "VirtualMachines"); + + migrationBuilder.RenameTable( + name: "VirtualMachines", + newName: "Targets"); + + migrationBuilder.RenameColumn( + name: "VirtualMachineId", + table: "DeploymentTargetAssignments", + newName: "TargetId"); + + migrationBuilder.RenameIndex( + name: "IX_DeploymentTargetAssignments_VirtualMachineId", + table: "DeploymentTargetAssignments", + newName: "IX_DeploymentTargetAssignments_TargetId"); + + migrationBuilder.RenameIndex( + name: "IX_DeploymentTargetAssignments_DeploymentGroupId_VirtualMachineId_RoleKey", + table: "DeploymentTargetAssignments", + newName: "IX_DeploymentTargetAssignments_DeploymentGroupId_TargetId_RoleKey"); + + migrationBuilder.RenameColumn( + name: "VirtualMachineId", + table: "DeploymentJobTargets", + newName: "TargetId"); + + migrationBuilder.RenameColumn( + name: "VirtualMachineId", + table: "DeploymentExecutions", + newName: "TargetId"); + + migrationBuilder.RenameIndex( + name: "IX_VirtualMachines_DomainID", + table: "Targets", + newName: "IX_Targets_DomainID"); + + migrationBuilder.AddColumn( + name: "ProviderType", + table: "Targets", + type: "nvarchar(64)", + maxLength: 64, + nullable: false, + defaultValue: "OnPrem"); + + migrationBuilder.AddColumn( + name: "TargetType", + table: "Targets", + type: "nvarchar(64)", + maxLength: 64, + nullable: false, + defaultValue: "VirtualMachine"); + + migrationBuilder.AddPrimaryKey( + name: "PK_Targets", + table: "Targets", + column: "Id"); + + migrationBuilder.InsertData( + table: "Targets", + columns: new[] { "Id", "Created", "CreatedBy", "DomainID", "ExternalId", "MetadataJson", "Modified", "ModifiedBy", "Name", "ProviderType", "TargetType" }, + values: new object[,] + { + { new Guid("30000000-0000-0000-0000-000000000006"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", null, "11111111-1111-1111-1111-111111111111", "{\"environment\":\"Production\",\"workload\":\"M365\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "contoso.onmicrosoft.com", "Microsoft365", "Tenant" }, + { new Guid("30000000-0000-0000-0000-000000000007"), new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", null, "Teams.StandardUsers", "{\"workload\":\"Teams\",\"scope\":\"StandardUsers\"}", new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), "DemoSeed", "Teams - Standard Users", "Microsoft365", "PolicyScope" } + }); + + migrationBuilder.AddForeignKey( + name: "FK_Targets_Domains_DomainID", + table: "Targets", + column: "DomainID", + principalTable: "Domains", + principalColumn: "Id"); + + migrationBuilder.AddForeignKey( + name: "FK_DeploymentExecutions_Targets_TargetId", + table: "DeploymentExecutions", + column: "TargetId", + principalTable: "Targets", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + + migrationBuilder.AddForeignKey( + name: "FK_DeploymentTargetAssignments_Targets_TargetId", + table: "DeploymentTargetAssignments", + column: "TargetId", + principalTable: "Targets", + principalColumn: "Id", + onDelete: ReferentialAction.Restrict); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_DeploymentExecutions_Targets_TargetId", + table: "DeploymentExecutions"); + + migrationBuilder.DropForeignKey( + name: "FK_DeploymentTargetAssignments_Targets_TargetId", + table: "DeploymentTargetAssignments"); + + migrationBuilder.DropForeignKey( + name: "FK_Targets_Domains_DomainID", + table: "Targets"); + + migrationBuilder.DeleteData( + table: "Targets", + keyColumn: "Id", + keyValue: new Guid("30000000-0000-0000-0000-000000000006")); + + migrationBuilder.DeleteData( + table: "Targets", + keyColumn: "Id", + keyValue: new Guid("30000000-0000-0000-0000-000000000007")); + + migrationBuilder.DropPrimaryKey( + name: "PK_Targets", + table: "Targets"); + + migrationBuilder.DropColumn( + name: "ProviderType", + table: "Targets"); + + migrationBuilder.DropColumn( + name: "TargetType", + table: "Targets"); + + migrationBuilder.RenameTable( + name: "Targets", + newName: "VirtualMachines"); + + migrationBuilder.RenameColumn( + name: "TargetId", + table: "DeploymentTargetAssignments", + newName: "VirtualMachineId"); + + migrationBuilder.RenameIndex( + name: "IX_DeploymentTargetAssignments_TargetId", + table: "DeploymentTargetAssignments", + newName: "IX_DeploymentTargetAssignments_VirtualMachineId"); + + migrationBuilder.RenameIndex( + name: "IX_DeploymentTargetAssignments_DeploymentGroupId_TargetId_RoleKey", + table: "DeploymentTargetAssignments", + newName: "IX_DeploymentTargetAssignments_DeploymentGroupId_VirtualMachineId_RoleKey"); + + migrationBuilder.RenameColumn( + name: "TargetId", + table: "DeploymentJobTargets", + newName: "VirtualMachineId"); + + migrationBuilder.RenameColumn( + name: "TargetId", + table: "DeploymentExecutions", + newName: "VirtualMachineId"); + + migrationBuilder.RenameIndex( + name: "IX_Targets_DomainID", + table: "VirtualMachines", + newName: "IX_VirtualMachines_DomainID"); + + migrationBuilder.AddPrimaryKey( + name: "PK_VirtualMachines", + table: "VirtualMachines", + column: "Id"); + + migrationBuilder.AddForeignKey( + name: "FK_VirtualMachines_Domains_DomainID", + table: "VirtualMachines", + column: "DomainID", + principalTable: "Domains", + principalColumn: "Id"); + + migrationBuilder.AddForeignKey( + name: "FK_DeploymentExecutions_VirtualMachines_VirtualMachineId", + table: "DeploymentExecutions", + column: "VirtualMachineId", + principalTable: "VirtualMachines", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + + migrationBuilder.AddForeignKey( + name: "FK_DeploymentTargetAssignments_VirtualMachines_VirtualMachineId", + table: "DeploymentTargetAssignments", + column: "VirtualMachineId", + principalTable: "VirtualMachines", + principalColumn: "Id", + onDelete: ReferentialAction.Restrict); + } + } +} diff --git a/Migrations/DataContextModelSnapshot.cs b/Migrations/DataContextModelSnapshot.cs index 3021327..5aa041f 100644 --- a/Migrations/DataContextModelSnapshot.cs +++ b/Migrations/DataContextModelSnapshot.cs @@ -41,6 +41,10 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations .HasColumnType("nvarchar(max)") .HasColumnOrder(53); + b.Property("DeploymentRuleId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(3); + b.Property("Modified") .ValueGeneratedOnAdd() .HasColumnType("datetime2") @@ -65,14 +69,29 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.HasKey("Id"); + b.HasIndex("DeploymentRuleId"); + b.HasIndex("TemplateId"); b.ToTable("DeploymentBatches", (string)null); + + b.HasData( + new + { + Id = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending", + TemplateId = new Guid("70000000-0000-0000-0000-000000000003") + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => { - b.Property("VirtualMachineId") + b.Property("TargetId") .HasColumnType("uniqueidentifier") .HasColumnOrder(3); @@ -119,11 +138,141 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations .HasColumnType("nvarchar(max)") .HasColumnOrder(4); - b.HasKey("VirtualMachineId", "DeploymentGroupId"); + b.HasKey("TargetId", "DeploymentGroupId"); b.HasIndex("DeploymentGroupId"); b.ToTable("DeploymentExecutions", (string)null); + + b.HasData( + new + { + TargetId = new Guid("30000000-0000-0000-0000-000000000004"), + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Id = new Guid("81000000-0000-0000-0000-000000000001"), + JSONData = "{\"role\":\"WebFrontEnd\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending" + }, + new + { + TargetId = new Guid("30000000-0000-0000-0000-000000000005"), + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Id = new Guid("81000000-0000-0000-0000-000000000002"), + JSONData = "{\"role\":\"Application\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Status = "Pending" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentParameterValueModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("DeploymentTemplateSelectionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.Property("IsOverride") + .HasColumnType("bit") + .HasColumnOrder(6); + + b.Property("IsSecretReference") + .HasColumnType("bit") + .HasColumnOrder(5); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(450)") + .HasColumnOrder(3); + + b.Property("ValueJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(4); + + b.HasKey("Id"); + + b.HasIndex("DeploymentTemplateSelectionId"); + + b.HasIndex("DeploymentGroupId", "Name") + .IsUnique() + .HasFilter("[DeploymentTemplateSelectionId] IS NULL"); + + b.HasIndex("DeploymentGroupId", "DeploymentTemplateSelectionId", "Name") + .IsUnique() + .HasFilter("[DeploymentTemplateSelectionId] IS NOT NULL"); + + b.ToTable("DeploymentParameterValues", t => + { + t.HasCheckConstraint("CK_DeploymentParameterValues_ValueJson_IsJson", "ISJSON([ValueJson]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("83000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + DeploymentTemplateSelectionId = new Guid("82000000-0000-0000-0000-000000000001"), + IsOverride = true, + IsSecretReference = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "DatabasePrefix", + ValueJson = "{\"value\":\"SharePoint_Contoso_Test\"}" + }, + new + { + Id = new Guid("83000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + DeploymentTemplateSelectionId = new Guid("82000000-0000-0000-0000-000000000001"), + IsOverride = true, + IsSecretReference = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "FarmAccount", + ValueJson = "{\"provider\":\"SecretManagement\",\"vault\":\"ContosoDemo\",\"name\":\"Windows/SharePoint/FarmAccount\"}" + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => @@ -172,6 +321,19 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.HasKey("Id"); b.ToTable("DeploymentRules"); + + b.HasData( + new + { + Id = new Guid("60000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Validate input, wait for approval, then provision targets.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Standard Provisioning" + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => @@ -235,6 +397,219 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.HasIndex("DeploymentRuleId"); b.ToTable("DeploymentRuleSteps"); + + b.HasData( + new + { + Id = new Guid("60000000-0000-0000-0000-000000000101"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"action\":\"validate\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Validate configuration", + RequiresApproval = false, + SortOrder = 10, + StepType = "Provision" + }, + new + { + Id = new Guid("60000000-0000-0000-0000-000000000102"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"approverGroup\":\"Platform Owners\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Approve deployment", + RequiresApproval = true, + SortOrder = 20, + StepType = "Approval" + }, + new + { + Id = new Guid("60000000-0000-0000-0000-000000000103"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"action\":\"deploy\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Provision workload", + RequiresApproval = false, + SortOrder = 30, + StepType = "Provision" + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTargetAssignmentModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("NodeDataJson") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("RoleKey") + .IsRequired() + .HasColumnType("nvarchar(450)") + .HasColumnOrder(3); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("TargetId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TargetId"); + + b.HasIndex("DeploymentGroupId", "TargetId", "RoleKey") + .IsUnique(); + + b.ToTable("DeploymentTargetAssignments", t => + { + t.HasCheckConstraint("CK_DeploymentTargetAssignments_NodeDataJson_IsJson", "ISJSON([NodeDataJson]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("84000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + NodeDataJson = "{\"nodeName\":\"CT-SHP-01\"}", + RoleKey = "WebFrontEnd", + SortOrder = 10, + TargetId = new Guid("30000000-0000-0000-0000-000000000004") + }, + new + { + Id = new Guid("84000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + NodeDataJson = "{\"nodeName\":\"CT-SHP-02\"}", + RoleKey = "Application", + SortOrder = 20, + TargetId = new Guid("30000000-0000-0000-0000-000000000005") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTemplateSelectionModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Alias") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DeploymentGroupId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("SortOrder") + .HasColumnType("int") + .HasColumnOrder(4); + + b.Property("TemplateRole") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + + b.Property("TemplateVersionId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + + b.HasKey("Id"); + + b.HasIndex("TemplateVersionId"); + + b.HasIndex("DeploymentGroupId", "SortOrder") + .IsUnique(); + + b.ToTable("DeploymentTemplateSelections"); + + b.HasData( + new + { + Id = new Guid("82000000-0000-0000-0000-000000000001"), + Alias = "SharePoint", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentGroupId = new Guid("80000000-0000-0000-0000-000000000001"), + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + SortOrder = 10, + TemplateRole = "Service", + TemplateVersionId = new Guid("71000000-0000-0000-0000-000000000003") + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", b => @@ -285,6 +660,30 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.HasKey("Id"); b.ToTable("Domains"); + + b.HasData( + new + { + Id = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + FQDN = "corp.contoso.com", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Central Management", + NetBIOS = "CONTOSO" + }, + new + { + Id = new Guid("20000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + FQDN = "resource.contoso.com", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Resource Domain", + NetBIOS = "RESOURCE" + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => @@ -320,6 +719,35 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.HasIndex("DomainId"); b.ToTable("EnvironmentDomains"); + + b.HasData( + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000001"), + DomainId = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }, + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000002"), + DomainId = new Guid("20000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }, + new + { + EnvironmentId = new Guid("10000000-0000-0000-0000-000000000002"), + DomainId = new Guid("20000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed" + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => @@ -346,9 +774,14 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations .HasColumnType("nvarchar(max)") .HasColumnOrder(2); + b.Property("HostingType") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(3); + b.Property("MetadataJson") .HasColumnType("nvarchar(max)") - .HasColumnOrder(6); + .HasColumnOrder(7); b.Property("Modified") .ValueGeneratedOnAdd() @@ -368,125 +801,59 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.Property("ProviderType") .HasColumnType("nvarchar(max)") - .HasColumnOrder(3); + .HasColumnOrder(4); b.Property("SubscriptionId") .HasColumnType("nvarchar(max)") - .HasColumnOrder(5); + .HasColumnOrder(6); b.Property("TenantId") .HasColumnType("nvarchar(max)") - .HasColumnOrder(4); + .HasColumnOrder(5); b.HasKey("Id"); b.ToTable("Environments"); - }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EventModel", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier") - .HasColumnOrder(0) - .HasDefaultValueSql("NEWID()"); - - b.Property("Class") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(2); - - b.Property("Created") - .ValueGeneratedOnAdd() - .HasColumnType("datetime2") - .HasColumnOrder(52) - .HasDefaultValueSql("GETDATE()"); - - b.Property("CreatedBy") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(53); - - b.Property("Method") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(3); - - b.Property("Modified") - .ValueGeneratedOnAdd() - .HasColumnType("datetime2") - .HasColumnOrder(50) - .HasDefaultValueSql("GETDATE()"); - - b.Property("ModifiedBy") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(51); - - b.Property("RestEndpointMethod") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(4); - - b.Property("RestEndpointOperation") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(5); - - b.Property("RunbookId") - .HasColumnType("uniqueidentifier") - .HasColumnOrder(1); - - b.HasKey("Id"); - - b.HasIndex("RunbookId"); - - b.ToTable("Events"); - }); - - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.JobModel", b => - { - b.Property("RunbookId") - .HasColumnType("uniqueidentifier") - .HasColumnOrder(2); - - b.Property("DeploymentId") - .HasColumnType("uniqueidentifier") - .HasColumnOrder(1); - - b.Property("Created") - .ValueGeneratedOnAdd() - .HasColumnType("datetime2") - .HasColumnOrder(52) - .HasDefaultValueSql("GETDATE()"); - - b.Property("CreatedBy") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(53); - - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier") - .HasColumnOrder(0) - .HasDefaultValueSql("NEWID()"); - - b.Property("Modified") - .ValueGeneratedOnAdd() - .HasColumnType("datetime2") - .HasColumnOrder(50) - .HasDefaultValueSql("GETDATE()"); - - b.Property("ModifiedBy") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(51); - - b.HasKey("RunbookId", "DeploymentId"); - - b.HasIndex("DeploymentId"); - - b.ToTable("Jobs"); + b.HasData( + new + { + Id = new Guid("10000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Test", + HostingType = "OnPrem", + MetadataJson = "{\"location\":\"Datacenter A\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Test" + }, + new + { + Id = new Guid("10000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Production", + HostingType = "OnPrem", + MetadataJson = "{\"location\":\"Datacenter A\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Production" + }, + new + { + Id = new Guid("10000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + EnvironmentType = "Production", + HostingType = "M365Tenant", + MetadataJson = "{\"tenant\":\"contoso.onmicrosoft.com\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso M365", + ProviderType = "Microsoft365", + TenantId = "11111111-1111-1111-1111-111111111111" + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", b => @@ -816,14 +1183,14 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations .HasColumnType("nvarchar(max)") .HasColumnOrder(5); + b.Property("TargetId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(2); + b.Property("TemplateId") .HasColumnType("uniqueidentifier") .HasColumnOrder(4); - b.Property("VirtualMachineId") - .HasColumnType("uniqueidentifier") - .HasColumnOrder(2); - b.HasKey("Id"); b.HasIndex("QueueJobId"); @@ -831,51 +1198,6 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.ToTable("DeploymentJobTargets", (string)null); }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", b => - { - b.Property("Id") - .ValueGeneratedOnAdd() - .HasColumnType("uniqueidentifier") - .HasColumnOrder(0) - .HasDefaultValueSql("NEWID()"); - - b.Property("Created") - .ValueGeneratedOnAdd() - .HasColumnType("datetime2") - .HasColumnOrder(52) - .HasDefaultValueSql("GETDATE()"); - - b.Property("CreatedBy") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(53); - - b.Property("Description") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(2); - - b.Property("Modified") - .ValueGeneratedOnAdd() - .HasColumnType("datetime2") - .HasColumnOrder(50) - .HasDefaultValueSql("GETDATE()"); - - b.Property("ModifiedBy") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(51); - - b.Property("Name") - .IsRequired() - .HasColumnType("nvarchar(max)") - .HasColumnOrder(1); - - b.HasKey("Id"); - - b.ToTable("Runbooks"); - }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => { b.Property("Id") @@ -927,6 +1249,56 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.HasKey("Id"); b.ToTable("Services"); + + b.HasData( + new + { + Id = new Guid("40000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "On-premises directory and identity service.", + IconKey = "network", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Active Directory" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Database platform for application workloads.", + IconKey = "database", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "SQL Server" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Collaboration platform for on-premises workloads.", + IconKey = "sharepoint", + IsCloudService = false, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "SharePoint Server" + }, + new + { + Id = new Guid("40000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Cloud collaboration workload in Microsoft 365.", + IconKey = "messages-square", + IsCloudService = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Microsoft Teams" + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceRoleDefinitionModel", b => @@ -982,6 +1354,215 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.HasIndex("ServiceId"); b.ToTable("ServiceRoleDefinitions"); + + b.HasData( + new + { + Id = new Guid("41000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint farm role.", + Key = "Farm", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Farm", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint web front-end role.", + Key = "WebFrontEnd", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Web Front End", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SharePoint service application role.", + Key = "Application", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Application", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("41000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "SQL Server database role.", + Key = "Database", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Database", + ServiceId = new Guid("40000000-0000-0000-0000-000000000002") + }); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TargetModel", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("uniqueidentifier") + .HasColumnOrder(0) + .HasDefaultValueSql("NEWID()"); + + b.Property("Created") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(52) + .HasDefaultValueSql("GETDATE()"); + + b.Property("CreatedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(53); + + b.Property("DomainID") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("ExternalId") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(5); + + b.Property("MetadataJson") + .HasColumnType("nvarchar(max)") + .HasColumnOrder(6); + + b.Property("Modified") + .ValueGeneratedOnAdd() + .HasColumnType("datetime2") + .HasColumnOrder(50) + .HasDefaultValueSql("GETDATE()"); + + b.Property("ModifiedBy") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(51); + + b.Property("Name") + .IsRequired() + .HasColumnType("nvarchar(max)") + .HasColumnOrder(2); + + b.Property("ProviderType") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(4); + + b.Property("TargetType") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") + .HasColumnOrder(3); + + b.HasKey("Id"); + + b.HasIndex("DomainID"); + + b.ToTable("Targets"); + + b.HasData( + new + { + Id = new Guid("30000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-DC-01", + ProviderType = "OnPrem", + TargetType = "VirtualMachine" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"DomainController\",\"environment\":\"Production\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-DC-02", + ProviderType = "OnPrem", + TargetType = "VirtualMachine" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SqlServer\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SQL-01", + ProviderType = "OnPrem", + TargetType = "VirtualMachine" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SHP-01", + ProviderType = "OnPrem", + TargetType = "VirtualMachine" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000005"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DomainID = new Guid("20000000-0000-0000-0000-000000000001"), + MetadataJson = "{\"role\":\"SharePoint\",\"environment\":\"Test\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "CT-SHP-02", + ProviderType = "OnPrem", + TargetType = "VirtualMachine" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000006"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + ExternalId = "11111111-1111-1111-1111-111111111111", + MetadataJson = "{\"environment\":\"Production\",\"workload\":\"M365\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "contoso.onmicrosoft.com", + ProviderType = "Microsoft365", + TargetType = "Tenant" + }, + new + { + Id = new Guid("30000000-0000-0000-0000-000000000007"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + ExternalId = "Teams.StandardUsers", + MetadataJson = "{\"workload\":\"Teams\",\"scope\":\"StandardUsers\"}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Teams - Standard Users", + ProviderType = "Microsoft365", + TargetType = "PolicyScope" + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => @@ -1040,6 +1621,60 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.HasIndex("ServiceId"); b.ToTable("TemplateCategories"); + + b.HasData( + new + { + Id = new Guid("50000000-0000-0000-0000-000000000001"), + Color = "#2563EB", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for domain controller and domain configuration.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Domain Services", + ServiceId = new Guid("40000000-0000-0000-0000-000000000001") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000002"), + Color = "#16A34A", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for SQL Server workloads.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Database Platform", + ServiceId = new Guid("40000000-0000-0000-0000-000000000002") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000003"), + Color = "#0F766E", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for SharePoint Server farms.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Collaboration Farm", + ServiceId = new Guid("40000000-0000-0000-0000-000000000003") + }, + new + { + Id = new Guid("50000000-0000-0000-0000-000000000004"), + Color = "#7C3AED", + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + Description = "Templates for Teams policy configuration.", + IsActive = true, + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Teams Policies", + ServiceId = new Guid("40000000-0000-0000-0000-000000000004") + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", b => @@ -1107,6 +1742,64 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.HasIndex("TemplateCategoryId"); b.ToTable("Templates"); + + b.HasData( + new + { + Id = new Guid("70000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a reusable Active Directory domain baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Active Directory Domain", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000001"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a SQL Server baseline for application workloads.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso SQL Server", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000002"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a SharePoint Server farm baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso SharePoint Server", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000003"), + Version = "1.0.0" + }, + new + { + Id = new Guid("70000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + DeploymentRuleId = new Guid("60000000-0000-0000-0000-000000000001"), + Description = "Creates a Microsoft Teams policy baseline.", + JSONData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + Name = "Contoso Teams Policies", + TemplateCategoryId = new Guid("50000000-0000-0000-0000-000000000004"), + Version = "1.0.0" + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateOptionModel", b => @@ -1149,7 +1842,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.ToTable("TemplateOptions"); }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => { b.Property("Id") .ValueGeneratedOnAdd() @@ -1168,16 +1861,19 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations .HasColumnType("nvarchar(max)") .HasColumnOrder(53); - b.Property("DomainID") - .HasColumnType("uniqueidentifier") - .HasColumnOrder(1); + b.Property("IsPublished") + .HasColumnType("bit") + .HasColumnOrder(6); - b.Property("ExternalId") + b.Property("JsonData") + .IsRequired() .HasColumnType("nvarchar(max)") .HasColumnOrder(3); - b.Property("MetadataJson") - .HasColumnType("nvarchar(max)") + b.Property("JsonHash") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") .HasColumnOrder(4); b.Property("Modified") @@ -1191,26 +1887,126 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations .HasColumnType("nvarchar(max)") .HasColumnOrder(51); - b.Property("Name") - .IsRequired() + b.Property("PublishedAt") + .HasColumnType("datetime2") + .HasColumnOrder(7); + + b.Property("PublishedBy") .HasColumnType("nvarchar(max)") + .HasColumnOrder(8); + + b.Property("SchemaVersion") + .IsRequired() + .HasMaxLength(32) + .HasColumnType("nvarchar(32)") + .HasColumnOrder(5); + + b.Property("TemplateId") + .HasColumnType("uniqueidentifier") + .HasColumnOrder(1); + + b.Property("Version") + .IsRequired() + .HasMaxLength(64) + .HasColumnType("nvarchar(64)") .HasColumnOrder(2); b.HasKey("Id"); - b.HasIndex("DomainID"); + b.HasIndex("TemplateId") + .IsUnique() + .HasFilter("[IsPublished] = 1"); - b.ToTable("VirtualMachines"); + b.HasIndex("TemplateId", "Version") + .IsUnique(); + + b.ToTable("TemplateVersions", t => + { + t.HasCheckConstraint("CK_TemplateVersions_JsonData_IsJson", "ISJSON([JsonData]) = 1"); + }); + + b.HasData( + new + { + Id = new Guid("71000000-0000-0000-0000-000000000001"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DomainName\": { \"type\": \"string\", \"defaultValue\": \"corp.contoso.com\" },\n \"NetBIOSName\": { \"type\": \"string\", \"defaultValue\": \"CONTOSO\" }\n },\n \"variables\": {\n \"DefaultSiteName\": \"[concat(parameters('DomainName'), '-DefaultSite')]\"\n },\n \"resources\": {\n \"AllNodes\": [\n { \"NodeName\": \"*\", \"PSDscAllowPlainTextPassword\": true }\n ],\n \"NonNodeData\": {\n \"Services\": {\n \"ActiveDirectory\": {\n \"DomainName\": \"[parameters('DomainName')]\",\n \"NetBIOSName\": \"[parameters('NetBIOSName')]\"\n }\n }\n }\n }\n}", + JsonHash = "C05CBEF91131C75DE53B9609D9C2709D680AFC9559EE8D998318A132490F79A7", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000001"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000002"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"InstanceName\": { \"type\": \"string\", \"defaultValue\": \"MSSQLSERVER\" },\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"Contoso\" }\n },\n \"variables\": {\n \"ConfigDatabase\": \"[concat(parameters('DatabasePrefix'), '_Config')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SqlServer\": {\n \"InstanceName\": \"[parameters('InstanceName')]\",\n \"ConfigDatabase\": \"[variables('ConfigDatabase')]\"\n }\n }\n }\n }\n}", + JsonHash = "F376737E82CB6B729F7B9960CB9988897C16D90A1C454ED2F594B28EB86ECA11", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000002"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000003"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"DatabasePrefix\": { \"type\": \"string\", \"defaultValue\": \"SharePoint_Contoso_Test\" },\n \"FarmAccount\": { \"type\": \"credential\", \"metadata\": { \"description\": \"Farm account resolved by the credential provider.\" } }\n },\n \"variables\": {\n \"ConfigDbName\": \"[concat(parameters('DatabasePrefix'), '_Farm_Config')]\",\n \"AdminContentDbName\": \"[concat(parameters('DatabasePrefix'), '_AdminContent')]\"\n },\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"SharePoint\": {\n \"Farm\": {\n \"ConfigDatabase\": \"[variables('ConfigDbName')]\",\n \"AdminContentDatabase\": \"[variables('AdminContentDbName')]\",\n \"ManagedAccounts\": {\n \"FarmAccount\": \"[parameters('FarmAccount')]\"\n }\n }\n }\n }\n }\n }\n}", + JsonHash = "FD5F0FD3C13538FAC70646972DC364DFCEAAF85BBE91B0F50FDFF9FD3A3748B4", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000003"), + Version = "1.0.0" + }, + new + { + Id = new Guid("71000000-0000-0000-0000-000000000004"), + Created = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + CreatedBy = "DemoSeed", + IsPublished = true, + JsonData = "{\n \"schemaVersion\": \"1.0\",\n \"templateType\": \"Service\",\n \"parameters\": {\n \"CallingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Calling\" },\n \"MeetingPolicyName\": { \"type\": \"string\", \"defaultValue\": \"Contoso-Standard-Meetings\" }\n },\n \"variables\": {},\n \"resources\": {\n \"NonNodeData\": {\n \"Services\": {\n \"Teams\": {\n \"CallingPolicy\": \"[parameters('CallingPolicyName')]\",\n \"MeetingPolicy\": \"[parameters('MeetingPolicyName')]\"\n }\n }\n }\n }\n}", + JsonHash = "32A902FE1A871D4CE2C877EBC5542F7562856532F09BA7F53597B21270586241", + Modified = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + ModifiedBy = "DemoSeed", + PublishedAt = new DateTime(2026, 7, 7, 0, 0, 0, 0, DateTimeKind.Utc), + PublishedBy = "DemoSeed", + SchemaVersion = "1.0", + TemplateId = new Guid("70000000-0000-0000-0000-000000000004"), + Version = "1.0.0" + }); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", "DeploymentRule") + .WithMany() + .HasForeignKey("DeploymentRuleId") + .OnDelete(DeleteBehavior.SetNull); + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") .WithMany("DeploymentGroups") .HasForeignKey("TemplateId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); + b.Navigation("DeploymentRule"); + b.Navigation("Template"); }); @@ -1222,15 +2018,33 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations .OnDelete(DeleteBehavior.Cascade) .IsRequired(); - b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", "VirtualMachine") + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TargetModel", "Target") .WithMany("Deployments") - .HasForeignKey("VirtualMachineId") + .HasForeignKey("TargetId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("DeploymentGroup"); - b.Navigation("VirtualMachine"); + b.Navigation("Target"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentParameterValueModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("ParameterValues") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTemplateSelectionModel", "DeploymentTemplateSelection") + .WithMany() + .HasForeignKey("DeploymentTemplateSelectionId") + .OnDelete(DeleteBehavior.NoAction); + + b.Navigation("DeploymentGroup"); + + b.Navigation("DeploymentTemplateSelection"); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleStepModel", b => @@ -1244,6 +2058,44 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.Navigation("DeploymentRule"); }); + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTargetAssignmentModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("TargetAssignments") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TargetModel", "Target") + .WithMany() + .HasForeignKey("TargetId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("Target"); + }); + + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentTemplateSelectionModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", "DeploymentGroup") + .WithMany("TemplateSelections") + .HasForeignKey("DeploymentGroupId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", "TemplateVersion") + .WithMany() + .HasForeignKey("TemplateVersionId") + .OnDelete(DeleteBehavior.Restrict) + .IsRequired(); + + b.Navigation("DeploymentGroup"); + + b.Navigation("TemplateVersion"); + }); + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentDomainsModel", b => { b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") @@ -1263,37 +2115,6 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.Navigation("Environment"); }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EventModel", b => - { - b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", "Runbook") - .WithMany("Events") - .HasForeignKey("RunbookId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Runbook"); - }); - - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.JobModel", b => - { - b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", "Deployment") - .WithMany("Jobs") - .HasForeignKey("DeploymentId") - .HasPrincipalKey("Id") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", "Runbook") - .WithMany("Jobs") - .HasForeignKey("RunbookId") - .OnDelete(DeleteBehavior.Cascade) - .IsRequired(); - - b.Navigation("Deployment"); - - b.Navigation("Runbook"); - }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.OptionModel", b => { b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.OptionCategoryModel", "OptionCategory") @@ -1345,6 +2166,15 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.Navigation("Service"); }); + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TargetModel", b => + { + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") + .WithMany("Targets") + .HasForeignKey("DomainID"); + + b.Navigation("Domain"); + }); + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => { b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", "Service") @@ -1392,23 +2222,26 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.Navigation("Template"); }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateVersionModel", b => { - b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.DomainModel", "Domain") - .WithMany("VirtualMachines") - .HasForeignKey("DomainID"); + b.HasOne("Microsoft.SelfService.Portal.Core.API.Models.TemplateModel", "Template") + .WithMany("TemplateVersions") + .HasForeignKey("TemplateId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); - b.Navigation("Domain"); + b.Navigation("Template"); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentGroupModel", b => { b.Navigation("Deployments"); - }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentModel", b => - { - b.Navigation("Jobs"); + b.Navigation("ParameterValues"); + + b.Navigation("TargetAssignments"); + + b.Navigation("TemplateSelections"); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.DeploymentRuleModel", b => @@ -1420,7 +2253,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations { b.Navigation("EnvironmentDomains"); - b.Navigation("VirtualMachines"); + b.Navigation("Targets"); }); modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.EnvironmentModel", b => @@ -1445,13 +2278,6 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.Navigation("Targets"); }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.RunbookModel", b => - { - b.Navigation("Events"); - - b.Navigation("Jobs"); - }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.ServiceModel", b => { b.Navigation("RoleDefinitions"); @@ -1459,6 +2285,11 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.Navigation("TemplateCategories"); }); + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TargetModel", b => + { + b.Navigation("Deployments"); + }); + modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.TemplateCategoryModel", b => { b.Navigation("Templates"); @@ -1469,11 +2300,8 @@ namespace Microsoft.SelfService.Portal.Core.API.Migrations b.Navigation("DeploymentGroups"); b.Navigation("TemplateOptions"); - }); - modelBuilder.Entity("Microsoft.SelfService.Portal.Core.API.Models.VirtualMachineModel", b => - { - b.Navigation("Deployments"); + b.Navigation("TemplateVersions"); }); #pragma warning restore 612, 618 } diff --git a/Models/BaseJunctionModel.cs b/Models/BaseJunctionModel.cs index 03e827f..a9437d8 100644 --- a/Models/BaseJunctionModel.cs +++ b/Models/BaseJunctionModel.cs @@ -19,3 +19,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public string CreatedBy { get; set; } = "System"; } } + diff --git a/Models/BaseModel.cs b/Models/BaseModel.cs index 4c261d5..6f2b8e0 100644 --- a/Models/BaseModel.cs +++ b/Models/BaseModel.cs @@ -36,3 +36,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public string CreatedBy { get; set; } = "System"; } } + diff --git a/Models/DeploymentBatchModel.cs b/Models/DeploymentBatchModel.cs index 815473e..5ccca09 100644 --- a/Models/DeploymentBatchModel.cs +++ b/Models/DeploymentBatchModel.cs @@ -7,13 +7,21 @@ namespace Microsoft.SelfService.Portal.Core.API.Models { [Column(Order = 2)] public Guid TemplateId { get; set; } + + [Column(Order = 3)] + public Guid? DeploymentRuleId { get; set; } [Column(Order = 4)] [DefaultValueSql("'New'")] public string Status { get; set; } public TemplateModel Template { get; set; } + public DeploymentRuleModel? DeploymentRule { get; set; } public ICollection Deployments { get; set; } + public ICollection TemplateSelections { get; set; } = new List(); + public ICollection ParameterValues { get; set; } = new List(); + public ICollection TargetAssignments { get; set; } = new List(); } } + diff --git a/Models/DeploymentJobModel.cs b/Models/DeploymentJobModel.cs index 04192db..76adaa2 100644 --- a/Models/DeploymentJobModel.cs +++ b/Models/DeploymentJobModel.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Models { @@ -44,3 +44,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public ICollection Steps { get; set; } = new List(); } } + diff --git a/Models/DeploymentJobStepModel.cs b/Models/DeploymentJobStepModel.cs index f2997b0..7a698c0 100644 --- a/Models/DeploymentJobStepModel.cs +++ b/Models/DeploymentJobStepModel.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Models { @@ -38,3 +38,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public QueueJobStepModel? DependsOnQueueJobStep { get; set; } } } + diff --git a/Models/DeploymentJobTargetModel.cs b/Models/DeploymentJobTargetModel.cs index 07d3638..6ab0443 100644 --- a/Models/DeploymentJobTargetModel.cs +++ b/Models/DeploymentJobTargetModel.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Models { @@ -8,7 +8,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public Guid QueueJobId { get; set; } [Column(Order = 2)] - public Guid VirtualMachineId { get; set; } + public Guid TargetId { get; set; } [Column(Order = 3)] public Guid DeploymentGroupId { get; set; } @@ -28,3 +28,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public QueueJobModel QueueJob { get; set; } } } + diff --git a/Models/DeploymentParameterValueModel.cs b/Models/DeploymentParameterValueModel.cs new file mode 100644 index 0000000..4ddedf4 --- /dev/null +++ b/Models/DeploymentParameterValueModel.cs @@ -0,0 +1,29 @@ +using System.ComponentModel.DataAnnotations.Schema; + +namespace Microsoft.SelfService.Portal.Core.API.Models +{ + public class DeploymentParameterValueModel : BaseModel + { + [Column(Order = 1)] + public Guid DeploymentGroupId { get; set; } + + [Column(Order = 2)] + public Guid? DeploymentTemplateSelectionId { get; set; } + + [Column(Order = 3)] + public string Name { get; set; } = string.Empty; + + [Column(Order = 4)] + public string ValueJson { get; set; } = "{}"; + + [Column(Order = 5)] + public bool IsSecretReference { get; set; } + + [Column(Order = 6)] + public bool IsOverride { get; set; } = true; + + public DeploymentGroupModel DeploymentGroup { get; set; } = null!; + public DeploymentTemplateSelectionModel? DeploymentTemplateSelection { get; set; } + } +} + diff --git a/Models/DeploymentRuleModel.cs b/Models/DeploymentRuleModel.cs index 23b0f33..daae4d3 100644 --- a/Models/DeploymentRuleModel.cs +++ b/Models/DeploymentRuleModel.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Models { @@ -16,3 +16,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public ICollection Steps { get; set; } = new List(); } } + diff --git a/Models/DeploymentRuleStepModel.cs b/Models/DeploymentRuleStepModel.cs index 0416bf7..594230b 100644 --- a/Models/DeploymentRuleStepModel.cs +++ b/Models/DeploymentRuleStepModel.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Models { @@ -25,3 +25,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public DeploymentRuleModel DeploymentRule { get; set; } } } + diff --git a/Models/DeploymentTargetAssignmentModel.cs b/Models/DeploymentTargetAssignmentModel.cs new file mode 100644 index 0000000..d6ce027 --- /dev/null +++ b/Models/DeploymentTargetAssignmentModel.cs @@ -0,0 +1,26 @@ +using System.ComponentModel.DataAnnotations.Schema; + +namespace Microsoft.SelfService.Portal.Core.API.Models +{ + public class DeploymentTargetAssignmentModel : BaseModel + { + [Column(Order = 1)] + public Guid DeploymentGroupId { get; set; } + + [Column(Order = 2)] + public Guid TargetId { get; set; } + + [Column(Order = 3)] + public string RoleKey { get; set; } = "Node"; + + [Column(Order = 4)] + public int SortOrder { get; set; } + + [Column(Order = 5)] + public string NodeDataJson { get; set; } = "{}"; + + public DeploymentGroupModel DeploymentGroup { get; set; } = null!; + public TargetModel Target { get; set; } = null!; + } +} + diff --git a/Models/DeploymentTargetModel.cs b/Models/DeploymentTargetModel.cs index 2d3ef88..451e80c 100644 --- a/Models/DeploymentTargetModel.cs +++ b/Models/DeploymentTargetModel.cs @@ -7,16 +7,15 @@ namespace Microsoft.SelfService.Portal.Core.API.Models [Column(Order = 2)] public Guid DeploymentGroupId { get; set; } [Column(Order = 3)] - public Guid VirtualMachineId { get; set; } + public Guid TargetId { get; set; } [Column(Order = 4)] public string Status { get; set; } [Column(Order = 5)] public string JSONData { get; set; } public DeploymentGroupModel DeploymentGroup { get; set; } - public VirtualMachineModel VirtualMachine { get; set; } + public TargetModel Target { get; set; } - public ICollection Jobs { get; set; } - } } + diff --git a/Models/DeploymentTemplateSelectionModel.cs b/Models/DeploymentTemplateSelectionModel.cs new file mode 100644 index 0000000..0f41ce8 --- /dev/null +++ b/Models/DeploymentTemplateSelectionModel.cs @@ -0,0 +1,26 @@ +using System.ComponentModel.DataAnnotations.Schema; + +namespace Microsoft.SelfService.Portal.Core.API.Models +{ + public class DeploymentTemplateSelectionModel : BaseModel + { + [Column(Order = 1)] + public Guid DeploymentGroupId { get; set; } + + [Column(Order = 2)] + public Guid TemplateVersionId { get; set; } + + [Column(Order = 3)] + public string TemplateRole { get; set; } = "Service"; + + [Column(Order = 4)] + public int SortOrder { get; set; } + + [Column(Order = 5)] + public string? Alias { get; set; } + + public DeploymentGroupModel DeploymentGroup { get; set; } = null!; + public TemplateVersionModel TemplateVersion { get; set; } = null!; + } +} + diff --git a/Models/DomainModel.cs b/Models/DomainModel.cs index 7332051..7858cd1 100644 --- a/Models/DomainModel.cs +++ b/Models/DomainModel.cs @@ -14,7 +14,8 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public ICollection EnvironmentDomains { get; set; } - public ICollection VirtualMachines { get; set; } + public ICollection Targets { get; set; } } } + diff --git a/Models/EnvironmentDomainsModel.cs b/Models/EnvironmentDomainsModel.cs index f1c2a05..91c59c4 100644 --- a/Models/EnvironmentDomainsModel.cs +++ b/Models/EnvironmentDomainsModel.cs @@ -12,4 +12,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public Guid DomainId { get; set; } public DomainModel Domain { get; set; } } -} \ No newline at end of file +} diff --git a/Models/EnvironmentTypes.cs b/Models/EnvironmentHostingTypes.cs similarity index 62% rename from Models/EnvironmentTypes.cs rename to Models/EnvironmentHostingTypes.cs index b35884f..690c568 100644 --- a/Models/EnvironmentTypes.cs +++ b/Models/EnvironmentHostingTypes.cs @@ -1,9 +1,10 @@ -namespace Microsoft.SelfService.Portal.Core.API.Models +namespace Microsoft.SelfService.Portal.Core.API.Models { - public static class EnvironmentTypes + public static class EnvironmentHostingTypes { public const string OnPrem = "OnPrem"; public const string AzureTenant = "AzureTenant"; public const string M365Tenant = "M365Tenant"; } } + diff --git a/Models/EnvironmentModel.cs b/Models/EnvironmentModel.cs index a5a7bb7..6662280 100644 --- a/Models/EnvironmentModel.cs +++ b/Models/EnvironmentModel.cs @@ -8,20 +8,24 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public string Name { get; set; } [Column(Order = 2)] - public string EnvironmentType { get; set; } = EnvironmentTypes.OnPrem; + public string EnvironmentType { get; set; } = EnvironmentStages.Test; [Column(Order = 3)] - public string? ProviderType { get; set; } + public string HostingType { get; set; } = EnvironmentHostingTypes.OnPrem; [Column(Order = 4)] - public string? TenantId { get; set; } + public string? ProviderType { get; set; } [Column(Order = 5)] - public string? SubscriptionId { get; set; } + public string? TenantId { get; set; } [Column(Order = 6)] + public string? SubscriptionId { get; set; } + + [Column(Order = 7)] public string? MetadataJson { get; set; } public ICollection EnvironmentDomains { get; set; } } } + diff --git a/Models/EnvironmentStages.cs b/Models/EnvironmentStages.cs new file mode 100644 index 0000000..c349ffb --- /dev/null +++ b/Models/EnvironmentStages.cs @@ -0,0 +1,11 @@ +namespace Microsoft.SelfService.Portal.Core.API.Models +{ + public static class EnvironmentStages + { + public const string Development = "Development"; + public const string Test = "Test"; + public const string QA = "QA"; + public const string Production = "Production"; + } +} + diff --git a/Models/EventModel.cs b/Models/EventModel.cs deleted file mode 100644 index bb5504c..0000000 --- a/Models/EventModel.cs +++ /dev/null @@ -1,21 +0,0 @@ -using System.ComponentModel.DataAnnotations.Schema; - -namespace Microsoft.SelfService.Portal.Core.API.Models -{ - public class EventModel : BaseModel - { - [Column(Order = 1)] - public Guid RunbookId { get; set; } - - [Column(Order = 2)] - public string Class { get; set; } - [Column(Order = 3)] - public string Method { get; set; } - [Column(Order = 4)] - public string RestEndpointMethod { get; set; } - [Column(Order = 5)] - public string RestEndpointOperation { get; set; } - - public RunbookModel Runbook { get; set; } - } -} diff --git a/Models/JobModel.cs b/Models/JobModel.cs deleted file mode 100644 index 6a18ea3..0000000 --- a/Models/JobModel.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System.ComponentModel.DataAnnotations.Schema; - -namespace Microsoft.SelfService.Portal.Core.API.Models -{ - public class JobModel : BaseModel - { - [Column(Order = 1)] - public Guid DeploymentId { get; set; } - [Column(Order = 2)] - public Guid RunbookId { get; set; } - - public DeploymentModel Deployment { get; set; } - public RunbookModel Runbook { get; set; } - } -} diff --git a/Models/OptionCategoryModel.cs b/Models/OptionCategoryModel.cs index 025fd42..89dcb6e 100644 --- a/Models/OptionCategoryModel.cs +++ b/Models/OptionCategoryModel.cs @@ -14,3 +14,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public ICollection Options { get; set; } } } + diff --git a/Models/OptionModel.cs b/Models/OptionModel.cs index 1aef2af..13286e7 100644 --- a/Models/OptionModel.cs +++ b/Models/OptionModel.cs @@ -17,3 +17,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public ICollection TemplateOptions { get; set; } } } + diff --git a/Models/QueueJobStatus.cs b/Models/QueueJobStatus.cs index 22851d7..e32e526 100644 --- a/Models/QueueJobStatus.cs +++ b/Models/QueueJobStatus.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Models +namespace Microsoft.SelfService.Portal.Core.API.Models { public static class QueueJobStatus { @@ -11,3 +11,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public const string Cancelled = "Cancelled"; } } + diff --git a/Models/QueueJobStepType.cs b/Models/QueueJobStepType.cs index 27f85eb..5d08c39 100644 --- a/Models/QueueJobStepType.cs +++ b/Models/QueueJobStepType.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Models +namespace Microsoft.SelfService.Portal.Core.API.Models { public static class QueueJobStepType { @@ -6,3 +6,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public const string Approval = "Approval"; } } + diff --git a/Models/QueueJobType.cs b/Models/QueueJobType.cs index 07f5dda..bec881a 100644 --- a/Models/QueueJobType.cs +++ b/Models/QueueJobType.cs @@ -1,4 +1,4 @@ -namespace Microsoft.SelfService.Portal.Core.API.Models +namespace Microsoft.SelfService.Portal.Core.API.Models { public static class QueueJobType { @@ -6,3 +6,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public const string DeploymentRequested = "DeploymentRequested"; } } + diff --git a/Models/RunbookModel.cs b/Models/RunbookModel.cs deleted file mode 100644 index c8c9140..0000000 --- a/Models/RunbookModel.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System.ComponentModel.DataAnnotations.Schema; - -namespace Microsoft.SelfService.Portal.Core.API.Models -{ - public class RunbookModel : BaseModel - { - [Column(Order = 1)] - public string Name { get; set; } - [Column(Order = 2)] - public string Description { get; set; } - - public ICollection Jobs { get; set; } - - public ICollection Events { get; set; } - } -} diff --git a/Models/ServiceModel.cs b/Models/ServiceModel.cs index dff8803..d84725c 100644 --- a/Models/ServiceModel.cs +++ b/Models/ServiceModel.cs @@ -18,3 +18,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public ICollection RoleDefinitions { get; set; } = new List(); } } + diff --git a/Models/ServiceRoleDefinitionModel.cs b/Models/ServiceRoleDefinitionModel.cs index b6fac45..662db1a 100644 --- a/Models/ServiceRoleDefinitionModel.cs +++ b/Models/ServiceRoleDefinitionModel.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations.Schema; +using System.ComponentModel.DataAnnotations.Schema; namespace Microsoft.SelfService.Portal.Core.API.Models { @@ -19,3 +19,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public ServiceModel Service { get; set; } = null!; } } + diff --git a/Models/VirtualMachineModel.cs b/Models/TargetModel.cs similarity index 71% rename from Models/VirtualMachineModel.cs rename to Models/TargetModel.cs index d41408b..6609252 100644 --- a/Models/VirtualMachineModel.cs +++ b/Models/TargetModel.cs @@ -1,9 +1,7 @@ using System.ComponentModel.DataAnnotations.Schema; -using System.Text.Json.Serialization; - namespace Microsoft.SelfService.Portal.Core.API.Models { - public class VirtualMachineModel : BaseModel + public class TargetModel : BaseModel { [Column(Order = 1)] public Guid? DomainID { get; set; } @@ -12,9 +10,15 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public string Name { get; set; } [Column(Order = 3)] - public string? ExternalId { get; set; } + public string TargetType { get; set; } = "VirtualMachine"; [Column(Order = 4)] + public string ProviderType { get; set; } = "OnPrem"; + + [Column(Order = 5)] + public string? ExternalId { get; set; } + + [Column(Order = 6)] public string? MetadataJson { get; set; } public DomainModel? Domain { get; set; } @@ -23,3 +27,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models } } + diff --git a/Models/TemplateCategoryModel.cs b/Models/TemplateCategoryModel.cs index 6314dfd..f1e7876 100644 --- a/Models/TemplateCategoryModel.cs +++ b/Models/TemplateCategoryModel.cs @@ -20,3 +20,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public ICollection Templates { get; set; } = new List(); } } + diff --git a/Models/TemplateModel.cs b/Models/TemplateModel.cs index db80aaa..1d63c67 100644 --- a/Models/TemplateModel.cs +++ b/Models/TemplateModel.cs @@ -27,6 +27,8 @@ namespace Microsoft.SelfService.Portal.Core.API.Models public ICollection DeploymentGroups { get; set; } public ICollection TemplateOptions { get; set; } + public ICollection TemplateVersions { get; set; } = new List(); } } + diff --git a/Models/TemplateOptionModel.cs b/Models/TemplateOptionModel.cs index 1d08c8f..3fc79b8 100644 --- a/Models/TemplateOptionModel.cs +++ b/Models/TemplateOptionModel.cs @@ -17,3 +17,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Models } } + diff --git a/Models/TemplateVersionModel.cs b/Models/TemplateVersionModel.cs new file mode 100644 index 0000000..a71301e --- /dev/null +++ b/Models/TemplateVersionModel.cs @@ -0,0 +1,48 @@ +using System.ComponentModel.DataAnnotations.Schema; +using System.Security.Cryptography; +using System.Text; + +namespace Microsoft.SelfService.Portal.Core.API.Models +{ + public class TemplateVersionModel : BaseModel + { + [Column(Order = 1)] + public Guid TemplateId { get; set; } + + [Column(Order = 2)] + public string Version { get; set; } = "1.0.0"; + + [Column(Order = 3)] + public string JsonData { get; set; } = "{}"; + + [Column(Order = 4)] + public string JsonHash { get; set; } = string.Empty; + + [Column(Order = 5)] + public string SchemaVersion { get; set; } = "1.0"; + + [Column(Order = 6)] + public bool IsPublished { get; set; } + + [Column(Order = 7)] + public DateTime? PublishedAt { get; set; } + + [Column(Order = 8)] + public string? PublishedBy { get; set; } + + public TemplateModel Template { get; set; } = null!; + + public void SetJsonData(string jsonData) + { + JsonData = string.IsNullOrWhiteSpace(jsonData) ? "{}" : jsonData; + JsonHash = ComputeSha256(JsonData); + } + + public static string ComputeSha256(string value) + { + var bytes = SHA256.HashData(Encoding.UTF8.GetBytes(value ?? string.Empty)); + return Convert.ToHexString(bytes); + } + } +} + diff --git a/Program.cs b/Program.cs index 141db0c..43eaa63 100644 --- a/Program.cs +++ b/Program.cs @@ -1,8 +1,6 @@ -using Microsoft.AspNetCore.Authentication.Negotiate; +using Microsoft.AspNetCore.Authentication.Negotiate; using Microsoft.EntityFrameworkCore; using Microsoft.SelfService.Portal.Core.API.Context; -using Microsoft.SelfService.Portal.Core.API.Events; -using Microsoft.SelfService.Portal.Core.API.Events.Interfaces; using Microsoft.SelfService.Portal.Core.API.Interfaces; using Microsoft.SelfService.Portal.Core.API.Repository; using Microsoft.SelfService.Portal.Core.API.Services; @@ -20,14 +18,11 @@ builder.Services.AddControllers().AddJsonOptions(options => options.JsonSerializerOptions.ReferenceHandler = ReferenceHandler.IgnoreCycles; }); -builder.Services.AddScoped(); - builder.Services.AddScoped(); builder.Services.AddScoped(); -builder.Services.AddScoped(); +builder.Services.AddScoped(); builder.Services.AddScoped(); -builder.Services.AddScoped(); -builder.Services.AddScoped(); +builder.Services.AddScoped(); builder.Services.AddScoped(); builder.Services.AddScoped(); builder.Services.AddScoped(); @@ -92,9 +87,17 @@ if (Directory.Exists(frontendDistPath)) { app.MapFallback(async context => { + if (context.Request.Path.StartsWithSegments("/api")) + { + context.Response.StatusCode = StatusCodes.Status404NotFound; + await context.Response.WriteAsJsonAsync(new { message = "API endpoint not found." }); + return; + } + context.Response.ContentType = "text/html"; await context.Response.SendFileAsync(Path.Combine(frontendDistPath, "index.html")); }).AllowAnonymous(); } app.Run(); + diff --git a/Repository/DeploymentBatchRepository.cs b/Repository/DeploymentBatchRepository.cs new file mode 100644 index 0000000..ee76791 --- /dev/null +++ b/Repository/DeploymentBatchRepository.cs @@ -0,0 +1,147 @@ +using Microsoft.EntityFrameworkCore; +using Microsoft.SelfService.Portal.Core.API.Context; +using Microsoft.SelfService.Portal.Core.API.Interfaces; +using Microsoft.SelfService.Portal.Core.API.Models; + +namespace Microsoft.SelfService.Portal.Core.API.Repository +{ + public class DeploymentBatchRepository : IDeploymentBatchInterface + { + private readonly DataContext _context; + + public DeploymentBatchRepository(DataContext context) + { + _context = context; + } + + public ICollection GetDeploymentBatches() + { + return _context.DeploymentGroups.ToList(); + } + + public DeploymentGroupModel? GetDeploymentBatchById(Guid id) + { + return _context.DeploymentGroups + .Include(t => t.Template) + .ThenInclude(tc => tc.TemplateCategory) + .ThenInclude(s => s.Service) + .Include(d => d.Deployments) + .ThenInclude(vm => vm.Target) + .Include(batch => batch.TemplateSelections) + .ThenInclude(selection => selection.TemplateVersion) + .Include(batch => batch.ParameterValues) + .Include(batch => batch.TargetAssignments) + .ThenInclude(target => target.Target) + .Where(dg => dg.Id == id).FirstOrDefault(); + } + + public bool AddDeploymentBatchById(DeploymentGroupModel deploymentBatch, ICollection? targetIds) + { + if (deploymentBatch.Id == Guid.Empty) + { + deploymentBatch.Id = Guid.NewGuid(); + } + + var template = _context.Templates + .Include(existing => existing.TemplateCategory) + .ThenInclude(existing => existing.Service) + .FirstOrDefault(existing => existing.Id == deploymentBatch.TemplateId); + + if (template == null) + { + return false; + } + + if (deploymentBatch.DeploymentRuleId.HasValue) + { + var ruleExists = _context.DeploymentRules.Any(existing => existing.Id == deploymentBatch.DeploymentRuleId.Value); + if (!ruleExists) + { + return false; + } + } + + var isCloudService = template.TemplateCategory.Service.IsCloudService; + var selectedTargetIds = (targetIds ?? Array.Empty()) + .Distinct() + .ToList(); + + if (!isCloudService && selectedTargetIds.Count == 0) + { + return false; + } + + if (selectedTargetIds.Count > 0) + { + var existingTargetIds = _context.Targets + .Where(existing => selectedTargetIds.Contains(existing.Id)) + .Select(existing => existing.Id) + .ToHashSet(); + + if (existingTargetIds.Count != selectedTargetIds.Count) + { + return false; + } + } + + _context.Add(deploymentBatch); + + if (!SaveChanges()) + { + return false; + } + + if (!isCloudService) + { + foreach (var targetId in selectedTargetIds) + { + _context.Deployments.Add(new DeploymentModel + { + DeploymentGroupId = deploymentBatch.Id, + TargetId = targetId, + Status = QueueJobStatus.Pending, + JSONData = "{}" + }); + } + + return SaveChanges(); + } + + return true; + } + + public bool DeleteDeploymentBatchById(DeploymentGroupModel deploymentBatch) + { + var deployments = _context.Deployments + .Where(existing => existing.DeploymentGroupId == deploymentBatch.Id) + .ToList(); + + if (deployments.Count > 0) + { + _context.Deployments.RemoveRange(deployments); + } + + _context.Remove(deploymentBatch); + return SaveChanges(); + } + + public bool EditDeploymentBatchById(DeploymentGroupModel deploymentBatch) + { + _context.Update(deploymentBatch); + return SaveChanges(); + } + + public bool CheckDeploymentBatchById(Guid id) + { + return _context.DeploymentGroups + .Any(d => d.Id == id); + } + + public bool SaveChanges() + { + var saved = _context.SaveChanges(); + return saved > 0 ? true : false; + } + } +} + diff --git a/Repository/DeploymentGroupRepository.cs b/Repository/DeploymentGroupRepository.cs deleted file mode 100644 index 201262b..0000000 --- a/Repository/DeploymentGroupRepository.cs +++ /dev/null @@ -1,123 +0,0 @@ -using Microsoft.EntityFrameworkCore; -using Microsoft.SelfService.Portal.Core.API.Context; -using Microsoft.SelfService.Portal.Core.API.Interfaces; -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Repository -{ - public class DeploymentGroupRepository : IDeploymentGroupInterface - { - private readonly DataContext _context; - - public DeploymentGroupRepository(DataContext context) - { - _context = context; - } - - public ICollection GetDeploymentGroups() - { - return _context.DeploymentGroups.ToList(); - } - - public DeploymentGroupModel GetDeploymentGroupById(Guid Id) - { - return _context.DeploymentGroups - .Include(t => t.Template) - .ThenInclude(tc => tc.TemplateCategory) - .ThenInclude(s => s.Service) - .Include(d => d.Deployments) - .ThenInclude(vm => vm.VirtualMachine) - .Where(dg => dg.Id == Id).FirstOrDefault(); - } - - public bool AddDeploymentGroupById(DeploymentGroupModel deploymentgroup, ICollection? virtualMachineIds) - { - if (deploymentgroup.Id == Guid.Empty) - { - deploymentgroup.Id = Guid.NewGuid(); - } - - var template = _context.Templates - .Include(existing => existing.TemplateCategory) - .ThenInclude(existing => existing.Service) - .FirstOrDefault(existing => existing.Id == deploymentgroup.TemplateId); - - if (template == null) - { - return false; - } - - var isCloudService = template.TemplateCategory.Service.IsCloudService; - var selectedVirtualMachineIds = (virtualMachineIds ?? Array.Empty()) - .Distinct() - .ToList(); - - if (!isCloudService && selectedVirtualMachineIds.Count == 0) - { - return false; - } - - if (selectedVirtualMachineIds.Count > 0) - { - var existingVirtualMachineIds = _context.VirtualMachines - .Where(existing => selectedVirtualMachineIds.Contains(existing.Id)) - .Select(existing => existing.Id) - .ToHashSet(); - - if (existingVirtualMachineIds.Count != selectedVirtualMachineIds.Count) - { - return false; - } - } - - _context.Add(deploymentgroup); - - if (!SaveChanges()) - { - return false; - } - - if (!isCloudService) - { - foreach (var virtualMachineId in selectedVirtualMachineIds) - { - _context.Deployments.Add(new DeploymentModel - { - DeploymentGroupId = deploymentgroup.Id, - VirtualMachineId = virtualMachineId, - Status = QueueJobStatus.Pending, - JSONData = "{}" - }); - } - - return SaveChanges(); - } - - return true; - } - - public bool DeleteDeploymentGroupById(DeploymentGroupModel deploymentgroup) - { - _context.Remove(deploymentgroup); - return SaveChanges(); - } - - public bool EditDeploymentGroupById(DeploymentGroupModel deploymentgroup) - { - _context.Update(deploymentgroup); - return SaveChanges(); - } - - public bool CheckDeploymentGroupById(Guid Id) - { - return _context.DeploymentGroups - .Any(d => d.Id == Id); - } - - public bool SaveChanges() - { - var saved = _context.SaveChanges(); - return saved > 0 ? true : false; - } - } -} diff --git a/Repository/DeploymentRepository.cs b/Repository/DeploymentRepository.cs index e7a31a5..5ea79fd 100644 --- a/Repository/DeploymentRepository.cs +++ b/Repository/DeploymentRepository.cs @@ -1,6 +1,7 @@ using Microsoft.EntityFrameworkCore; using Microsoft.SelfService.Portal.Core.API.Context; using Microsoft.SelfService.Portal.Core.API.Interfaces; +using Microsoft.SelfService.Portal.Core.API.JsonDocuments; using Microsoft.SelfService.Portal.Core.API.Models; namespace Microsoft.SelfService.Portal.Core.API.Repository @@ -22,7 +23,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository public DeploymentModel GetDeploymentById(Guid Id) { return _context.Deployments - .Include(vm => vm.VirtualMachine) + .Include(vm => vm.Target) .Include(dg => dg.DeploymentGroup) .ThenInclude(t => t.Template) .Where(d => d.Id == Id).FirstOrDefault(); @@ -30,6 +31,10 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository public bool AddDeploymentById(DeploymentModel deployment) { + deployment.JSONData = ConfigurationDocumentValidator.NormalizeAndValidate( + deployment.JSONData, + ConfigurationDocumentKind.DeploymentOverride).JsonData; + _context.Add(deployment); return SaveChanges(); } @@ -42,16 +47,35 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository public bool EditDeploymentById(DeploymentModel deployment) { + deployment.JSONData = ConfigurationDocumentValidator.NormalizeAndValidate( + deployment.JSONData, + ConfigurationDocumentKind.DeploymentOverride).JsonData; + _context.Update(deployment); return SaveChanges(); } + public DeploymentModel GetDeploymentByCompositeId(Guid deploymentGroupId, Guid targetId) + { + return _context.Deployments + .Include(vm => vm.Target) + .Include(dg => dg.DeploymentGroup) + .ThenInclude(t => t.Template) + .FirstOrDefault(d => d.DeploymentGroupId == deploymentGroupId && d.TargetId == targetId); + } + public bool CheckDeploymentById(Guid Id) { return _context.Deployments .Any(d => d.Id == Id); } + public bool CheckDeploymentByCompositeId(Guid deploymentGroupId, Guid targetId) + { + return _context.Deployments + .Any(d => d.DeploymentGroupId == deploymentGroupId && d.TargetId == targetId); + } + public bool SaveChanges() { var saved = _context.SaveChanges(); @@ -59,3 +83,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository } } } + diff --git a/Repository/DomainRepository.cs b/Repository/DomainRepository.cs index e6cecf8..73440a0 100644 --- a/Repository/DomainRepository.cs +++ b/Repository/DomainRepository.cs @@ -49,11 +49,11 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository .Where(d => d.Id == Id) .FirstOrDefault(); } - public DomainModel GetVirtualMachinesByDomainId(Guid Id) + public DomainModel GetTargetsByDomainId(Guid Id) { return _context.Domains .Where(d => d.Id == Id) - .Include(vm => vm.VirtualMachines) + .Include(vm => vm.Targets) .FirstOrDefault(); } @@ -86,3 +86,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository } } } + diff --git a/Repository/EnvironmentRepository.cs b/Repository/EnvironmentRepository.cs index 6a96183..7ae9ef2 100644 --- a/Repository/EnvironmentRepository.cs +++ b/Repository/EnvironmentRepository.cs @@ -52,7 +52,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository { var environment = _context.Environments.Where(e => e.Id == Id).FirstOrDefault(); var isCloudEnvironment = environment != null - && environment.EnvironmentType != EnvironmentTypes.OnPrem; + && environment.HostingType != EnvironmentHostingTypes.OnPrem; return _context.Templates .Include(t => t.TemplateCategory) @@ -79,3 +79,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository } } } + diff --git a/Repository/JobRepository.cs b/Repository/JobRepository.cs deleted file mode 100644 index d39768b..0000000 --- a/Repository/JobRepository.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Microsoft.SelfService.Portal.Core.API.Context; -using Microsoft.SelfService.Portal.Core.API.Interfaces; -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Repository -{ - public class JobRepository : IJobInterface - { - private readonly DataContext _context; - - public JobRepository(DataContext context) - { - _context = context; - } - - public ICollection GetJobs() - { - return _context.Jobs.ToList(); - } - - bool IJobInterface.CheckJobById(Guid Id) - { - throw new NotImplementedException(); - } - - bool IJobInterface.CreateJobById(JobModel job) - { - throw new NotImplementedException(); - } - - bool IJobInterface.DeleteJobById(JobModel job) - { - throw new NotImplementedException(); - } - - JobModel IJobInterface.GetJobById(Guid Id) - { - throw new NotImplementedException(); - } - - ICollection IJobInterface.GetJobs() - { - throw new NotImplementedException(); - } - - bool IAbstractInterface.SaveChanges() - { - throw new NotImplementedException(); - } - - bool IJobInterface.UpdateJobById(JobModel job) - { - throw new NotImplementedException(); - } - } -} diff --git a/Repository/RunbookRepository.cs b/Repository/RunbookRepository.cs deleted file mode 100644 index 55b6a84..0000000 --- a/Repository/RunbookRepository.cs +++ /dev/null @@ -1,59 +0,0 @@ -using Microsoft.SelfService.Portal.Core.API.Context; -using Microsoft.SelfService.Portal.Core.API.Interfaces; -using Microsoft.SelfService.Portal.Core.API.Models; - -namespace Microsoft.SelfService.Portal.Core.API.Repository -{ - public class RunbookRepository : IRunbookInterface - { - private readonly DataContext _context; - - public RunbookRepository(DataContext context) - { - _context = context; - } - - public ICollection GetRunbooks() - { - return _context.Runbooks - .ToList(); - } - - public RunbookModel GetRunbookById(Guid Id) - { - return _context.Runbooks - .Where(r => r.Id == Id) - .FirstOrDefault(); - } - - public bool AddRunbookById(RunbookModel runbook) - { - _context.Add(runbook); - - return SaveChanges(); - } - public bool EditRunbookById(RunbookModel runbook) - { - _context.Update(runbook); - return SaveChanges(); - } - - public bool CheckRunbookById(Guid Id) - { - return _context.Runbooks - .Any(r => r.Id == Id); - } - - public bool CheckRunbookByName(string Name) - { - return _context.Runbooks - .Any(r => r.Name == Name); - } - - public bool SaveChanges() - { - var saved = _context.SaveChanges(); - return saved > 0 ? true : false; - } - } -} diff --git a/Repository/ServiceRepository.cs b/Repository/ServiceRepository.cs index 5b167c2..0a9e5bd 100644 --- a/Repository/ServiceRepository.cs +++ b/Repository/ServiceRepository.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using Microsoft.SelfService.Portal.Core.API.Context; using Microsoft.SelfService.Portal.Core.API.Interfaces; using Microsoft.SelfService.Portal.Core.API.Models; @@ -116,3 +116,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository } } } + diff --git a/Repository/VirtualMachineRepository.cs b/Repository/TargetRepository.cs similarity index 51% rename from Repository/VirtualMachineRepository.cs rename to Repository/TargetRepository.cs index 7b4b9cb..7ba7ff3 100644 --- a/Repository/VirtualMachineRepository.cs +++ b/Repository/TargetRepository.cs @@ -5,65 +5,65 @@ using Microsoft.SelfService.Portal.Core.API.Models; namespace Microsoft.SelfService.Portal.Core.API.Repository { - public class VirtualMachineRepository : IVirtualMachineInterface + public class TargetRepository : ITargetInterface { private readonly DataContext _context; - public VirtualMachineRepository(DataContext context) + public TargetRepository(DataContext context) { _context = context; } - public ICollection GetVirtualMachines() + public ICollection GetTargets() { - return _context.VirtualMachines - .Include(virtualMachine => virtualMachine.Domain) + return _context.Targets + .Include(target => target.Domain) .ToList(); } - public VirtualMachineModel GetVirtualMachineById(Guid Id) + public TargetModel GetTargetById(Guid Id) { - return _context.VirtualMachines + return _context.Targets .Where(v => v.Id == Id) .Include(d => d.Domain) .ThenInclude(e => e.EnvironmentDomains) .FirstOrDefault(); } - public bool AddVirtualMachineById(VirtualMachineModel virtualMachine) + public bool AddTargetById(TargetModel target) { - _context.Add(virtualMachine); + _context.Add(target); return SaveChanges(); } - public bool EditVirtualMachineById(VirtualMachineModel virtualMachine) + public bool EditTargetById(TargetModel target) { - _context.Update(virtualMachine); + _context.Update(target); return SaveChanges(); } - public bool DeleteVirtualMachineById(VirtualMachineModel virtualMachine) + public bool DeleteTargetById(TargetModel target) { - _context.Remove(virtualMachine); + _context.Remove(target); return SaveChanges(); } - public VirtualMachineModel GetVirtualMachineByName(string Name) + public TargetModel GetTargetByName(string Name) { - return _context.VirtualMachines + return _context.Targets .Where(v => v.Name == Name) .FirstOrDefault(); } - public bool CheckVirtualMachineById(Guid Id) + public bool CheckTargetById(Guid Id) { - return _context.VirtualMachines + return _context.Targets .Any(v => v.Id == Id); } - public bool CheckVirtualMachineByName(string Name) + public bool CheckTargetByName(string Name) { - return _context.VirtualMachines + return _context.Targets .Any(v => v.Name == Name); } @@ -74,3 +74,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository } } } + diff --git a/Repository/TemplateCategoryRepository.cs b/Repository/TemplateCategoryRepository.cs index f8a0e05..5728762 100644 --- a/Repository/TemplateCategoryRepository.cs +++ b/Repository/TemplateCategoryRepository.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using Microsoft.SelfService.Portal.Core.API.Context; using Microsoft.SelfService.Portal.Core.API.Interfaces; using Microsoft.SelfService.Portal.Core.API.Models; @@ -74,3 +74,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository } } } + diff --git a/Repository/TemplateRepository.cs b/Repository/TemplateRepository.cs index ea2893c..3f384e6 100644 --- a/Repository/TemplateRepository.cs +++ b/Repository/TemplateRepository.cs @@ -1,6 +1,7 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using Microsoft.SelfService.Portal.Core.API.Context; using Microsoft.SelfService.Portal.Core.API.Interfaces; +using Microsoft.SelfService.Portal.Core.API.JsonDocuments; using Microsoft.SelfService.Portal.Core.API.Models; namespace Microsoft.SelfService.Portal.Core.API.Repository @@ -16,28 +17,113 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository public ICollection GetTemplates() { - return _context.Templates + var templates = _context.Templates .AsNoTracking() + .Include(template => template.TemplateVersions) .ToList(); + + foreach (var template in templates) + { + ApplyPublishedVersion(template); + } + + return templates; } public TemplateModel GetTemplateById(Guid Id) { - return _context.Templates + var template = _context.Templates .AsNoTracking() + .Include(t => t.TemplateVersions) .Where(t => t.Id == Id) .FirstOrDefault(); + + if (template != null) + { + ApplyPublishedVersion(template); + } + + return template; } public bool AddTemplateById(TemplateModel template) { + if (template.Id == Guid.Empty) + { + template.Id = Guid.NewGuid(); + } + + var document = ConfigurationDocumentValidator.NormalizeAndValidate(template.JSONData, ConfigurationDocumentKind.Template); + template.JSONData = document.JsonData; + + var version = new TemplateVersionModel + { + Id = Guid.NewGuid(), + TemplateId = template.Id, + Version = string.IsNullOrWhiteSpace(template.Version) ? "1.0.0" : template.Version, + SchemaVersion = document.SchemaVersion, + IsPublished = true, + PublishedAt = DateTime.UtcNow, + PublishedBy = template.CreatedBy + }; + version.SetJsonData(document.JsonData); + + template.TemplateVersions.Add(version); _context.Add(template); return SaveChanges(); } public bool EditTemplateById(TemplateModel template) { - _context.Update(template); + var existingTemplate = _context.Templates + .Include(existing => existing.TemplateVersions) + .FirstOrDefault(existing => existing.Id == template.Id); + + if (existingTemplate == null) + { + return false; + } + + var document = ConfigurationDocumentValidator.NormalizeAndValidate(template.JSONData, ConfigurationDocumentKind.Template); + var jsonData = document.JsonData; + var publishedVersion = existingTemplate.TemplateVersions.FirstOrDefault(version => version.IsPublished); + var jsonChanged = publishedVersion == null || !string.Equals(publishedVersion.JsonData, jsonData, StringComparison.Ordinal); + + existingTemplate.Name = template.Name; + existingTemplate.Version = template.Version; + existingTemplate.Description = template.Description; + existingTemplate.JSONData = jsonData; + existingTemplate.TemplateCategoryId = template.TemplateCategoryId; + existingTemplate.DeploymentRuleId = template.DeploymentRuleId; + existingTemplate.Modified = DateTime.UtcNow; + existingTemplate.ModifiedBy = template.ModifiedBy; + + if (jsonChanged) + { + var versionName = GetUniqueVersionName( + existingTemplate.Id, + string.IsNullOrWhiteSpace(template.Version) ? DateTime.UtcNow.ToString("yyyyMMddHHmmss") : template.Version); + + var version = new TemplateVersionModel + { + Id = Guid.NewGuid(), + TemplateId = existingTemplate.Id, + Version = versionName, + SchemaVersion = document.SchemaVersion, + IsPublished = true, + PublishedAt = DateTime.UtcNow, + PublishedBy = template.ModifiedBy + }; + version.SetJsonData(jsonData); + + foreach (var existingVersion in existingTemplate.TemplateVersions) + { + existingVersion.IsPublished = false; + } + + existingTemplate.TemplateVersions.Add(version); + } + return SaveChanges(); } @@ -67,10 +153,141 @@ namespace Microsoft.SelfService.Portal.Core.API.Repository .Any(t => t.Name == Name); } + public ICollection GetTemplateVersions(Guid templateId) + { + return _context.TemplateVersions + .AsNoTracking() + .Where(version => version.TemplateId == templateId) + .OrderByDescending(version => version.Created) + .ToList(); + } + + public TemplateVersionModel? GetTemplateVersionById(Guid templateId, Guid versionId) + { + return _context.TemplateVersions + .AsNoTracking() + .FirstOrDefault(version => version.TemplateId == templateId && version.Id == versionId); + } + + public TemplateVersionModel? GetPublishedTemplateVersion(Guid templateId) + { + return _context.TemplateVersions + .AsNoTracking() + .FirstOrDefault(version => version.TemplateId == templateId && version.IsPublished); + } + + public bool AddTemplateVersion(Guid templateId, TemplateVersionModel version, bool publish) + { + if (!_context.Templates.Any(template => template.Id == templateId)) + { + return false; + } + + version.Id = version.Id == Guid.Empty ? Guid.NewGuid() : version.Id; + version.TemplateId = templateId; + version.Version = string.IsNullOrWhiteSpace(version.Version) ? "1.0.0" : version.Version; + var document = ConfigurationDocumentValidator.NormalizeAndValidate( + version.JsonData, + ConfigurationDocumentKind.Template, + version.SchemaVersion); + version.SchemaVersion = document.SchemaVersion; + version.SetJsonData(document.JsonData); + + if (publish) + { + foreach (var existingVersion in _context.TemplateVersions.Where(existing => existing.TemplateId == templateId && existing.IsPublished)) + { + existingVersion.IsPublished = false; + } + + version.IsPublished = true; + version.PublishedAt = DateTime.UtcNow; + } + + _context.TemplateVersions.Add(version); + return SaveChanges(); + } + + public bool PublishTemplateVersion(Guid templateId, Guid versionId, string? publishedBy) + { + var version = _context.TemplateVersions + .FirstOrDefault(existing => existing.TemplateId == templateId && existing.Id == versionId); + + if (version == null) + { + return false; + } + + foreach (var existingVersion in _context.TemplateVersions.Where(existing => existing.TemplateId == templateId && existing.IsPublished)) + { + existingVersion.IsPublished = false; + } + + version.IsPublished = true; + version.PublishedAt = DateTime.UtcNow; + version.PublishedBy = string.IsNullOrWhiteSpace(publishedBy) ? "System" : publishedBy; + + var template = _context.Templates.FirstOrDefault(existing => existing.Id == templateId); + if (template != null) + { + template.Version = version.Version; + template.JSONData = version.JsonData; + template.Modified = DateTime.UtcNow; + template.ModifiedBy = version.PublishedBy; + } + + return SaveChanges(); + } + + public bool CheckTemplateVersionById(Guid templateId, Guid versionId) + { + return _context.TemplateVersions + .Any(version => version.TemplateId == templateId && version.Id == versionId); + } + + public bool CheckTemplateVersionByVersion(Guid templateId, string version) + { + return _context.TemplateVersions + .Any(existing => existing.TemplateId == templateId && existing.Version == version); + } + public bool SaveChanges() { var saved = _context.SaveChanges(); return saved > 0 ? true : false; } + + private static void ApplyPublishedVersion(TemplateModel template) + { + var publishedVersion = template.TemplateVersions?.FirstOrDefault(version => version.IsPublished); + if (publishedVersion == null) + { + return; + } + + template.Version = publishedVersion.Version; + template.JSONData = publishedVersion.JsonData; + } + + private string GetUniqueVersionName(Guid templateId, string version) + { + if (!CheckTemplateVersionByVersion(templateId, version)) + { + return version; + } + + var timestamp = DateTime.UtcNow.ToString("yyyyMMddHHmmss"); + var candidate = $"{version}-{timestamp}"; + var counter = 1; + + while (CheckTemplateVersionByVersion(templateId, candidate)) + { + counter++; + candidate = $"{version}-{timestamp}-{counter}"; + } + + return candidate; + } } } + diff --git a/Services/QueueJobService.cs b/Services/QueueJobService.cs index c99f668..0fc3a4e 100644 --- a/Services/QueueJobService.cs +++ b/Services/QueueJobService.cs @@ -1,6 +1,7 @@ -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; using Microsoft.SelfService.Portal.Core.API.Context; using Microsoft.SelfService.Portal.Core.API.Interfaces; +using Microsoft.SelfService.Portal.Core.API.JsonDocuments; using Microsoft.SelfService.Portal.Core.API.Models; using System.Text.Json; @@ -39,7 +40,7 @@ namespace Microsoft.SelfService.Portal.Core.API.Services PayloadJson = JsonSerializer.Serialize(payload), Targets = deployments.Select(deployment => new QueueJobTargetModel { - VirtualMachineId = deployment.VirtualMachineId, + TargetId = deployment.TargetId, DeploymentGroupId = deployment.DeploymentGroupId, TemplateId = templateId, Status = QueueJobStatus.Pending @@ -53,13 +54,20 @@ namespace Microsoft.SelfService.Portal.Core.API.Services return queueJob.Id; } - public Guid EnqueueDeploymentRequest(Guid deploymentGroupId, ICollection virtualMachineIds, string jsonData) + public Guid EnqueueDeploymentRequest(Guid deploymentGroupId, ICollection targetIds, string jsonData) { + var deploymentDocument = ConfigurationDocumentValidator.NormalizeAndValidate( + jsonData, + ConfigurationDocumentKind.DeploymentOverride); + jsonData = deploymentDocument.JsonData; + var deploymentGroup = _context.DeploymentGroups .AsNoTracking() .Include(group => group.Template) .ThenInclude(template => template.DeploymentRule) .ThenInclude(rule => rule.Steps) + .Include(group => group.DeploymentRule) + .ThenInclude(rule => rule!.Steps) .FirstOrDefault(group => group.Id == deploymentGroupId); if (deploymentGroup == null) @@ -68,43 +76,43 @@ namespace Microsoft.SelfService.Portal.Core.API.Services } var templateId = deploymentGroup.TemplateId; - var resolvedVirtualMachineIds = virtualMachineIds + var resolvedTargetIds = targetIds .Distinct() .ToList(); - if (resolvedVirtualMachineIds.Count == 0) + if (resolvedTargetIds.Count == 0) { - throw new InvalidOperationException("No target VirtualMachines provided."); + throw new InvalidOperationException("No target Targets provided."); } - var existingVirtualMachines = _context.VirtualMachines + var existingTargets = _context.Targets .AsNoTracking() - .Where(virtualMachine => resolvedVirtualMachineIds.Contains(virtualMachine.Id)) - .Select(virtualMachine => virtualMachine.Id) + .Where(target => resolvedTargetIds.Contains(target.Id)) + .Select(target => target.Id) .ToHashSet(); - var missingVirtualMachines = resolvedVirtualMachineIds - .Where(virtualMachineId => !existingVirtualMachines.Contains(virtualMachineId)) + var missingTargets = resolvedTargetIds + .Where(targetId => !existingTargets.Contains(targetId)) .ToList(); - if (missingVirtualMachines.Count > 0) + if (missingTargets.Count > 0) { - throw new InvalidOperationException($"Unknown VirtualMachine IDs: {string.Join(", ", missingVirtualMachines)}"); + throw new InvalidOperationException($"Unknown Target IDs: {string.Join(", ", missingTargets)}"); } - foreach (var virtualMachineId in resolvedVirtualMachineIds) + foreach (var targetId in resolvedTargetIds) { var deployment = _context.Deployments .FirstOrDefault(existing => existing.DeploymentGroupId == deploymentGroupId - && existing.VirtualMachineId == virtualMachineId); + && existing.TargetId == targetId); if (deployment == null) { deployment = new DeploymentModel { DeploymentGroupId = deploymentGroupId, - VirtualMachineId = virtualMachineId, + TargetId = targetId, Status = QueueJobStatus.Pending, JSONData = jsonData }; @@ -118,13 +126,16 @@ namespace Microsoft.SelfService.Portal.Core.API.Services } } + var resolvedRule = deploymentGroup.DeploymentRule ?? deploymentGroup.Template?.DeploymentRule; + var payload = new { DeploymentGroupId = deploymentGroupId, TemplateId = templateId, - VirtualMachineIds = resolvedVirtualMachineIds, + DeploymentRuleId = resolvedRule?.Id, + TargetIds = resolvedTargetIds, JsonData = jsonData, - TargetCount = resolvedVirtualMachineIds.Count, + TargetCount = resolvedTargetIds.Count, Created = DateTime.UtcNow }; @@ -133,18 +144,18 @@ namespace Microsoft.SelfService.Portal.Core.API.Services Type = QueueJobType.DeploymentRequested, Status = QueueJobStatus.Pending, PayloadJson = JsonSerializer.Serialize(payload), - RuleSnapshotJson = deploymentGroup.Template?.DeploymentRuleId.HasValue == true - ? SerializeRuleSnapshot(deploymentGroup.Template!.DeploymentRule) + RuleSnapshotJson = resolvedRule != null + ? SerializeRuleSnapshot(resolvedRule) : null, - Targets = resolvedVirtualMachineIds.Select(virtualMachineId => new QueueJobTargetModel + Targets = resolvedTargetIds.Select(targetId => new QueueJobTargetModel { - VirtualMachineId = virtualMachineId, + TargetId = targetId, DeploymentGroupId = deploymentGroupId, TemplateId = templateId, Status = QueueJobStatus.Pending }).ToList() }; - queueJob.Steps = BuildDeploymentSteps(deploymentGroup.Template?.DeploymentRule); + queueJob.Steps = BuildDeploymentSteps(resolvedRule); _context.QueueJobs.Add(queueJob); _context.SaveChanges(); @@ -313,3 +324,4 @@ namespace Microsoft.SelfService.Portal.Core.API.Services } } } + diff --git a/ToDo.md b/ToDo.md new file mode 100644 index 0000000..686a4c1 --- /dev/null +++ b/ToDo.md @@ -0,0 +1,142 @@ +# SelfService Portal Restructure ToDo + +This file tracks the planned restructure from the current single-template deployment model to a generic configuration composition platform for on-prem, hybrid, and cloud workloads. + +## Status Discipline + +- Keep this file updated after every implementation step. +- Reflect completed work, deferred cleanup, migration status, and DemoData changes here before moving to the next package. +- Keep `Context/DemoData.cs` aligned with model/API changes so the API can be tested after every migration. + +## Goals + +- Support reusable configuration building blocks for many services, such as Active Directory, SQL, SharePoint, Exchange, Teams, Azure, and M365. +- Allow shared catalog data, such as domains and environments, to be linked instead of duplicated. +- Compose one environment deployment from multiple deployments, for example AD, SQL, SharePoint, and cloud policy workloads. +- Keep deployments reproducible by referencing immutable template versions. +- Keep the worker independent from a single renderer so PowerShell DSC v2 and DSC v3 JSON can both be supported. + +## Work Packages + +### 1. Architecture Baseline + +Status: Completed + +- Define the target domain terms: Environment, Domain, Service, Target, DeploymentGroup, Deployment, Template, TemplateVersion, TemplateSelection, DeploymentTarget, QueueJob, Artifact. +- Document the intended relationships. +- Decide how `JsonData` should be stored and validated. +- Define compatibility rules for the existing API and database. +- Output: `Docs/Architecture/DeploymentModel.md` + +### 2. Template Versioning + +Status: Completed + +- Add `TemplateVersionModel`. Completed. +- Move mutable template document fields from `TemplateModel` into `TemplateVersionModel`. Completed for new writes while legacy fields remain for compatibility. +- Keep `TemplateModel` as the stable catalog entry. Completed. +- Add `JsonHash`, `SchemaVersion`, `IsPublished`, `PublishedAt`, and `PublishedBy`. Completed. +- Add unique constraints for `TemplateId + Version`. Completed. +- Migrate existing `Templates.JSONData` into an initial `TemplateVersions` row. Completed in migration. +- Keep API responses backward compatible at first. Completed. +- Add Contoso demo data for template versions. Completed. +- Add reset/seed migration for local development data. Completed and applied locally. +- Defer removal of legacy `TemplateModel.Version` and `TemplateModel.JSONData` until Web/Worker no longer depend on them. + +### 3. JSON Document Contract + +Status: Completed + +- Define the canonical JSON document shape for templates and deployments. Completed in `Docs/Architecture/JsonDocumentContract.md`. +- Add schema versioning, for example `schemaVersion`. Completed for template documents and tolerant deployment overrides. +- Add server-side JSON validation. Completed through `JsonDocuments/ConfigurationDocumentValidator.cs`. +- Add database checks where supported, for example `ISJSON(...)`. Completed for `TemplateVersions.JsonData`; other JSON columns remain validated in code until they are migrated. +- Add content hash calculation for version comparisons. Completed for `TemplateVersionModel.JsonHash`. +- Decide which document fields should be projected into queryable columns. Completed in the contract documentation. + +### 4. Deployment Composition + +Status: Completed + +- Add `DeploymentTemplateSelectionModel`. Completed. +- Allow a deployment to reference multiple template versions with role and sort order. Completed through deployment batch composition endpoints. +- Add `DeploymentParameterValueModel` for explicit user overrides. Completed. +- Add target assignment model for deployment targets. Completed as `DeploymentTargetAssignmentModel`; generic `TargetModel` follows in Step 5. +- Keep old `DeploymentGroup.TemplateId` as legacy until Web and Worker are migrated. Completed for this slice. +- Update Web GUI to test deployment composition directly. Completed in `DeploymentBatchDetailsPage`. + +### 5. Generic Target Model + +Status: Completed + +- Generalize beyond virtual machines. Completed with `TargetModel`, `TargetController`, `TargetRepository`, and target DTOs. +- Introduce target types such as `VirtualMachine`, `Tenant`, `Subscription`, `ResourceGroup`, `User`, `Group`, `Site`, and `PolicyScope`. Completed through `TargetType`. +- Link targets to environments/domains where applicable. Completed for optional domain links; environment targeting remains composition/worker-specific. +- Preserve VM-specific details in `MetadataJson` or a specialized extension table. Completed with generic `MetadataJson`; no extension table yet. +- Add provider scoping for on-prem, Azure, Microsoft 365, Teams, and related target providers. Completed through `ProviderType`. +- Add migration `20260707211957_AddGenericTargetModel`; migration script generated at `buildcheck/AddGenericTargetModel.sql`. +- Update rudimentary Web GUI to use `/targets` and expose target type/provider fields. Completed. + +### 6. Worker Pipeline Refactor + +Status: Pending + +- Load deployment composition from API/database. +- Convert JSON documents to ordered PowerShell hashtables for the existing Merge/Resolve modules. +- Add a renderer abstraction: + - `PowerShellDscV2Renderer` + - `DscV3JsonRenderer` + - future cloud/action renderers +- Store generated artifacts and logs. + +### 7. Queue Hardening + +Status: Pending + +- Add worker claim/lock semantics based on `LockedBy`, `LockedUntil`, and a concurrency token. +- Add `CorrelationId`, `Priority`, `ScheduledAt`, `HeartbeatAt`, and `WorkerName`. +- Add useful indexes for pending/running jobs. +- Persist step and target output metadata. + +### 8. Web/API Migration + +Status: Pending + +- Update API endpoints to expose template versions and deployment composition. +- Update Web to create DeploymentGroups with multiple Deployments. +- Add GUI support for sealed parameters and sealed template blocks. +- Add preview mode based on `Resolve-DSCConfigurationData -SkipSecrets`. +- Add promotion flow from Test to QA/Prod. + +### 8a. Interactive GUI Preview + +Status: Deferred + +- Keep current GUI changes rudimentary while backend work packages are implemented. +- Add an interactive parameter editor that can show effective target values. +- Add a deployment JSON preview for the composed deployment document. +- Add a Merge/Resolve preview action that displays the merged and resolved configuration data. +- Redesign deployment and deployment composition views after the backend model has stabilized. + +### 9. Legacy Cleanup + +Status: In Progress + +- Remove legacy direct template references after migration. +- Remove old DTO fields that expose mutable `Template.JSONData`. +- Remove obsolete SMA Runbook/Event/Job API and data model. Completed. +- Keep read-only migration endpoints only if required. +- Archive or migrate old deployment records. + +## First Implementation Slice + +1. Finish `Docs/Architecture/DeploymentModel.md`. Completed. +2. Add `TemplateVersionModel` and EF migration. Completed. +3. Migrate existing `Templates.JSONData` into `TemplateVersions`. Completed. +4. Update Template API to return the current published version. Completed. +5. Add tests/build checks for the new model. Build and migration script checks completed; automated tests are still pending. +6. Add Contoso DemoData and reset/seed migration. Completed. + +## Next Step + +Start work package 6 by refactoring the worker pipeline to load deployment composition from the API/database and render artifacts through a DSC v2/v3-capable abstraction. diff --git a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll index 266cd81..d0571c7 100644 Binary files a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll and b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll differ diff --git a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.exe b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.exe index 86ae051..6292682 100644 Binary files a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.exe and b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.exe differ diff --git a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb index e65ce7c..883d2b2 100644 Binary files a/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb and b/bin/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb differ diff --git a/bin/Debug/net10.0/buildcheck3/AutoMapper.dll b/bin/Debug/net10.0/buildcheck3/AutoMapper.dll deleted file mode 100644 index e031ec9..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/AutoMapper.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Azure.Core.dll b/bin/Debug/net10.0/buildcheck3/Azure.Core.dll deleted file mode 100644 index 8883ec9..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Azure.Core.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Azure.Identity.dll b/bin/Debug/net10.0/buildcheck3/Azure.Identity.dll deleted file mode 100644 index ea19200..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Azure.Identity.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Humanizer.dll b/bin/Debug/net10.0/buildcheck3/Humanizer.dll deleted file mode 100644 index c9a7ef8..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Humanizer.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.Authentication.Negotiate.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.Authentication.Negotiate.dll deleted file mode 100644 index 3c68db6..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.Authentication.Negotiate.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.JsonPatch.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.JsonPatch.dll deleted file mode 100644 index a9c3e6a..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.JsonPatch.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll deleted file mode 100644 index ff5873c..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.OpenApi.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.OpenApi.dll deleted file mode 100644 index b0a2772..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.AspNetCore.OpenApi.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index 421e812..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.Bcl.Cryptography.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.Bcl.Cryptography.dll deleted file mode 100644 index e0a506a..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.Bcl.Cryptography.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.Build.Framework.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.Build.Framework.dll deleted file mode 100644 index a1a97aa..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.Build.Framework.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll deleted file mode 100644 index ab1265c..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.CSharp.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index dc1f35d..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll deleted file mode 100644 index e6f90df..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll deleted file mode 100644 index 5356a08..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.Workspaces.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.Workspaces.dll deleted file mode 100644 index 7135704..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.Workspaces.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.dll deleted file mode 100644 index f54bd93..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.Data.SqlClient.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.Data.SqlClient.dll deleted file mode 100644 index e355a91..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.Abstractions.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index f457791..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.Design.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.Design.dll deleted file mode 100644 index 8395269..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.Design.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.Relational.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index a82e568..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.SqlServer.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.SqlServer.dll deleted file mode 100644 index 394a48c..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.SqlServer.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index 3ccc5ec..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.Extensions.DependencyModel.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.Extensions.DependencyModel.dll deleted file mode 100644 index a8bf201..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.Extensions.DependencyModel.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.Identity.Client.Extensions.Msal.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.Identity.Client.Extensions.Msal.dll deleted file mode 100644 index 15201c7..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.Identity.Client.Extensions.Msal.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.Identity.Client.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.Identity.Client.dll deleted file mode 100644 index aa7367f..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.Identity.Client.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Abstractions.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index f85ae59..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.JsonWebTokens.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 4c4d3ab..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Logging.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index 170078a..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll deleted file mode 100644 index 9c70235..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Protocols.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Protocols.dll deleted file mode 100644 index 01432af..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Protocols.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Tokens.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 009ce65..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.OpenApi.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.OpenApi.dll deleted file mode 100644 index 58b6245..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.OpenApi.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.deps.json b/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.deps.json deleted file mode 100644 index c0e0bd0..0000000 --- a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.deps.json +++ /dev/null @@ -1,1290 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "dependencies": { - "AutoMapper": "16.1.1", - "Microsoft.AspNetCore.Authentication.Negotiate": "10.0.8", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "10.0.8", - "Microsoft.AspNetCore.OpenApi": "10.0.8", - "Microsoft.EntityFrameworkCore": "10.0.8", - "Microsoft.EntityFrameworkCore.Design": "10.0.8", - "Microsoft.EntityFrameworkCore.SqlServer": "10.0.8", - "Swashbuckle.AspNetCore": "10.1.7" - }, - "runtime": { - "Microsoft.SelfService.Portal.Core.API.dll": {} - } - }, - "AutoMapper/16.1.1": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0" - }, - "runtime": { - "lib/net10.0/AutoMapper.dll": { - "assemblyVersion": "16.0.0.0", - "fileVersion": "16.1.1.0" - } - } - }, - "Azure.Core/1.47.1": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", - "System.ClientModel": "1.5.1", - "System.Memory.Data": "8.0.1" - }, - "runtime": { - "lib/net8.0/Azure.Core.dll": { - "assemblyVersion": "1.47.1.0", - "fileVersion": "1.4700.125.36505" - } - } - }, - "Azure.Identity/1.14.2": { - "dependencies": { - "Azure.Core": "1.47.1", - "Microsoft.Identity.Client": "4.73.1", - "Microsoft.Identity.Client.Extensions.Msal": "4.73.1" - }, - "runtime": { - "lib/net8.0/Azure.Identity.dll": { - "assemblyVersion": "1.14.2.0", - "fileVersion": "1.1400.225.36004" - } - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/10.0.8": { - "dependencies": { - "System.DirectoryServices.Protocols": "10.0.8" - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/10.0.8": { - "dependencies": { - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.JsonPatch.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/10.0.8": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "10.0.8", - "Newtonsoft.Json": "13.0.3", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.AspNetCore.OpenApi/10.0.8": { - "dependencies": { - "Microsoft.OpenApi": "2.4.1" - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "Microsoft.Bcl.Cryptography/9.0.4": { - "runtime": { - "lib/net9.0/Microsoft.Bcl.Cryptography.dll": { - "assemblyVersion": "9.0.0.4", - "fileVersion": "9.0.425.16305" - } - } - }, - "Microsoft.Build.Framework/18.0.2": { - "runtime": { - "lib/net10.0/Microsoft.Build.Framework.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "18.0.2.52102" - } - } - }, - "Microsoft.CodeAnalysis.Common/5.0.0": { - "runtime": { - "lib/net9.0/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/5.0.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "5.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "5.0.0", - "Microsoft.CodeAnalysis.Common": "5.0.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", - "System.Composition": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.Common": "5.0.0", - "System.Composition": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Build.Framework": "18.0.2", - "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", - "Microsoft.VisualStudio.SolutionPersistence": "1.0.52", - "Newtonsoft.Json": "13.0.3", - "System.Composition": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - }, - "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Data.SqlClient/6.1.1": { - "dependencies": { - "Azure.Core": "1.47.1", - "Azure.Identity": "1.14.2", - "Microsoft.Bcl.Cryptography": "9.0.4", - "Microsoft.Data.SqlClient.SNI.runtime": "6.0.2", - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.7.1", - "Microsoft.SqlServer.Server": "1.0.0", - "System.Configuration.ConfigurationManager": "9.0.4" - }, - "runtime": { - "lib/net9.0/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.11.25226.3" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.Data.SqlClient.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.Data.SqlClient.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.Data.SqlClient.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.Data.SqlClient.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.Data.SqlClient.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.Data.SqlClient.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.Data.SqlClient.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.Data.SqlClient.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.Data.SqlClient.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.Data.SqlClient.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { - "locale": "zh-Hant" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.11.25226.3" - }, - "runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.11.25226.3" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": { - "runtimeTargets": { - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "6.2.0.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "6.2.0.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "6.2.0.0" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.8": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.8" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.8": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.EntityFrameworkCore.Design/10.0.8": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Build.Framework": "18.0.2", - "Microsoft.CodeAnalysis.CSharp": "5.0.0", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.0.0", - "Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.0.0", - "Microsoft.EntityFrameworkCore.Relational": "10.0.8", - "Microsoft.Extensions.DependencyModel": "10.0.8", - "Mono.TextTemplating": "3.0.0", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.8": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.8" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/10.0.8": { - "dependencies": { - "Microsoft.Data.SqlClient": "6.1.1", - "Microsoft.EntityFrameworkCore.Relational": "10.0.8" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.Extensions.DependencyModel/10.0.8": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "10.0.0.8", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.Identity.Client/4.73.1": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.73.1.0", - "fileVersion": "4.73.1.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/4.73.1": { - "dependencies": { - "Microsoft.Identity.Client": "4.73.1", - "System.Security.Cryptography.ProtectedData": "9.0.4" - }, - "runtime": { - "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "4.73.1.0", - "fileVersion": "4.73.1.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.Protocols/7.7.1": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "7.7.1.0", - "fileVersion": "7.7.1.50719" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "7.7.1", - "System.IdentityModel.Tokens.Jwt": "7.7.1" - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "7.7.1.0", - "fileVersion": "7.7.1.50719" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.OpenApi/2.4.1": { - "runtime": { - "lib/net8.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.VisualStudio.SolutionPersistence/1.0.52": { - "runtime": { - "lib/net8.0/Microsoft.VisualStudio.SolutionPersistence.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.52.6595" - } - } - }, - "Mono.TextTemplating/3.0.0": { - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "runtime": { - "lib/net6.0/Mono.TextTemplating.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.0.0.1" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "dependencies": { - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.22727" - } - } - }, - "Swashbuckle.AspNetCore/10.1.7": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "10.1.7", - "Swashbuckle.AspNetCore.SwaggerGen": "10.1.7", - "Swashbuckle.AspNetCore.SwaggerUI": "10.1.7" - } - }, - "Swashbuckle.AspNetCore.Swagger/10.1.7": { - "dependencies": { - "Microsoft.OpenApi": "2.4.1" - }, - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "10.1.7.0", - "fileVersion": "10.1.7.2427" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/10.1.7": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "10.1.7" - }, - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "10.1.7.0", - "fileVersion": "10.1.7.2427" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/10.1.7": { - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "10.1.7.0", - "fileVersion": "10.1.7.2427" - } - } - }, - "System.ClientModel/1.5.1": { - "dependencies": { - "System.Memory.Data": "8.0.1" - }, - "runtime": { - "lib/net8.0/System.ClientModel.dll": { - "assemblyVersion": "1.5.1.0", - "fileVersion": "1.500.125.36405" - } - } - }, - "System.CodeDom/6.0.0": { - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition/9.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "9.0.0", - "System.Composition.Convention": "9.0.0", - "System.Composition.Hosting": "9.0.0", - "System.Composition.Runtime": "9.0.0", - "System.Composition.TypedParts": "9.0.0" - } - }, - "System.Composition.AttributedModel/9.0.0": { - "runtime": { - "lib/net9.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Composition.Convention/9.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "9.0.0" - }, - "runtime": { - "lib/net9.0/System.Composition.Convention.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Composition.Hosting/9.0.0": { - "dependencies": { - "System.Composition.Runtime": "9.0.0" - }, - "runtime": { - "lib/net9.0/System.Composition.Hosting.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Composition.Runtime/9.0.0": { - "runtime": { - "lib/net9.0/System.Composition.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Composition.TypedParts/9.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "9.0.0", - "System.Composition.Hosting": "9.0.0", - "System.Composition.Runtime": "9.0.0" - }, - "runtime": { - "lib/net9.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Configuration.ConfigurationManager/9.0.4": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "9.0.4" - }, - "runtime": { - "lib/net9.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.425.16305" - } - } - }, - "System.DirectoryServices.Protocols/10.0.8": { - "runtime": { - "lib/net10.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "10.0.0.8", - "fileVersion": "10.0.826.23019" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "10.0.0.8", - "fileVersion": "10.0.826.23019" - }, - "runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "10.0.0.8", - "fileVersion": "10.0.826.23019" - }, - "runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "10.0.0.8", - "fileVersion": "10.0.826.23019" - } - } - }, - "System.IdentityModel.Tokens.Jwt/7.7.1": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "7.7.1.0", - "fileVersion": "7.7.1.50719" - } - } - }, - "System.Memory.Data/8.0.1": { - "runtime": { - "lib/net8.0/System.Memory.Data.dll": { - "assemblyVersion": "8.0.0.1", - "fileVersion": "8.0.1024.46610" - } - } - }, - "System.Security.Cryptography.ProtectedData/9.0.4": { - "runtime": { - "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.425.16305" - } - } - } - } - }, - "libraries": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/16.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VNEky8JA15ci+oIDRGHITOGOpV4dILsf8pnn24QhDl2urtqgJ2IXiS/V2EtGU17P/+f6OeFQPJETaZXV9QOIZg==", - "path": "automapper/16.1.1", - "hashPath": "automapper.16.1.1.nupkg.sha512" - }, - "Azure.Core/1.47.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oPcncSsDHuxB8SC522z47xbp2+ttkcKv2YZ90KXhRKN0YQd2+7l1UURT9EBzUNEXtkLZUOAB5xbByMTrYRh3yA==", - "path": "azure.core/1.47.1", - "hashPath": "azure.core.1.47.1.nupkg.sha512" - }, - "Azure.Identity/1.14.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhNMwOTwT+I2wIcJKSdP0ADyB2aK+JaYWZxO8LSRDm5w77LFr0ykR9xmt2ZV5T1gaI7xU6iNFIh/yW1dAlpddQ==", - "path": "azure.identity/1.14.2", - "hashPath": "azure.identity.1.14.2.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Negotiate/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PkNdrRbU4togx1Eg3/0kcqpRLbtkfqhZ3aHudMQwbXnwcGJgxEgu65YLjqRD/tSp8szrH1XdefyyymTrfi0WPQ==", - "path": "microsoft.aspnetcore.authentication.negotiate/10.0.8", - "hashPath": "microsoft.aspnetcore.authentication.negotiate.10.0.8.nupkg.sha512" - }, - "Microsoft.AspNetCore.JsonPatch/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xGMQwR06DxQSpSUdYvUPLQkjcQUAXnFIUbNoafAcLvUXDnmKNEuddxKvrGoWDT7svt90wWet2Xve5uacO/pVtw==", - "path": "microsoft.aspnetcore.jsonpatch/10.0.8", - "hashPath": "microsoft.aspnetcore.jsonpatch.10.0.8.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LAZmDrEsExc11l7nyQ+efQHTKp4MOskAuPSgkW64LoxrJv2YnElc4IM1VGfIHNRspqVguO5TY5kz2YTRcNSHeQ==", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/10.0.8", - "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.10.0.8.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cw24xHE2QaWwyEG9GQwFbjboyabub6Vd80DIItUGENzcQOa/BEnTrXsg2GADqWTmY/3ycqk9ToLGjgvF/VRlGA==", - "path": "microsoft.aspnetcore.openapi/10.0.8", - "hashPath": "microsoft.aspnetcore.openapi.10.0.8.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" - }, - "Microsoft.Bcl.Cryptography/9.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YgZYAWzyNuPVtPq6WNm0bqOWNjYaWgl5mBWTGZyNoXitYBUYSp6iUB9AwK0V1mo793qRJUXz2t6UZrWITZSvuQ==", - "path": "microsoft.bcl.cryptography/9.0.4", - "hashPath": "microsoft.bcl.cryptography.9.0.4.nupkg.sha512" - }, - "Microsoft.Build.Framework/18.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sOSb+0J4G/jCBW/YqmRuL0eOMXgfw1KQLdC9TkbvfA5xs7uNm+PBQXJCOzSJGXtZcZrtXozcwxPmUiRUbmd7FA==", - "path": "microsoft.build.framework/18.0.2", - "hashPath": "microsoft.build.framework.18.0.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==", - "path": "microsoft.codeanalysis.common/5.0.0", - "hashPath": "microsoft.codeanalysis.common.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==", - "path": "microsoft.codeanalysis.csharp/5.0.0", - "hashPath": "microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Al/Q8B+yO8odSqGVpSvrShMFDvlQdIBU//F3E6Rb0YdiLSALE9wh/pvozPNnfmh5HDnvU+mkmSjpz4hQO++jaA==", - "path": "microsoft.codeanalysis.csharp.workspaces/5.0.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZbUmIvT6lqTNKiv06Jl5wf0MTMi1vQ1oH7ou4CLcs2C/no/L7EhP3T8y3XXvn9VbqMcJaJnEsNA1jwYUMgc5jg==", - "path": "microsoft.codeanalysis.workspaces.common/5.0.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/G+LVoAGMz6Ae8nm+PGLxSw+F5RjYx/J7irbTO5uKAPw1bxHyQJLc/YOnpDxt+EpPtYxvC9wvBsg/kETZp1F9Q==", - "path": "microsoft.codeanalysis.workspaces.msbuild/5.0.0", - "hashPath": "microsoft.codeanalysis.workspaces.msbuild.5.0.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/6.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-syGQmIUPAYYHAHyTD8FCkTNThpQWvoA7crnIQRMfp8dyB5A2cWU3fQexlRTFkVmV7S0TjVmthi0LJEFVjHo8AQ==", - "path": "microsoft.data.sqlclient/6.1.1", - "hashPath": "microsoft.data.sqlclient.6.1.1.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f+pRODTWX7Y67jXO3T5S2dIPZ9qMJNySjlZT/TKmWVNWe19N8jcWmHaqHnnchaq3gxEKv1SWVY5EFzOD06l41w==", - "path": "microsoft.data.sqlclient.sni.runtime/6.0.2", - "hashPath": "microsoft.data.sqlclient.sni.runtime.6.0.2.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EJx+fIBMgBlgD+ublKCn+GTOJkw3UqV7xOjYWBRVdUYyIm8UfvAsmSOPFiIInsWTHyMEYUJ9gCJY1jwX+6UB7w==", - "path": "microsoft.entityframeworkcore/10.0.8", - "hashPath": "microsoft.entityframeworkcore.10.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jbKDXWPZQhuPHygMnwzNOqxBADVcpRVytcKYZsA++QqhPkpF93Ta8o5mbJQGrARSjlkr9WtOaADV97EDMOZ7DA==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.8", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LlUUXdfqKFk7RlGExojVP8GI6hN9O21WjpxFnp5mLeGjd9iYdwywIgK9WOLvPM2hrknrRyHR/i43FQdw/oCrOw==", - "path": "microsoft.entityframeworkcore.design/10.0.8", - "hashPath": "microsoft.entityframeworkcore.design.10.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UU3diAD2wwZveye2rnrwaF/wvJ9tm5iL2fuY9TTap6/iGQK1OO29M1BzXZRlRPVH/dByt5w/pISBSFtyR7hTqw==", - "path": "microsoft.entityframeworkcore.relational/10.0.8", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A+FLIsTH9l5DG2iD6QW6Mfwlvr+BjWme/jJ2hvwmmENTr7lR1UWmgCtKCjDYcHxqdAD15bb4PgQnSzw12DV/pw==", - "path": "microsoft.entityframeworkcore.sqlserver/10.0.8", - "hashPath": "microsoft.entityframeworkcore.sqlserver.10.0.8.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vLyZVpxmduO2jx+76ggqnsA3m81kwMY3NkWciNTj5E+Nvqb0VihqCvQP89QsGONWp0AJwMZG+u9GzaCjDdFGNw==", - "path": "microsoft.extensions.dependencymodel/10.0.8", - "hashPath": "microsoft.extensions.dependencymodel.10.0.8.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.73.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NnDLS8QwYqO5ZZecL2oioi1LUqjh5Ewk4bMLzbgiXJbQmZhDLtKwLxL3DpGMlQAJ2G4KgEnvGPKa+OOgffeJbw==", - "path": "microsoft.identity.client/4.73.1", - "hashPath": "microsoft.identity.client.4.73.1.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/4.73.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xDztAiV2F0wI0W8FLKv5cbaBefyLD6JVaAsvgSN7bjWNCzGYzHbcOEIP5s4TJXUpQzMfUyBsFl1mC6Zmgpz0PQ==", - "path": "microsoft.identity.client.extensions.msal/4.73.1", - "hashPath": "microsoft.identity.client.extensions.msal.4.73.1.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "path": "microsoft.identitymodel.logging/8.14.0", - "hashPath": "microsoft.identitymodel.logging.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/7.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h+fHHBGokepmCX+QZXJk4Ij8OApCb2n2ktoDkNX5CXteXsOxTHMNgjPGpAwdJMFvAL7TtGarUnk3o97NmBq2QQ==", - "path": "microsoft.identitymodel.protocols/7.7.1", - "hashPath": "microsoft.identitymodel.protocols.7.7.1.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yT2Hdj8LpPbcT9C9KlLVxXl09C8zjFaVSaApdOwuecMuoV4s6Sof/mnTDz/+F/lILPIBvrWugR9CC7iRVZgbfQ==", - "path": "microsoft.identitymodel.protocols.openidconnect/7.7.1", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.7.1.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "path": "microsoft.identitymodel.tokens/8.14.0", - "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" - }, - "Microsoft.OpenApi/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u7QhXCISMQuab3flasb1hoaiERmUqyWsW7tmQODyILoQ7mJV5IRGM+2KKZYo0QUfC13evEOcHAb6TPWgqEQtrw==", - "path": "microsoft.openapi/2.4.1", - "hashPath": "microsoft.openapi.2.4.1.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.VisualStudio.SolutionPersistence/1.0.52": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oNv2JtYXhpdJrX63nibx1JT3uCESOBQ1LAk7Dtz/sr0+laW0KRM6eKp4CZ3MHDR2siIkKsY8MmUkeP5DKkQQ5w==", - "path": "microsoft.visualstudio.solutionpersistence/1.0.52", - "hashPath": "microsoft.visualstudio.solutionpersistence.1.0.52.nupkg.sha512" - }, - "Mono.TextTemplating/3.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", - "path": "mono.texttemplating/3.0.0", - "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "path": "newtonsoft.json/13.0.3", - "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "path": "newtonsoft.json.bson/1.0.2", - "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vgef8DPT411JU5JjHiDbr0WOxsIVuAvegPGtqmm4Na4JRl/264dfBJcGkiPHsAr5P+Vda+qN1rZKRtBl1rF9aA==", - "path": "swashbuckle.aspnetcore/10.1.7", - "hashPath": "swashbuckle.aspnetcore.10.1.7.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EjLibt/d/QuRv170GoihTbcPUpgzSFm2WKHhnGJFZQ03JYzfuitsM79azaAR8NBwRunU7yScSX6HRE5JUlrEMQ==", - "path": "swashbuckle.aspnetcore.swagger/10.1.7", - "hashPath": "swashbuckle.aspnetcore.swagger.10.1.7.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PuubO9BjvNn6U3D9kLpuWKY1JtziWw7SsGBq0age1E50uQjQ8Fzl8s0EwzrLfANqYJNgDnJi9l7N1QxcGVB2Zw==", - "path": "swashbuckle.aspnetcore.swaggergen/10.1.7", - "hashPath": "swashbuckle.aspnetcore.swaggergen.10.1.7.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iJo3ODyUb/M8Vm8AH1r9y9iAba0w95xsCn3zFVl96ISRHbTDWxi+l7oFVCZqUEdjd97B8VMDPnMliWAdomR8uw==", - "path": "swashbuckle.aspnetcore.swaggerui/10.1.7", - "hashPath": "swashbuckle.aspnetcore.swaggerui.10.1.7.nupkg.sha512" - }, - "System.ClientModel/1.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k2jKSO0X45IqhVOT9iQB4xralNN9foRQsRvXBTyRpAVxyzCJlG895T9qYrQWbcJ6OQXxOouJQ37x5nZH5XKK+A==", - "path": "system.clientmodel/1.5.1", - "hashPath": "system.clientmodel.1.5.1.nupkg.sha512" - }, - "System.CodeDom/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", - "path": "system.codedom/6.0.0", - "hashPath": "system.codedom.6.0.0.nupkg.sha512" - }, - "System.Composition/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", - "path": "system.composition/9.0.0", - "hashPath": "system.composition.9.0.0.nupkg.sha512" - }, - "System.Composition.AttributedModel/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", - "path": "system.composition.attributedmodel/9.0.0", - "hashPath": "system.composition.attributedmodel.9.0.0.nupkg.sha512" - }, - "System.Composition.Convention/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", - "path": "system.composition.convention/9.0.0", - "hashPath": "system.composition.convention.9.0.0.nupkg.sha512" - }, - "System.Composition.Hosting/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", - "path": "system.composition.hosting/9.0.0", - "hashPath": "system.composition.hosting.9.0.0.nupkg.sha512" - }, - "System.Composition.Runtime/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", - "path": "system.composition.runtime/9.0.0", - "hashPath": "system.composition.runtime.9.0.0.nupkg.sha512" - }, - "System.Composition.TypedParts/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", - "path": "system.composition.typedparts/9.0.0", - "hashPath": "system.composition.typedparts.9.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/9.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dvjqKp+2LpGid6phzrdrS/2mmEPxFl3jE1+L7614q4ZChKbLJCpHXg6sBILlCCED1t//EE+un/UdAetzIMpqnw==", - "path": "system.configuration.configurationmanager/9.0.4", - "hashPath": "system.configuration.configurationmanager.9.0.4.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VmFO1CBCUvWu9cV2XQSeKXRW2Gn76oZmuhhOk7GPDIvzaPoy3lVWHFExFyKNNJlQbGySUbor1bqa1Fc8CJCF/A==", - "path": "system.directoryservices.protocols/10.0.8", - "hashPath": "system.directoryservices.protocols.10.0.8.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/7.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rQkO1YbAjLwnDJSMpRhRtrc6XwIcEOcUvoEcge+evurpzSZM3UNK+MZfD3sKyTlYsvknZ6eJjSBfnmXqwOsT9Q==", - "path": "system.identitymodel.tokens.jwt/7.7.1", - "hashPath": "system.identitymodel.tokens.jwt.7.7.1.nupkg.sha512" - }, - "System.Memory.Data/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BVYuec3jV23EMRDeR7Dr1/qhx7369dZzJ9IWy2xylvb4YfXsrUxspWc4UWYid/tj4zZK58uGZqn2WQiaDMhmAg==", - "path": "system.memory.data/8.0.1", - "hashPath": "system.memory.data.8.0.1.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/9.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o94k2RKuAce3GeDMlUvIXlhVa1kWpJw95E6C9LwW0KlG0nj5+SgCiIxJ2Eroqb9sLtG1mEMbFttZIBZ13EJPvQ==", - "path": "system.security.cryptography.protecteddata/9.0.4", - "hashPath": "system.security.cryptography.protecteddata.9.0.4.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 0f1eb5e..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.exe b/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.exe deleted file mode 100644 index 86ae051..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.exe and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.pdb b/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.pdb deleted file mode 100644 index 09e4788..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.pdb and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json b/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json deleted file mode 100644 index bf15a00..0000000 --- a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net10.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "10.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "10.0.0" - } - ], - "configProperties": { - "System.GC.Server": true, - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json b/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json deleted file mode 100644 index 5576e88..0000000 --- a/bin/Debug/net10.0/buildcheck3/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json +++ /dev/null @@ -1 +0,0 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.SqlServer.Server.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.SqlServer.Server.dll deleted file mode 100644 index ddeaa86..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.SqlServer.Server.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Microsoft.VisualStudio.SolutionPersistence.dll b/bin/Debug/net10.0/buildcheck3/Microsoft.VisualStudio.SolutionPersistence.dll deleted file mode 100644 index 16a2843..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Microsoft.VisualStudio.SolutionPersistence.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Mono.TextTemplating.dll b/bin/Debug/net10.0/buildcheck3/Mono.TextTemplating.dll deleted file mode 100644 index 4a76511..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Mono.TextTemplating.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Newtonsoft.Json.Bson.dll b/bin/Debug/net10.0/buildcheck3/Newtonsoft.Json.Bson.dll deleted file mode 100644 index e9b1dd2..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Newtonsoft.Json.Bson.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Newtonsoft.Json.dll b/bin/Debug/net10.0/buildcheck3/Newtonsoft.Json.dll deleted file mode 100644 index d035c38..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Newtonsoft.Json.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Swashbuckle.AspNetCore.Swagger.dll b/bin/Debug/net10.0/buildcheck3/Swashbuckle.AspNetCore.Swagger.dll deleted file mode 100644 index adc65c3..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Swashbuckle.AspNetCore.SwaggerGen.dll b/bin/Debug/net10.0/buildcheck3/Swashbuckle.AspNetCore.SwaggerGen.dll deleted file mode 100644 index 7365f07..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/Swashbuckle.AspNetCore.SwaggerUI.dll b/bin/Debug/net10.0/buildcheck3/Swashbuckle.AspNetCore.SwaggerUI.dll deleted file mode 100644 index af2c3c2..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.ClientModel.dll b/bin/Debug/net10.0/buildcheck3/System.ClientModel.dll deleted file mode 100644 index 0caead2..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.ClientModel.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.CodeDom.dll b/bin/Debug/net10.0/buildcheck3/System.CodeDom.dll deleted file mode 100644 index 54c82b6..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.CodeDom.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.Composition.AttributedModel.dll b/bin/Debug/net10.0/buildcheck3/System.Composition.AttributedModel.dll deleted file mode 100644 index 2664688..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.Composition.AttributedModel.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.Composition.Convention.dll b/bin/Debug/net10.0/buildcheck3/System.Composition.Convention.dll deleted file mode 100644 index 40f6537..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.Composition.Convention.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.Composition.Hosting.dll b/bin/Debug/net10.0/buildcheck3/System.Composition.Hosting.dll deleted file mode 100644 index b1cce85..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.Composition.Hosting.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.Composition.Runtime.dll b/bin/Debug/net10.0/buildcheck3/System.Composition.Runtime.dll deleted file mode 100644 index c30bbbb..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.Composition.Runtime.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.Composition.TypedParts.dll b/bin/Debug/net10.0/buildcheck3/System.Composition.TypedParts.dll deleted file mode 100644 index 1556319..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.Composition.TypedParts.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.Configuration.ConfigurationManager.dll b/bin/Debug/net10.0/buildcheck3/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index 505f649..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.DirectoryServices.Protocols.dll b/bin/Debug/net10.0/buildcheck3/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 9eefb2d..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.IdentityModel.Tokens.Jwt.dll b/bin/Debug/net10.0/buildcheck3/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index c2d8ecb..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.Memory.Data.dll b/bin/Debug/net10.0/buildcheck3/System.Memory.Data.dll deleted file mode 100644 index 9282c37..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.Memory.Data.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net10.0/buildcheck3/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 4151fc8..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/appsettings.Development.json b/bin/Debug/net10.0/buildcheck3/appsettings.Development.json deleted file mode 100644 index cf398c2..0000000 --- a/bin/Debug/net10.0/buildcheck3/appsettings.Development.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ConnectionStrings": { - "Context": "Server=.;Database=SSP;TrustServerCertificate=True;Encrypt=False;Trusted_Connection=True" - } -} diff --git a/bin/Debug/net10.0/buildcheck3/appsettings.json b/bin/Debug/net10.0/buildcheck3/appsettings.json deleted file mode 100644 index 005b7be..0000000 --- a/bin/Debug/net10.0/buildcheck3/appsettings.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "Context": "Server=RZ1VCMSQL001\\MSSSP;Database=SSP;TrustServerCertificate=True;Encrypt=False;Integrated Security=SSPI" - } -} \ No newline at end of file diff --git a/bin/Debug/net10.0/buildcheck3/buildcheck/Microsoft.SelfService.Portal.Core.API.deps.json b/bin/Debug/net10.0/buildcheck3/buildcheck/Microsoft.SelfService.Portal.Core.API.deps.json deleted file mode 100644 index c0e0bd0..0000000 --- a/bin/Debug/net10.0/buildcheck3/buildcheck/Microsoft.SelfService.Portal.Core.API.deps.json +++ /dev/null @@ -1,1290 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "dependencies": { - "AutoMapper": "16.1.1", - "Microsoft.AspNetCore.Authentication.Negotiate": "10.0.8", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "10.0.8", - "Microsoft.AspNetCore.OpenApi": "10.0.8", - "Microsoft.EntityFrameworkCore": "10.0.8", - "Microsoft.EntityFrameworkCore.Design": "10.0.8", - "Microsoft.EntityFrameworkCore.SqlServer": "10.0.8", - "Swashbuckle.AspNetCore": "10.1.7" - }, - "runtime": { - "Microsoft.SelfService.Portal.Core.API.dll": {} - } - }, - "AutoMapper/16.1.1": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0" - }, - "runtime": { - "lib/net10.0/AutoMapper.dll": { - "assemblyVersion": "16.0.0.0", - "fileVersion": "16.1.1.0" - } - } - }, - "Azure.Core/1.47.1": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "8.0.0", - "System.ClientModel": "1.5.1", - "System.Memory.Data": "8.0.1" - }, - "runtime": { - "lib/net8.0/Azure.Core.dll": { - "assemblyVersion": "1.47.1.0", - "fileVersion": "1.4700.125.36505" - } - } - }, - "Azure.Identity/1.14.2": { - "dependencies": { - "Azure.Core": "1.47.1", - "Microsoft.Identity.Client": "4.73.1", - "Microsoft.Identity.Client.Extensions.Msal": "4.73.1" - }, - "runtime": { - "lib/net8.0/Azure.Identity.dll": { - "assemblyVersion": "1.14.2.0", - "fileVersion": "1.1400.225.36004" - } - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/10.0.8": { - "dependencies": { - "System.DirectoryServices.Protocols": "10.0.8" - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/10.0.8": { - "dependencies": { - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.JsonPatch.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/10.0.8": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "10.0.8", - "Newtonsoft.Json": "13.0.3", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.AspNetCore.OpenApi/10.0.8": { - "dependencies": { - "Microsoft.OpenApi": "2.4.1" - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "Microsoft.Bcl.Cryptography/9.0.4": { - "runtime": { - "lib/net9.0/Microsoft.Bcl.Cryptography.dll": { - "assemblyVersion": "9.0.0.4", - "fileVersion": "9.0.425.16305" - } - } - }, - "Microsoft.Build.Framework/18.0.2": { - "runtime": { - "lib/net10.0/Microsoft.Build.Framework.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "18.0.2.52102" - } - } - }, - "Microsoft.CodeAnalysis.Common/5.0.0": { - "runtime": { - "lib/net9.0/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/5.0.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "5.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "5.0.0", - "Microsoft.CodeAnalysis.Common": "5.0.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", - "System.Composition": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.Common": "5.0.0", - "System.Composition": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Build.Framework": "18.0.2", - "Microsoft.CodeAnalysis.Workspaces.Common": "5.0.0", - "Microsoft.VisualStudio.SolutionPersistence": "1.0.52", - "Newtonsoft.Json": "13.0.3", - "System.Composition": "9.0.0" - }, - "runtime": { - "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - }, - "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.25.56712" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Data.SqlClient/6.1.1": { - "dependencies": { - "Azure.Core": "1.47.1", - "Azure.Identity": "1.14.2", - "Microsoft.Bcl.Cryptography": "9.0.4", - "Microsoft.Data.SqlClient.SNI.runtime": "6.0.2", - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.7.1", - "Microsoft.SqlServer.Server": "1.0.0", - "System.Configuration.ConfigurationManager": "9.0.4" - }, - "runtime": { - "lib/net9.0/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.11.25226.3" - } - }, - "resources": { - "lib/net9.0/cs/Microsoft.Data.SqlClient.resources.dll": { - "locale": "cs" - }, - "lib/net9.0/de/Microsoft.Data.SqlClient.resources.dll": { - "locale": "de" - }, - "lib/net9.0/es/Microsoft.Data.SqlClient.resources.dll": { - "locale": "es" - }, - "lib/net9.0/fr/Microsoft.Data.SqlClient.resources.dll": { - "locale": "fr" - }, - "lib/net9.0/it/Microsoft.Data.SqlClient.resources.dll": { - "locale": "it" - }, - "lib/net9.0/ja/Microsoft.Data.SqlClient.resources.dll": { - "locale": "ja" - }, - "lib/net9.0/ko/Microsoft.Data.SqlClient.resources.dll": { - "locale": "ko" - }, - "lib/net9.0/pl/Microsoft.Data.SqlClient.resources.dll": { - "locale": "pl" - }, - "lib/net9.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { - "locale": "pt-BR" - }, - "lib/net9.0/ru/Microsoft.Data.SqlClient.resources.dll": { - "locale": "ru" - }, - "lib/net9.0/tr/Microsoft.Data.SqlClient.resources.dll": { - "locale": "tr" - }, - "lib/net9.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net9.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { - "locale": "zh-Hant" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.11.25226.3" - }, - "runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.11.25226.3" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": { - "runtimeTargets": { - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "6.2.0.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "6.2.0.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "6.2.0.0" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.8": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.8" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.8": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.EntityFrameworkCore.Design/10.0.8": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Build.Framework": "18.0.2", - "Microsoft.CodeAnalysis.CSharp": "5.0.0", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.0.0", - "Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.0.0", - "Microsoft.EntityFrameworkCore.Relational": "10.0.8", - "Microsoft.Extensions.DependencyModel": "10.0.8", - "Mono.TextTemplating": "3.0.0", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.8": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.8" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/10.0.8": { - "dependencies": { - "Microsoft.Data.SqlClient": "6.1.1", - "Microsoft.EntityFrameworkCore.Relational": "10.0.8" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "10.0.8.0", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.Extensions.DependencyModel/10.0.8": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "10.0.0.8", - "fileVersion": "10.0.826.23019" - } - } - }, - "Microsoft.Identity.Client/4.73.1": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.73.1.0", - "fileVersion": "4.73.1.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/4.73.1": { - "dependencies": { - "Microsoft.Identity.Client": "4.73.1", - "System.Security.Cryptography.ProtectedData": "9.0.4" - }, - "runtime": { - "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "4.73.1.0", - "fileVersion": "4.73.1.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.IdentityModel.Protocols/7.7.1": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "7.7.1.0", - "fileVersion": "7.7.1.50719" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "7.7.1", - "System.IdentityModel.Tokens.Jwt": "7.7.1" - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "7.7.1.0", - "fileVersion": "7.7.1.50719" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Microsoft.OpenApi/2.4.1": { - "runtime": { - "lib/net8.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.VisualStudio.SolutionPersistence/1.0.52": { - "runtime": { - "lib/net8.0/Microsoft.VisualStudio.SolutionPersistence.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.52.6595" - } - } - }, - "Mono.TextTemplating/3.0.0": { - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "runtime": { - "lib/net6.0/Mono.TextTemplating.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.0.0.1" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "dependencies": { - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.22727" - } - } - }, - "Swashbuckle.AspNetCore/10.1.7": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "10.1.7", - "Swashbuckle.AspNetCore.SwaggerGen": "10.1.7", - "Swashbuckle.AspNetCore.SwaggerUI": "10.1.7" - } - }, - "Swashbuckle.AspNetCore.Swagger/10.1.7": { - "dependencies": { - "Microsoft.OpenApi": "2.4.1" - }, - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "10.1.7.0", - "fileVersion": "10.1.7.2427" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/10.1.7": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "10.1.7" - }, - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "10.1.7.0", - "fileVersion": "10.1.7.2427" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/10.1.7": { - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "10.1.7.0", - "fileVersion": "10.1.7.2427" - } - } - }, - "System.ClientModel/1.5.1": { - "dependencies": { - "System.Memory.Data": "8.0.1" - }, - "runtime": { - "lib/net8.0/System.ClientModel.dll": { - "assemblyVersion": "1.5.1.0", - "fileVersion": "1.500.125.36405" - } - } - }, - "System.CodeDom/6.0.0": { - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition/9.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "9.0.0", - "System.Composition.Convention": "9.0.0", - "System.Composition.Hosting": "9.0.0", - "System.Composition.Runtime": "9.0.0", - "System.Composition.TypedParts": "9.0.0" - } - }, - "System.Composition.AttributedModel/9.0.0": { - "runtime": { - "lib/net9.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Composition.Convention/9.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "9.0.0" - }, - "runtime": { - "lib/net9.0/System.Composition.Convention.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Composition.Hosting/9.0.0": { - "dependencies": { - "System.Composition.Runtime": "9.0.0" - }, - "runtime": { - "lib/net9.0/System.Composition.Hosting.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Composition.Runtime/9.0.0": { - "runtime": { - "lib/net9.0/System.Composition.Runtime.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Composition.TypedParts/9.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "9.0.0", - "System.Composition.Hosting": "9.0.0", - "System.Composition.Runtime": "9.0.0" - }, - "runtime": { - "lib/net9.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.24.52809" - } - } - }, - "System.Configuration.ConfigurationManager/9.0.4": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "9.0.4" - }, - "runtime": { - "lib/net9.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.425.16305" - } - } - }, - "System.DirectoryServices.Protocols/10.0.8": { - "runtime": { - "lib/net10.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "10.0.0.8", - "fileVersion": "10.0.826.23019" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "10.0.0.8", - "fileVersion": "10.0.826.23019" - }, - "runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "10.0.0.8", - "fileVersion": "10.0.826.23019" - }, - "runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "10.0.0.8", - "fileVersion": "10.0.826.23019" - } - } - }, - "System.IdentityModel.Tokens.Jwt/7.7.1": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "7.7.1.0", - "fileVersion": "7.7.1.50719" - } - } - }, - "System.Memory.Data/8.0.1": { - "runtime": { - "lib/net8.0/System.Memory.Data.dll": { - "assemblyVersion": "8.0.0.1", - "fileVersion": "8.0.1024.46610" - } - } - }, - "System.Security.Cryptography.ProtectedData/9.0.4": { - "runtime": { - "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.425.16305" - } - } - } - } - }, - "libraries": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/16.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VNEky8JA15ci+oIDRGHITOGOpV4dILsf8pnn24QhDl2urtqgJ2IXiS/V2EtGU17P/+f6OeFQPJETaZXV9QOIZg==", - "path": "automapper/16.1.1", - "hashPath": "automapper.16.1.1.nupkg.sha512" - }, - "Azure.Core/1.47.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oPcncSsDHuxB8SC522z47xbp2+ttkcKv2YZ90KXhRKN0YQd2+7l1UURT9EBzUNEXtkLZUOAB5xbByMTrYRh3yA==", - "path": "azure.core/1.47.1", - "hashPath": "azure.core.1.47.1.nupkg.sha512" - }, - "Azure.Identity/1.14.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhNMwOTwT+I2wIcJKSdP0ADyB2aK+JaYWZxO8LSRDm5w77LFr0ykR9xmt2ZV5T1gaI7xU6iNFIh/yW1dAlpddQ==", - "path": "azure.identity/1.14.2", - "hashPath": "azure.identity.1.14.2.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Negotiate/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PkNdrRbU4togx1Eg3/0kcqpRLbtkfqhZ3aHudMQwbXnwcGJgxEgu65YLjqRD/tSp8szrH1XdefyyymTrfi0WPQ==", - "path": "microsoft.aspnetcore.authentication.negotiate/10.0.8", - "hashPath": "microsoft.aspnetcore.authentication.negotiate.10.0.8.nupkg.sha512" - }, - "Microsoft.AspNetCore.JsonPatch/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xGMQwR06DxQSpSUdYvUPLQkjcQUAXnFIUbNoafAcLvUXDnmKNEuddxKvrGoWDT7svt90wWet2Xve5uacO/pVtw==", - "path": "microsoft.aspnetcore.jsonpatch/10.0.8", - "hashPath": "microsoft.aspnetcore.jsonpatch.10.0.8.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LAZmDrEsExc11l7nyQ+efQHTKp4MOskAuPSgkW64LoxrJv2YnElc4IM1VGfIHNRspqVguO5TY5kz2YTRcNSHeQ==", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/10.0.8", - "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.10.0.8.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cw24xHE2QaWwyEG9GQwFbjboyabub6Vd80DIItUGENzcQOa/BEnTrXsg2GADqWTmY/3ycqk9ToLGjgvF/VRlGA==", - "path": "microsoft.aspnetcore.openapi/10.0.8", - "hashPath": "microsoft.aspnetcore.openapi.10.0.8.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==", - "path": "microsoft.bcl.asyncinterfaces/8.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512" - }, - "Microsoft.Bcl.Cryptography/9.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YgZYAWzyNuPVtPq6WNm0bqOWNjYaWgl5mBWTGZyNoXitYBUYSp6iUB9AwK0V1mo793qRJUXz2t6UZrWITZSvuQ==", - "path": "microsoft.bcl.cryptography/9.0.4", - "hashPath": "microsoft.bcl.cryptography.9.0.4.nupkg.sha512" - }, - "Microsoft.Build.Framework/18.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sOSb+0J4G/jCBW/YqmRuL0eOMXgfw1KQLdC9TkbvfA5xs7uNm+PBQXJCOzSJGXtZcZrtXozcwxPmUiRUbmd7FA==", - "path": "microsoft.build.framework/18.0.2", - "hashPath": "microsoft.build.framework.18.0.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZXRAdvH6GiDeHRyd3q/km8Z44RoM6FBWHd+gen/la81mVnAdHTEsEkO5J0TCNXBymAcx5UYKt5TvgKBhaLJEow==", - "path": "microsoft.codeanalysis.common/5.0.0", - "hashPath": "microsoft.codeanalysis.common.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DSyJ9bk+ATuDy7fp2Zt0mJStDVKbBoiz1DyfAwSa+k4H4IwykAUcV3URelw5b8/iVbfSaOwkwmPUZH6opZKCw==", - "path": "microsoft.codeanalysis.csharp/5.0.0", - "hashPath": "microsoft.codeanalysis.csharp.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Al/Q8B+yO8odSqGVpSvrShMFDvlQdIBU//F3E6Rb0YdiLSALE9wh/pvozPNnfmh5HDnvU+mkmSjpz4hQO++jaA==", - "path": "microsoft.codeanalysis.csharp.workspaces/5.0.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZbUmIvT6lqTNKiv06Jl5wf0MTMi1vQ1oH7ou4CLcs2C/no/L7EhP3T8y3XXvn9VbqMcJaJnEsNA1jwYUMgc5jg==", - "path": "microsoft.codeanalysis.workspaces.common/5.0.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.MSBuild/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/G+LVoAGMz6Ae8nm+PGLxSw+F5RjYx/J7irbTO5uKAPw1bxHyQJLc/YOnpDxt+EpPtYxvC9wvBsg/kETZp1F9Q==", - "path": "microsoft.codeanalysis.workspaces.msbuild/5.0.0", - "hashPath": "microsoft.codeanalysis.workspaces.msbuild.5.0.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/6.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-syGQmIUPAYYHAHyTD8FCkTNThpQWvoA7crnIQRMfp8dyB5A2cWU3fQexlRTFkVmV7S0TjVmthi0LJEFVjHo8AQ==", - "path": "microsoft.data.sqlclient/6.1.1", - "hashPath": "microsoft.data.sqlclient.6.1.1.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/6.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f+pRODTWX7Y67jXO3T5S2dIPZ9qMJNySjlZT/TKmWVNWe19N8jcWmHaqHnnchaq3gxEKv1SWVY5EFzOD06l41w==", - "path": "microsoft.data.sqlclient.sni.runtime/6.0.2", - "hashPath": "microsoft.data.sqlclient.sni.runtime.6.0.2.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EJx+fIBMgBlgD+ublKCn+GTOJkw3UqV7xOjYWBRVdUYyIm8UfvAsmSOPFiIInsWTHyMEYUJ9gCJY1jwX+6UB7w==", - "path": "microsoft.entityframeworkcore/10.0.8", - "hashPath": "microsoft.entityframeworkcore.10.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jbKDXWPZQhuPHygMnwzNOqxBADVcpRVytcKYZsA++QqhPkpF93Ta8o5mbJQGrARSjlkr9WtOaADV97EDMOZ7DA==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.8", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LlUUXdfqKFk7RlGExojVP8GI6hN9O21WjpxFnp5mLeGjd9iYdwywIgK9WOLvPM2hrknrRyHR/i43FQdw/oCrOw==", - "path": "microsoft.entityframeworkcore.design/10.0.8", - "hashPath": "microsoft.entityframeworkcore.design.10.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UU3diAD2wwZveye2rnrwaF/wvJ9tm5iL2fuY9TTap6/iGQK1OO29M1BzXZRlRPVH/dByt5w/pISBSFtyR7hTqw==", - "path": "microsoft.entityframeworkcore.relational/10.0.8", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A+FLIsTH9l5DG2iD6QW6Mfwlvr+BjWme/jJ2hvwmmENTr7lR1UWmgCtKCjDYcHxqdAD15bb4PgQnSzw12DV/pw==", - "path": "microsoft.entityframeworkcore.sqlserver/10.0.8", - "hashPath": "microsoft.entityframeworkcore.sqlserver.10.0.8.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vLyZVpxmduO2jx+76ggqnsA3m81kwMY3NkWciNTj5E+Nvqb0VihqCvQP89QsGONWp0AJwMZG+u9GzaCjDdFGNw==", - "path": "microsoft.extensions.dependencymodel/10.0.8", - "hashPath": "microsoft.extensions.dependencymodel.10.0.8.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.73.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NnDLS8QwYqO5ZZecL2oioi1LUqjh5Ewk4bMLzbgiXJbQmZhDLtKwLxL3DpGMlQAJ2G4KgEnvGPKa+OOgffeJbw==", - "path": "microsoft.identity.client/4.73.1", - "hashPath": "microsoft.identity.client.4.73.1.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/4.73.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xDztAiV2F0wI0W8FLKv5cbaBefyLD6JVaAsvgSN7bjWNCzGYzHbcOEIP5s4TJXUpQzMfUyBsFl1mC6Zmgpz0PQ==", - "path": "microsoft.identity.client.extensions.msal/4.73.1", - "hashPath": "microsoft.identity.client.extensions.msal.4.73.1.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "hashPath": "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "path": "microsoft.identitymodel.logging/8.14.0", - "hashPath": "microsoft.identitymodel.logging.8.14.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/7.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h+fHHBGokepmCX+QZXJk4Ij8OApCb2n2ktoDkNX5CXteXsOxTHMNgjPGpAwdJMFvAL7TtGarUnk3o97NmBq2QQ==", - "path": "microsoft.identitymodel.protocols/7.7.1", - "hashPath": "microsoft.identitymodel.protocols.7.7.1.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yT2Hdj8LpPbcT9C9KlLVxXl09C8zjFaVSaApdOwuecMuoV4s6Sof/mnTDz/+F/lILPIBvrWugR9CC7iRVZgbfQ==", - "path": "microsoft.identitymodel.protocols.openidconnect/7.7.1", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.7.1.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "path": "microsoft.identitymodel.tokens/8.14.0", - "hashPath": "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" - }, - "Microsoft.OpenApi/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u7QhXCISMQuab3flasb1hoaiERmUqyWsW7tmQODyILoQ7mJV5IRGM+2KKZYo0QUfC13evEOcHAb6TPWgqEQtrw==", - "path": "microsoft.openapi/2.4.1", - "hashPath": "microsoft.openapi.2.4.1.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.VisualStudio.SolutionPersistence/1.0.52": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oNv2JtYXhpdJrX63nibx1JT3uCESOBQ1LAk7Dtz/sr0+laW0KRM6eKp4CZ3MHDR2siIkKsY8MmUkeP5DKkQQ5w==", - "path": "microsoft.visualstudio.solutionpersistence/1.0.52", - "hashPath": "microsoft.visualstudio.solutionpersistence.1.0.52.nupkg.sha512" - }, - "Mono.TextTemplating/3.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", - "path": "mono.texttemplating/3.0.0", - "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "path": "newtonsoft.json/13.0.3", - "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "path": "newtonsoft.json.bson/1.0.2", - "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vgef8DPT411JU5JjHiDbr0WOxsIVuAvegPGtqmm4Na4JRl/264dfBJcGkiPHsAr5P+Vda+qN1rZKRtBl1rF9aA==", - "path": "swashbuckle.aspnetcore/10.1.7", - "hashPath": "swashbuckle.aspnetcore.10.1.7.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EjLibt/d/QuRv170GoihTbcPUpgzSFm2WKHhnGJFZQ03JYzfuitsM79azaAR8NBwRunU7yScSX6HRE5JUlrEMQ==", - "path": "swashbuckle.aspnetcore.swagger/10.1.7", - "hashPath": "swashbuckle.aspnetcore.swagger.10.1.7.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PuubO9BjvNn6U3D9kLpuWKY1JtziWw7SsGBq0age1E50uQjQ8Fzl8s0EwzrLfANqYJNgDnJi9l7N1QxcGVB2Zw==", - "path": "swashbuckle.aspnetcore.swaggergen/10.1.7", - "hashPath": "swashbuckle.aspnetcore.swaggergen.10.1.7.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/10.1.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iJo3ODyUb/M8Vm8AH1r9y9iAba0w95xsCn3zFVl96ISRHbTDWxi+l7oFVCZqUEdjd97B8VMDPnMliWAdomR8uw==", - "path": "swashbuckle.aspnetcore.swaggerui/10.1.7", - "hashPath": "swashbuckle.aspnetcore.swaggerui.10.1.7.nupkg.sha512" - }, - "System.ClientModel/1.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k2jKSO0X45IqhVOT9iQB4xralNN9foRQsRvXBTyRpAVxyzCJlG895T9qYrQWbcJ6OQXxOouJQ37x5nZH5XKK+A==", - "path": "system.clientmodel/1.5.1", - "hashPath": "system.clientmodel.1.5.1.nupkg.sha512" - }, - "System.CodeDom/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", - "path": "system.codedom/6.0.0", - "hashPath": "system.codedom.6.0.0.nupkg.sha512" - }, - "System.Composition/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", - "path": "system.composition/9.0.0", - "hashPath": "system.composition.9.0.0.nupkg.sha512" - }, - "System.Composition.AttributedModel/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", - "path": "system.composition.attributedmodel/9.0.0", - "hashPath": "system.composition.attributedmodel.9.0.0.nupkg.sha512" - }, - "System.Composition.Convention/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", - "path": "system.composition.convention/9.0.0", - "hashPath": "system.composition.convention.9.0.0.nupkg.sha512" - }, - "System.Composition.Hosting/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", - "path": "system.composition.hosting/9.0.0", - "hashPath": "system.composition.hosting.9.0.0.nupkg.sha512" - }, - "System.Composition.Runtime/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", - "path": "system.composition.runtime/9.0.0", - "hashPath": "system.composition.runtime.9.0.0.nupkg.sha512" - }, - "System.Composition.TypedParts/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", - "path": "system.composition.typedparts/9.0.0", - "hashPath": "system.composition.typedparts.9.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/9.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dvjqKp+2LpGid6phzrdrS/2mmEPxFl3jE1+L7614q4ZChKbLJCpHXg6sBILlCCED1t//EE+un/UdAetzIMpqnw==", - "path": "system.configuration.configurationmanager/9.0.4", - "hashPath": "system.configuration.configurationmanager.9.0.4.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/10.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VmFO1CBCUvWu9cV2XQSeKXRW2Gn76oZmuhhOk7GPDIvzaPoy3lVWHFExFyKNNJlQbGySUbor1bqa1Fc8CJCF/A==", - "path": "system.directoryservices.protocols/10.0.8", - "hashPath": "system.directoryservices.protocols.10.0.8.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/7.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rQkO1YbAjLwnDJSMpRhRtrc6XwIcEOcUvoEcge+evurpzSZM3UNK+MZfD3sKyTlYsvknZ6eJjSBfnmXqwOsT9Q==", - "path": "system.identitymodel.tokens.jwt/7.7.1", - "hashPath": "system.identitymodel.tokens.jwt.7.7.1.nupkg.sha512" - }, - "System.Memory.Data/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BVYuec3jV23EMRDeR7Dr1/qhx7369dZzJ9IWy2xylvb4YfXsrUxspWc4UWYid/tj4zZK58uGZqn2WQiaDMhmAg==", - "path": "system.memory.data/8.0.1", - "hashPath": "system.memory.data.8.0.1.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/9.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o94k2RKuAce3GeDMlUvIXlhVa1kWpJw95E6C9LwW0KlG0nj5+SgCiIxJ2Eroqb9sLtG1mEMbFttZIBZ13EJPvQ==", - "path": "system.security.cryptography.protecteddata/9.0.4", - "hashPath": "system.security.cryptography.protecteddata.9.0.4.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/bin/Debug/net10.0/buildcheck3/buildcheck/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json b/bin/Debug/net10.0/buildcheck3/buildcheck/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json deleted file mode 100644 index bf15a00..0000000 --- a/bin/Debug/net10.0/buildcheck3/buildcheck/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net10.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "10.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "10.0.0" - } - ], - "configProperties": { - "System.GC.Server": true, - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/bin/Debug/net10.0/buildcheck3/buildcheck/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json b/bin/Debug/net10.0/buildcheck3/buildcheck/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json deleted file mode 100644 index 5576e88..0000000 --- a/bin/Debug/net10.0/buildcheck3/buildcheck/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json +++ /dev/null @@ -1 +0,0 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/bin/Debug/net10.0/buildcheck3/buildcheck/appsettings.Development.json b/bin/Debug/net10.0/buildcheck3/buildcheck/appsettings.Development.json deleted file mode 100644 index cf398c2..0000000 --- a/bin/Debug/net10.0/buildcheck3/buildcheck/appsettings.Development.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ConnectionStrings": { - "Context": "Server=.;Database=SSP;TrustServerCertificate=True;Encrypt=False;Trusted_Connection=True" - } -} diff --git a/bin/Debug/net10.0/buildcheck3/buildcheck/appsettings.json b/bin/Debug/net10.0/buildcheck3/buildcheck/appsettings.json deleted file mode 100644 index 005b7be..0000000 --- a/bin/Debug/net10.0/buildcheck3/buildcheck/appsettings.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "Context": "Server=RZ1VCMSQL001\\MSSSP;Database=SSP;TrustServerCertificate=True;Encrypt=False;Integrated Security=SSPI" - } -} \ No newline at end of file diff --git a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index fa3b62e..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index de0032e..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 52ddf61..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 9c9e5c3..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index fe7a8c8..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/cs/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index 0b81da6..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/cs/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 3a2887c..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 3bef0e7..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 19c9b77..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 5e1cc23..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 71227fc..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/de/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/de/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index 76ca46d..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/de/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 3a50733..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 7b14221..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 59c80c7..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index de991ad..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index ffe4e81..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/es/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/es/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index e340c59..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/es/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 4eb6122..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 35b8d36..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 44e0af4..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index ae46f62..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 2870de8..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/fr/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index 85be381..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/fr/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 31d7841..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4f5ea19..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index f29a9ee..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index c62df50..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 738856c..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/it/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/it/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index 4297c71..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/it/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 118b9b8..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 8d5c43a..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 0a04bbf..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index c88dd66..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 7400f4a..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/ja/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index 613a787..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ja/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 036e931..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 7305396..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 7735e46..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index adead79..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 9f8ffe3..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/ko/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index c98361b..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ko/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index e318959..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 89c6efc..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 62dda99..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 82b3fa2..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 9db06d4..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/pl/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index 20086f0..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pl/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 8be5aa7..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index a263248..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 04f70a6..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 3a16748..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8b9f7ce..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index 5b4bd1b..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/pt-BR/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index bd7b2a2..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 6feb49f..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 0b35a9d..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 413ac6a..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index b5e3f64..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/ru/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index 67159aa..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/ru/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net10.0/buildcheck3/runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 09206c0..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/runtimes/linux/lib/net10.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net10.0/buildcheck3/runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 7aaf95e..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/runtimes/osx/lib/net10.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll b/bin/Debug/net10.0/buildcheck3/runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 0baeb08..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/runtimes/unix/lib/net9.0/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net10.0/buildcheck3/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index ce09630..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net10.0/buildcheck3/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index a0083b1..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net10.0/buildcheck3/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index 36a2409..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net10.0/buildcheck3/runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 63ab7ba..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/runtimes/win/lib/net10.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll b/bin/Debug/net10.0/buildcheck3/runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll deleted file mode 100644 index f983fa9..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/runtimes/win/lib/net9.0/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index c219a07..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 6697523..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 79301b0..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 28739df..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e5f35c2..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/tr/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index 1111f9a..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/tr/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 215fe77..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 53d30cc..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 62e7fc1..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index c1b4544..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 712df48..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index 7eeebbc..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hans/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d96f8c8..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 23c31b7..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll deleted file mode 100644 index 65f24ab..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 7d3ed5d..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 14fee21..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.Data.SqlClient.resources.dll b/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.Data.SqlClient.resources.dll deleted file mode 100644 index c1aa37b..0000000 Binary files a/bin/Debug/net10.0/buildcheck3/zh-Hant/Microsoft.Data.SqlClient.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/bin/Debug/net7.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll deleted file mode 100644 index 8df3ce1..0000000 Binary files a/bin/Debug/net7.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll and /dev/null differ diff --git a/bin/Debug/net7.0/AutoMapper.dll b/bin/Debug/net7.0/AutoMapper.dll deleted file mode 100644 index b33d3d0..0000000 Binary files a/bin/Debug/net7.0/AutoMapper.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Azure.Core.dll b/bin/Debug/net7.0/Azure.Core.dll deleted file mode 100644 index aa966ba..0000000 Binary files a/bin/Debug/net7.0/Azure.Core.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Azure.Identity.dll b/bin/Debug/net7.0/Azure.Identity.dll deleted file mode 100644 index eaab465..0000000 Binary files a/bin/Debug/net7.0/Azure.Identity.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Humanizer.dll b/bin/Debug/net7.0/Humanizer.dll deleted file mode 100644 index c9a7ef8..0000000 Binary files a/bin/Debug/net7.0/Humanizer.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll deleted file mode 100644 index 76937c0..0000000 Binary files a/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll deleted file mode 100644 index d2d6643..0000000 Binary files a/bin/Debug/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll deleted file mode 100644 index 67976a4..0000000 Binary files a/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll deleted file mode 100644 index 9185e39..0000000 Binary files a/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll deleted file mode 100644 index 48f95b5..0000000 Binary files a/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll deleted file mode 100644 index e0b7296..0000000 Binary files a/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.Build.Framework.dll b/bin/Debug/net7.0/Microsoft.Build.Framework.dll deleted file mode 100644 index dcebf91..0000000 Binary files a/bin/Debug/net7.0/Microsoft.Build.Framework.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.Build.dll b/bin/Debug/net7.0/Microsoft.Build.dll deleted file mode 100644 index b9d1fa9..0000000 Binary files a/bin/Debug/net7.0/Microsoft.Build.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll deleted file mode 100644 index e070bd5..0000000 Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll deleted file mode 100644 index fad30cf..0000000 Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll deleted file mode 100644 index eb2748f..0000000 Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index 6506b81..0000000 Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Elfie.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.Elfie.dll deleted file mode 100644 index b131340..0000000 Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Elfie.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Features.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.Features.dll deleted file mode 100644 index 70ccdf7..0000000 Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Features.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll deleted file mode 100644 index f21b880..0000000 Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll deleted file mode 100644 index 9da1e74..0000000 Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.dll deleted file mode 100644 index ab9a24c..0000000 Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Workspaces.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll deleted file mode 100644 index f35e108..0000000 Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll b/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll deleted file mode 100644 index bd9b405..0000000 Binary files a/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.DiaSymReader.dll b/bin/Debug/net7.0/Microsoft.DiaSymReader.dll deleted file mode 100644 index 7a3a497..0000000 Binary files a/bin/Debug/net7.0/Microsoft.DiaSymReader.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll b/bin/Debug/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll deleted file mode 100644 index 0d69a80..0000000 Binary files a/bin/Debug/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index bbe5da9..0000000 Binary files a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll deleted file mode 100644 index d0866eb..0000000 Binary files a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index 5732007..0000000 Binary files a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll deleted file mode 100644 index 21a03f8..0000000 Binary files a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index c8a8af4..0000000 Binary files a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll b/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll deleted file mode 100644 index c4fe0b9..0000000 Binary files a/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.Extensions.Features.dll b/bin/Debug/net7.0/Microsoft.Extensions.Features.dll deleted file mode 100644 index d6c80bf..0000000 Binary files a/bin/Debug/net7.0/Microsoft.Extensions.Features.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll b/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll deleted file mode 100644 index 04be9fc..0000000 Binary files a/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.Identity.Client.dll b/bin/Debug/net7.0/Microsoft.Identity.Client.dll deleted file mode 100644 index 112dd74..0000000 Binary files a/bin/Debug/net7.0/Microsoft.Identity.Client.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index 6a0300a..0000000 Binary files a/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 80565a9..0000000 Binary files a/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index c6427c7..0000000 Binary files a/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll deleted file mode 100644 index 73cb93e..0000000 Binary files a/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll deleted file mode 100644 index df4b6d0..0000000 Binary files a/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 9d9fcdd..0000000 Binary files a/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.NET.StringTools.dll b/bin/Debug/net7.0/Microsoft.NET.StringTools.dll deleted file mode 100644 index 9f42478..0000000 Binary files a/bin/Debug/net7.0/Microsoft.NET.StringTools.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.OpenApi.dll b/bin/Debug/net7.0/Microsoft.OpenApi.dll deleted file mode 100644 index 1e0998d..0000000 Binary files a/bin/Debug/net7.0/Microsoft.OpenApi.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json deleted file mode 100644 index 55b5497..0000000 --- a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json +++ /dev/null @@ -1,2849 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v7.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v7.0": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "dependencies": { - "AutoMapper": "12.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", - "Microsoft.AspNetCore.Authentication.Negotiate": "7.0.9", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "7.0.9", - "Microsoft.AspNetCore.OpenApi": "7.0.9", - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.EntityFrameworkCore.SqlServer": "7.0.9", - "Microsoft.EntityFrameworkCore.Tools": "7.0.9", - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "7.0.8", - "Swashbuckle.AspNetCore": "6.5.0" - }, - "runtime": { - "Microsoft.SelfService.Portal.Core.API.dll": {} - } - }, - "AutoMapper/12.0.1": { - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "dependencies": { - "AutoMapper": "12.0.1" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "Azure.Core/1.24.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Memory.Data": "1.0.2" - }, - "runtime": { - "lib/net5.0/Azure.Core.dll": { - "assemblyVersion": "1.24.0.0", - "fileVersion": "1.2400.22.20404" - } - } - }, - "Azure.Identity/1.6.0": { - "dependencies": { - "Azure.Core": "1.24.0", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "assemblyVersion": "1.6.0.0", - "fileVersion": "1.600.22.20503" - } - } - }, - "Humanizer/2.14.1": { - "dependencies": { - "Humanizer.Core.af": "2.14.1", - "Humanizer.Core.ar": "2.14.1", - "Humanizer.Core.az": "2.14.1", - "Humanizer.Core.bg": "2.14.1", - "Humanizer.Core.bn-BD": "2.14.1", - "Humanizer.Core.cs": "2.14.1", - "Humanizer.Core.da": "2.14.1", - "Humanizer.Core.de": "2.14.1", - "Humanizer.Core.el": "2.14.1", - "Humanizer.Core.es": "2.14.1", - "Humanizer.Core.fa": "2.14.1", - "Humanizer.Core.fi-FI": "2.14.1", - "Humanizer.Core.fr": "2.14.1", - "Humanizer.Core.fr-BE": "2.14.1", - "Humanizer.Core.he": "2.14.1", - "Humanizer.Core.hr": "2.14.1", - "Humanizer.Core.hu": "2.14.1", - "Humanizer.Core.hy": "2.14.1", - "Humanizer.Core.id": "2.14.1", - "Humanizer.Core.is": "2.14.1", - "Humanizer.Core.it": "2.14.1", - "Humanizer.Core.ja": "2.14.1", - "Humanizer.Core.ko-KR": "2.14.1", - "Humanizer.Core.ku": "2.14.1", - "Humanizer.Core.lv": "2.14.1", - "Humanizer.Core.ms-MY": "2.14.1", - "Humanizer.Core.mt": "2.14.1", - "Humanizer.Core.nb": "2.14.1", - "Humanizer.Core.nb-NO": "2.14.1", - "Humanizer.Core.nl": "2.14.1", - "Humanizer.Core.pl": "2.14.1", - "Humanizer.Core.pt": "2.14.1", - "Humanizer.Core.ro": "2.14.1", - "Humanizer.Core.ru": "2.14.1", - "Humanizer.Core.sk": "2.14.1", - "Humanizer.Core.sl": "2.14.1", - "Humanizer.Core.sr": "2.14.1", - "Humanizer.Core.sr-Latn": "2.14.1", - "Humanizer.Core.sv": "2.14.1", - "Humanizer.Core.th-TH": "2.14.1", - "Humanizer.Core.tr": "2.14.1", - "Humanizer.Core.uk": "2.14.1", - "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", - "Humanizer.Core.uz-Latn-UZ": "2.14.1", - "Humanizer.Core.vi": "2.14.1", - "Humanizer.Core.zh-CN": "2.14.1", - "Humanizer.Core.zh-Hans": "2.14.1", - "Humanizer.Core.zh-Hant": "2.14.1" - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "Humanizer.Core.af/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/af/Humanizer.resources.dll": { - "locale": "af" - } - } - }, - "Humanizer.Core.ar/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ar/Humanizer.resources.dll": { - "locale": "ar" - } - } - }, - "Humanizer.Core.az/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/az/Humanizer.resources.dll": { - "locale": "az" - } - } - }, - "Humanizer.Core.bg/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bg/Humanizer.resources.dll": { - "locale": "bg" - } - } - }, - "Humanizer.Core.bn-BD/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bn-BD/Humanizer.resources.dll": { - "locale": "bn-BD" - } - } - }, - "Humanizer.Core.cs/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/cs/Humanizer.resources.dll": { - "locale": "cs" - } - } - }, - "Humanizer.Core.da/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/da/Humanizer.resources.dll": { - "locale": "da" - } - } - }, - "Humanizer.Core.de/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/de/Humanizer.resources.dll": { - "locale": "de" - } - } - }, - "Humanizer.Core.el/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/el/Humanizer.resources.dll": { - "locale": "el" - } - } - }, - "Humanizer.Core.es/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/es/Humanizer.resources.dll": { - "locale": "es" - } - } - }, - "Humanizer.Core.fa/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fa/Humanizer.resources.dll": { - "locale": "fa" - } - } - }, - "Humanizer.Core.fi-FI/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fi-FI/Humanizer.resources.dll": { - "locale": "fi-FI" - } - } - }, - "Humanizer.Core.fr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr/Humanizer.resources.dll": { - "locale": "fr" - } - } - }, - "Humanizer.Core.fr-BE/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr-BE/Humanizer.resources.dll": { - "locale": "fr-BE" - } - } - }, - "Humanizer.Core.he/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/he/Humanizer.resources.dll": { - "locale": "he" - } - } - }, - "Humanizer.Core.hr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hr/Humanizer.resources.dll": { - "locale": "hr" - } - } - }, - "Humanizer.Core.hu/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hu/Humanizer.resources.dll": { - "locale": "hu" - } - } - }, - "Humanizer.Core.hy/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hy/Humanizer.resources.dll": { - "locale": "hy" - } - } - }, - "Humanizer.Core.id/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/id/Humanizer.resources.dll": { - "locale": "id" - } - } - }, - "Humanizer.Core.is/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/is/Humanizer.resources.dll": { - "locale": "is" - } - } - }, - "Humanizer.Core.it/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/it/Humanizer.resources.dll": { - "locale": "it" - } - } - }, - "Humanizer.Core.ja/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ja/Humanizer.resources.dll": { - "locale": "ja" - } - } - }, - "Humanizer.Core.ko-KR/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { - "locale": "ko-KR" - } - } - }, - "Humanizer.Core.ku/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ku/Humanizer.resources.dll": { - "locale": "ku" - } - } - }, - "Humanizer.Core.lv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/lv/Humanizer.resources.dll": { - "locale": "lv" - } - } - }, - "Humanizer.Core.ms-MY/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { - "locale": "ms-MY" - } - } - }, - "Humanizer.Core.mt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/mt/Humanizer.resources.dll": { - "locale": "mt" - } - } - }, - "Humanizer.Core.nb/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb/Humanizer.resources.dll": { - "locale": "nb" - } - } - }, - "Humanizer.Core.nb-NO/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb-NO/Humanizer.resources.dll": { - "locale": "nb-NO" - } - } - }, - "Humanizer.Core.nl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nl/Humanizer.resources.dll": { - "locale": "nl" - } - } - }, - "Humanizer.Core.pl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pl/Humanizer.resources.dll": { - "locale": "pl" - } - } - }, - "Humanizer.Core.pt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pt/Humanizer.resources.dll": { - "locale": "pt" - } - } - }, - "Humanizer.Core.ro/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ro/Humanizer.resources.dll": { - "locale": "ro" - } - } - }, - "Humanizer.Core.ru/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ru/Humanizer.resources.dll": { - "locale": "ru" - } - } - }, - "Humanizer.Core.sk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sk/Humanizer.resources.dll": { - "locale": "sk" - } - } - }, - "Humanizer.Core.sl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sl/Humanizer.resources.dll": { - "locale": "sl" - } - } - }, - "Humanizer.Core.sr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr/Humanizer.resources.dll": { - "locale": "sr" - } - } - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr-Latn/Humanizer.resources.dll": { - "locale": "sr-Latn" - } - } - }, - "Humanizer.Core.sv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sv/Humanizer.resources.dll": { - "locale": "sv" - } - } - }, - "Humanizer.Core.th-TH/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { - "locale": "th-TH" - } - } - }, - "Humanizer.Core.tr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/tr/Humanizer.resources.dll": { - "locale": "tr" - } - } - }, - "Humanizer.Core.uk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uk/Humanizer.resources.dll": { - "locale": "uk" - } - } - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { - "locale": "uz-Cyrl-UZ" - } - } - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { - "locale": "uz-Latn-UZ" - } - } - }, - "Humanizer.Core.vi/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/vi/Humanizer.resources.dll": { - "locale": "vi" - } - } - }, - "Humanizer.Core.zh-CN/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-CN/Humanizer.resources.dll": { - "locale": "zh-CN" - } - } - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hans/Humanizer.resources.dll": { - "locale": "zh-Hans" - } - } - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hant/Humanizer.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "7.0.9", - "System.DirectoryServices.Protocols": "7.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "dependencies": { - "Microsoft.Extensions.Features": "7.0.9" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "dependencies": { - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.9", - "Newtonsoft.Json": "13.0.1", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Build/17.3.2": { - "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Reflection.MetadataLoadContext": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.Build.Framework/17.3.2": { - "dependencies": { - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.Framework.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "assemblyVersion": "3.3.2.30504", - "fileVersion": "3.3.2.30504" - } - } - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Features": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.16" - } - } - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Elfie": "1.0.0", - "Microsoft.CodeAnalysis.Scripting.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0", - "Microsoft.DiaSymReader": "1.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "System.Composition": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Data.SqlClient/5.0.2": { - "dependencies": { - "Azure.Identity": "1.6.0", - "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", - "Microsoft.SqlServer.Server": "1.0.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Runtime.Caching": "5.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - }, - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "5.0.1.0" - } - } - }, - "Microsoft.DiaSymReader/1.4.0": { - "runtime": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.400.22.11101" - } - } - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "dependencies": { - "Humanizer": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Features": "4.4.0", - "Newtonsoft.Json": "13.0.1", - "NuGet.ProjectModel": "6.3.1" - }, - "runtime": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Mono.TextTemplating": "2.2.1" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.9" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "dependencies": { - "Microsoft.Data.SqlClient": "5.0.2", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "7.0.9" - } - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "runtime": { - "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.Features/7.0.9": { - "runtime": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.Identity.Client/4.45.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.45.0.0", - "fileVersion": "4.45.0.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "dependencies": { - "Microsoft.Identity.Client": "4.45.0", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "2.19.3.0", - "fileVersion": "2.19.3.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.21.0", - "System.IdentityModel.Tokens.Jwt": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.NET.StringTools/17.3.2": { - "runtime": { - "lib/net6.0/Microsoft.NET.StringTools.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.OpenApi/1.4.3": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.4.3.0", - "fileVersion": "1.4.3.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "dependencies": { - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "7.0.8" - }, - "runtime": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Razor": "6.0.11", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "dependencies": { - "Microsoft.Build": "17.3.2", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "dependencies": { - "System.CodeDom": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Mono.TextTemplating.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.1.1" - } - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "dependencies": { - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.22727" - } - } - }, - "NuGet.Common/6.3.1": { - "dependencies": { - "NuGet.Frameworks": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Common.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Configuration/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "dependencies": { - "NuGet.Configuration": "6.3.1", - "NuGet.LibraryModel": "6.3.1", - "NuGet.Protocol": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Frameworks/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.LibraryModel/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "NuGet.Versioning": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Packaging/6.3.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "NuGet.Configuration": "6.3.1", - "NuGet.Versioning": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.Packaging.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.ProjectModel/6.3.1": { - "dependencies": { - "NuGet.DependencyResolver.Core": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Protocol/6.3.1": { - "dependencies": { - "NuGet.Packaging": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.Protocol.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Versioning/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "Swashbuckle.AspNetCore/6.5.0": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" - } - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "System.CodeDom/4.4.0": { - "runtime": { - "lib/netstandard2.0/System.CodeDom.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.6.25519.3" - } - } - }, - "System.Composition/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - } - }, - "System.Composition.AttributedModel/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Convention/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Hosting/6.0.0": { - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Runtime/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.TypedParts/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.Protocols/7.0.1": { - "runtime": { - "lib/net7.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - }, - "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - }, - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "System.Memory.Data/1.0.2": { - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "assemblyVersion": "1.0.2.0", - "fileVersion": "1.0.221.20802" - } - } - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "runtime": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.Caching/5.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Windows.Extensions/6.0.0": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - } - } - }, - "libraries": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==", - "path": "automapper/12.0.1", - "hashPath": "automapper.12.0.1.nupkg.sha512" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==", - "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1", - "hashPath": "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512" - }, - "Azure.Core/1.24.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==", - "path": "azure.core/1.24.0", - "hashPath": "azure.core.1.24.0.nupkg.sha512" - }, - "Azure.Identity/1.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==", - "path": "azure.identity/1.6.0", - "hashPath": "azure.identity.1.6.0.nupkg.sha512" - }, - "Humanizer/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", - "path": "humanizer/2.14.1", - "hashPath": "humanizer.2.14.1.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.af/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", - "path": "humanizer.core.af/2.14.1", - "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ar/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", - "path": "humanizer.core.ar/2.14.1", - "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.az/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", - "path": "humanizer.core.az/2.14.1", - "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bg/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", - "path": "humanizer.core.bg/2.14.1", - "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bn-BD/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", - "path": "humanizer.core.bn-bd/2.14.1", - "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.cs/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", - "path": "humanizer.core.cs/2.14.1", - "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.da/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", - "path": "humanizer.core.da/2.14.1", - "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.de/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", - "path": "humanizer.core.de/2.14.1", - "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.el/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", - "path": "humanizer.core.el/2.14.1", - "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.es/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", - "path": "humanizer.core.es/2.14.1", - "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fa/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", - "path": "humanizer.core.fa/2.14.1", - "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fi-FI/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", - "path": "humanizer.core.fi-fi/2.14.1", - "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", - "path": "humanizer.core.fr/2.14.1", - "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr-BE/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", - "path": "humanizer.core.fr-be/2.14.1", - "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.he/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", - "path": "humanizer.core.he/2.14.1", - "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", - "path": "humanizer.core.hr/2.14.1", - "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hu/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", - "path": "humanizer.core.hu/2.14.1", - "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hy/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", - "path": "humanizer.core.hy/2.14.1", - "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.id/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", - "path": "humanizer.core.id/2.14.1", - "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.is/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", - "path": "humanizer.core.is/2.14.1", - "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.it/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", - "path": "humanizer.core.it/2.14.1", - "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ja/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", - "path": "humanizer.core.ja/2.14.1", - "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ko-KR/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", - "path": "humanizer.core.ko-kr/2.14.1", - "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ku/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", - "path": "humanizer.core.ku/2.14.1", - "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.lv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", - "path": "humanizer.core.lv/2.14.1", - "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ms-MY/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", - "path": "humanizer.core.ms-my/2.14.1", - "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.mt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", - "path": "humanizer.core.mt/2.14.1", - "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", - "path": "humanizer.core.nb/2.14.1", - "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb-NO/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", - "path": "humanizer.core.nb-no/2.14.1", - "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", - "path": "humanizer.core.nl/2.14.1", - "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", - "path": "humanizer.core.pl/2.14.1", - "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", - "path": "humanizer.core.pt/2.14.1", - "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ro/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", - "path": "humanizer.core.ro/2.14.1", - "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ru/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", - "path": "humanizer.core.ru/2.14.1", - "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", - "path": "humanizer.core.sk/2.14.1", - "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", - "path": "humanizer.core.sl/2.14.1", - "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", - "path": "humanizer.core.sr/2.14.1", - "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", - "path": "humanizer.core.sr-latn/2.14.1", - "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", - "path": "humanizer.core.sv/2.14.1", - "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.th-TH/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", - "path": "humanizer.core.th-th/2.14.1", - "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.tr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", - "path": "humanizer.core.tr/2.14.1", - "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", - "path": "humanizer.core.uk/2.14.1", - "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", - "path": "humanizer.core.uz-cyrl-uz/2.14.1", - "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", - "path": "humanizer.core.uz-latn-uz/2.14.1", - "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.vi/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", - "path": "humanizer.core.vi/2.14.1", - "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-CN/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", - "path": "humanizer.core.zh-cn/2.14.1", - "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", - "path": "humanizer.core.zh-hans/2.14.1", - "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", - "path": "humanizer.core.zh-hant/2.14.1", - "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Sh+zGJAgG5MwQcHATWrKsFn4IY5psaX2c1QtKwSNPlEuTjZIZe3aVjEWMHT/ou2jkQ12S2kjOzaW5nMeg/cBA==", - "path": "microsoft.aspnetcore.authentication.negotiate/7.0.9", - "hashPath": "microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/A7MkuL0g4r/oNuASR2gIukWoG2360/tuS9RoiU1dOwTlMYthHJaK8NEpswMihcImCDryiHp5dJCPTZHIs9TQ==", - "path": "microsoft.aspnetcore.connections.abstractions/7.0.9", - "hashPath": "microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6iMRtYIQZj7gMC7iVotL9bZjCjnbV2ZkAAduKYHfV6v+WQhEjk0iEGSFNVh6N9rTCNTeZ2xVgv3xi675GwyDzQ==", - "path": "microsoft.aspnetcore.jsonpatch/7.0.9", - "hashPath": "microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dhAFLGV3RfK6BAbLYpTKcVch1hcyP2qDWNy7Pk2wGrQEO/yWbWwiR9c13hk5kGWcPMGeVMkcuftUo6OAHe2yIA==", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.9", - "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5kBnHntQTJqmYV66Khdl9OJ/j2Pw8cOKj8kNQuLCpfCsPbSijp334Vaad3vaGnG9Wpgq/VbSUSRxZOoroOe8zQ==", - "path": "microsoft.aspnetcore.openapi/7.0.9", - "hashPath": "microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SPjSZIL7JFI5XbVfRMPG/fHLr/xfumSrmN+IOimyIf71WQQ8u2hpaE5+VvpcgjJ5VrJMhfDEhdEAB+Nj/S16dQ==", - "path": "microsoft.aspnetcore.razor.language/6.0.11", - "hashPath": "microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Build/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k5+7CfF/aM/hykfnrF93VhbUnhGfpJkGaD+ce8VlhLnOqDyts7WV+8Up3YCP6qmXMZFeeH/Cp23w2wSliP0mBw==", - "path": "microsoft.build/17.3.2", - "hashPath": "microsoft.build.17.3.2.nupkg.sha512" - }, - "Microsoft.Build.Framework/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==", - "path": "microsoft.build.framework/17.3.2", - "hashPath": "microsoft.build.framework.17.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", - "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", - "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JfHupS/B7Jb5MZoYkFFABn3mux0wQgxi2D8F/rJYZeRBK2ZOyk7TjQ2Kq9rh6W/DCh0KNbbSbn5qoFar+ueHqw==", - "path": "microsoft.codeanalysis.common/4.4.0", - "hashPath": "microsoft.codeanalysis.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eD2w0xHRoaqK07hjlOKGR9eLNy3nimiGNeCClNax1NDgS/+DBtBqCjXelOa+TNy99kIB3nHhUqDmr46nDXy/RQ==", - "path": "microsoft.codeanalysis.csharp/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Un4XeiWD8Xo4A/Q6Wrkrt9UCas6EaP/ZfQAHXNjde5ULkvliWzvy0/ZlXzlPo6L/Xoon1BWOFMprIQWCjuLq9A==", - "path": "microsoft.codeanalysis.csharp.features/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ADmI2jcwJP9GgBsVx2l0Bo0v3Hn4hHBg1uJ5zHd230mkO8rUJBLZu2h3tCbpwJMkpAIRtrxuZDD5uNfiyz0Q5Q==", - "path": "microsoft.codeanalysis.csharp.workspaces/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", - "path": "microsoft.codeanalysis.elfie/1.0.0", - "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0LEXWpaDlZMl5lOnM872FuBmcDD99qKp4QmmFsMpJjnq7f21KuNchdyuSdh9pdpibl2JfdMWrvA56y5dKc6EPQ==", - "path": "microsoft.codeanalysis.features/4.4.0", - "hashPath": "microsoft.codeanalysis.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-40M7AHKPKvOw3LnWsaKmHitk0taBZ8982zoZBQstYzsfdH+tcIdeOewRHvuej23T7HV6d8se9MZdKC9O2I78vQ==", - "path": "microsoft.codeanalysis.razor/6.0.11", - "hashPath": "microsoft.codeanalysis.razor.6.0.11.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RkAwCFJ8LfN7TfbWDejm50nucPxVoG/vDh0qVIoGx1U2FZhaBct72U4lGIACLuYsa0dIlC7Y0ivBemfDHnqWmA==", - "path": "microsoft.codeanalysis.scripting.common/4.4.0", - "hashPath": "microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6KzmmTIUU7qInQldcSPaW0nkrO71zlFPhoiabFBhkokEit49rLx4Kr/G3agBchYzirScrXibqgTRQkvx9WcJTw==", - "path": "microsoft.codeanalysis.workspaces.common/4.4.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/5.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mxcYU9I5TLzUegLVXiTtOE89RXN3GafL1Y+ExIbXvivvQtxplI4wxOgsiZGO4TZC18OJqui7mLVmiYpdFFImRQ==", - "path": "microsoft.data.sqlclient/5.0.2", - "hashPath": "microsoft.data.sqlclient.5.0.2.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==", - "path": "microsoft.data.sqlclient.sni.runtime/5.0.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512" - }, - "Microsoft.DiaSymReader/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLtWq5/W5ePzSraavAFeXAbasE6REDByizTz6M8yQO3e4jf+6pRqPLdNCSvnSfKRVqsF7y/lTVWhqlf89ttweg==", - "path": "microsoft.diasymreader/1.4.0", - "hashPath": "microsoft.diasymreader.1.4.0.nupkg.sha512" - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QXtyFZWYAwlKymbFCQT5O21BJ7hLmQcJGB/EdvUV0VuJyeWJMf/8JSI+ijw3IoOd7MUTBpGVNNE8UDM9gUm4Qw==", - "path": "microsoft.dotnet.scaffolding.shared/7.0.8", - "hashPath": "microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9YuCdQWuRAmYYHqwW1h5ukKMC1fmNvcVHdp3gb8zdHxwSQz7hkGpYOBEjm6dRXRmGRkpUyHL8rwUz4kd53Ev0A==", - "path": "microsoft.entityframeworkcore/7.0.9", - "hashPath": "microsoft.entityframeworkcore.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cfY6Fn7cnP/5pXndL8QYaey/B2nGn1fwze5aSaMJymmbqwqYzFiszHuWbsdVBCDYJc8ok7eB1m/nCc3/rltulQ==", - "path": "microsoft.entityframeworkcore.abstractions/7.0.9", - "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tWsa+spzKZAwHrUP6vYM1LLh0P89UMcldEjerFPPZb0LcI/ONQmh7ldK4Q8TeRuIiuXxYgRYPElSgxwLp14oug==", - "path": "microsoft.entityframeworkcore.design/7.0.9", - "hashPath": "microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u7iN6cNd6SJUlpdk24JVIbkji/UbkEEQ7pXncTyT4eXXj+Hz2y4NSZFOAywPGcioIgX1YzbKWDiJhk7hjSFxBQ==", - "path": "microsoft.entityframeworkcore.relational/7.0.9", - "hashPath": "microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-19S5BWZBcaShhLWzePi9iOq+meKIgL+dDlS0NQgPOQapu3wb3So3ZL0xgPmmlyq3GLYvXiCmQsK3Yv3vXYaMTg==", - "path": "microsoft.entityframeworkcore.sqlserver/7.0.9", - "hashPath": "microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GWOSIe8ltR/mqv2wpRvMhy6ULapdKhZXXpXSGWzG1fRxhYXjSGpe2Pqhxqo46o9RDGlk0WJUXrwyU+N4voPxMw==", - "path": "microsoft.entityframeworkcore.tools/7.0.9", - "hashPath": "microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", - "path": "microsoft.extensions.dependencymodel/7.0.0", - "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Features/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IJ2vdDt2OYCKyJ7ZJPIZKa4b0M0tsG36h0QUt1d/E8IMAnjIncI+1i9Am0nmheD/wpcVd9eDykiV4dklcwUd3Q==", - "path": "microsoft.extensions.features/7.0.9", - "hashPath": "microsoft.extensions.features.7.0.9.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.45.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==", - "path": "microsoft.identity.client/4.45.0", - "hashPath": "microsoft.identity.client.4.45.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", - "path": "microsoft.identity.client.extensions.msal/2.19.3", - "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==", - "path": "microsoft.identitymodel.abstractions/6.21.0", - "hashPath": "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==", - "path": "microsoft.identitymodel.jsonwebtokens/6.21.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==", - "path": "microsoft.identitymodel.logging/6.21.0", - "hashPath": "microsoft.identitymodel.logging.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==", - "path": "microsoft.identitymodel.protocols/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==", - "path": "microsoft.identitymodel.tokens/6.21.0", - "hashPath": "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512" - }, - "Microsoft.NET.StringTools/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==", - "path": "microsoft.net.stringtools/17.3.2", - "hashPath": "microsoft.net.stringtools.17.3.2.nupkg.sha512" - }, - "Microsoft.OpenApi/1.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", - "path": "microsoft.openapi/1.4.3", - "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AbrSIuBwG/7+7JBMOSyHVYqcz8YdUdArGIx4Asckm/U8FWKdT6NSJmObZh3X2Da2/W176FqG3MPTPtw/P0kJag==", - "path": "microsoft.visualstudio.web.codegeneration/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wdud/mzEfFMHqPNBb+N+jVeI2INNSP5WlCrPepQqvoLqiZwM0wUvf7yWGrVbNHBMOjDk3lIavqjXNkY9PriOQg==", - "path": "microsoft.visualstudio.web.codegeneration.core/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-56UeN0J8SA5PJjvf6Mv0ZbhLWO6Cr+YGM5eOsNejpQDL+ba8pt8BR7SBMTnSrZIOEeOhY3nAPUkOUK3bh+v3Tg==", - "path": "microsoft.visualstudio.web.codegeneration.design/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlyRk0pmpvPCzCot0bY+Lt6bctGC4dqrQxk1vk2ep+wTdH/CZ8FflnWHEKGBpd+kMrwy93UbJZ8HSAxlBLksLA==", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JTepVMzR2XOr6BVgejMltlzi3O6LMpNb3dz0VKczsjKKX/l6ZT1iTUC6FjuHs9SNTc8rTlEK7hw2TIKpGy1tCQ==", - "path": "microsoft.visualstudio.web.codegeneration.templating/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5T6uK9MH6zWXXyVinlvmbz7fFiuA5/UIFa1wAWD6ylkReDlPTEOq5AMwlkdlEPZuqMgICH4N3BQAizY/EIAlzA==", - "path": "microsoft.visualstudio.web.codegeneration.utils/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xQIJfP4NpuAnFykWuXW5nr+1WyPLNVbMhqFS7SKX6CIm32Ak9iCMFS1NSbksl5bfIXaSg1rjJM8TpZYoKM+Ffg==", - "path": "microsoft.visualstudio.web.codegenerators.mvc/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "path": "mono.texttemplating/2.2.1", - "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "path": "newtonsoft.json.bson/1.0.2", - "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" - }, - "NuGet.Common/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==", - "path": "nuget.common/6.3.1", - "hashPath": "nuget.common.6.3.1.nupkg.sha512" - }, - "NuGet.Configuration/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==", - "path": "nuget.configuration/6.3.1", - "hashPath": "nuget.configuration.6.3.1.nupkg.sha512" - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wSr4XMNE5f82ZveuATVwj+kS1/dWyXARjOZcS70Aiaj+XEWL8uo4EFTwPIvqPHWCem5cxmavBRuWBwlQ4HWjeA==", - "path": "nuget.dependencyresolver.core/6.3.1", - "hashPath": "nuget.dependencyresolver.core.6.3.1.nupkg.sha512" - }, - "NuGet.Frameworks/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==", - "path": "nuget.frameworks/6.3.1", - "hashPath": "nuget.frameworks.6.3.1.nupkg.sha512" - }, - "NuGet.LibraryModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aEB4AesZ+ddLVTBbewQFNHagbVbwewobBk2+8mk0THWjn0qIUH2l4kLTMmiTD7DOthVB6pYds8bz1B8Z0rEPrQ==", - "path": "nuget.librarymodel/6.3.1", - "hashPath": "nuget.librarymodel.6.3.1.nupkg.sha512" - }, - "NuGet.Packaging/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==", - "path": "nuget.packaging/6.3.1", - "hashPath": "nuget.packaging.6.3.1.nupkg.sha512" - }, - "NuGet.ProjectModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TtC4zUKnMIkJBtM7P1GtvVK2jCh4Xi8SVK+bEsCUSoZ0rJf7Zqw2oBrmMNWe51IlfOcYkREmn6xif9mgJXOnmQ==", - "path": "nuget.projectmodel/6.3.1", - "hashPath": "nuget.projectmodel.6.3.1.nupkg.sha512" - }, - "NuGet.Protocol/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==", - "path": "nuget.protocol/6.3.1", - "hashPath": "nuget.protocol.6.3.1.nupkg.sha512" - }, - "NuGet.Versioning/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==", - "path": "nuget.versioning/6.3.1", - "hashPath": "nuget.versioning.6.3.1.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", - "path": "swashbuckle.aspnetcore/6.5.0", - "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", - "path": "swashbuckle.aspnetcore.swagger/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", - "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", - "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" - }, - "System.CodeDom/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "path": "system.codedom/4.4.0", - "hashPath": "system.codedom.4.4.0.nupkg.sha512" - }, - "System.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", - "path": "system.composition/6.0.0", - "hashPath": "system.composition.6.0.0.nupkg.sha512" - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", - "path": "system.composition.attributedmodel/6.0.0", - "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", - "path": "system.composition.convention/6.0.0", - "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", - "path": "system.composition.hosting/6.0.0", - "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", - "path": "system.composition.runtime/6.0.0", - "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", - "path": "system.composition.typedparts/6.0.0", - "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/7.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", - "path": "system.directoryservices.protocols/7.0.1", - "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==", - "path": "system.identitymodel.tokens.jwt/6.21.0", - "hashPath": "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512" - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "path": "system.memory.data/1.0.2", - "hashPath": "system.memory.data.1.0.2.nupkg.sha512" - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SuK8qTHbmG3PToLo1TEq8YSfY31FiKhASBmjozUTAleDgiX4H2X4jm0VPFb+K2soSSmYPyHTpHp35TctfNtDzQ==", - "path": "system.reflection.metadataloadcontext/6.0.0", - "hashPath": "system.reflection.metadataloadcontext.6.0.0.nupkg.sha512" - }, - "System.Runtime.Caching/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", - "path": "system.runtime.caching/5.0.0", - "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 3daef64..0000000 Binary files a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.exe b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.exe deleted file mode 100644 index fe6c14a..0000000 Binary files a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.exe and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb deleted file mode 100644 index 6450e35..0000000 Binary files a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json deleted file mode 100644 index d486bb2..0000000 --- a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net7.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "7.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "7.0.0" - } - ], - "configProperties": { - "System.GC.Server": true, - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json b/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json deleted file mode 100644 index 5576e88..0000000 --- a/bin/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json +++ /dev/null @@ -1 +0,0 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll b/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll deleted file mode 100644 index ddeaa86..0000000 Binary files a/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll b/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll deleted file mode 100644 index a5b93ee..0000000 Binary files a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll b/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll deleted file mode 100644 index 534a126..0000000 Binary files a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll b/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll deleted file mode 100644 index 99fe458..0000000 Binary files a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll b/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll deleted file mode 100644 index 0391697..0000000 Binary files a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll b/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll deleted file mode 100644 index a374651..0000000 Binary files a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll b/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll deleted file mode 100644 index a1c3c0f..0000000 Binary files a/bin/Debug/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 3ab5850..0000000 Binary files a/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Mono.TextTemplating.dll b/bin/Debug/net7.0/Mono.TextTemplating.dll deleted file mode 100644 index d5a4b3c..0000000 Binary files a/bin/Debug/net7.0/Mono.TextTemplating.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll b/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll deleted file mode 100644 index e9b1dd2..0000000 Binary files a/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Newtonsoft.Json.dll b/bin/Debug/net7.0/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/bin/Debug/net7.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/bin/Debug/net7.0/NuGet.Common.dll b/bin/Debug/net7.0/NuGet.Common.dll deleted file mode 100644 index ce4bda8..0000000 Binary files a/bin/Debug/net7.0/NuGet.Common.dll and /dev/null differ diff --git a/bin/Debug/net7.0/NuGet.Configuration.dll b/bin/Debug/net7.0/NuGet.Configuration.dll deleted file mode 100644 index cbe9417..0000000 Binary files a/bin/Debug/net7.0/NuGet.Configuration.dll and /dev/null differ diff --git a/bin/Debug/net7.0/NuGet.DependencyResolver.Core.dll b/bin/Debug/net7.0/NuGet.DependencyResolver.Core.dll deleted file mode 100644 index 908b3e6..0000000 Binary files a/bin/Debug/net7.0/NuGet.DependencyResolver.Core.dll and /dev/null differ diff --git a/bin/Debug/net7.0/NuGet.Frameworks.dll b/bin/Debug/net7.0/NuGet.Frameworks.dll deleted file mode 100644 index 4eacf6a..0000000 Binary files a/bin/Debug/net7.0/NuGet.Frameworks.dll and /dev/null differ diff --git a/bin/Debug/net7.0/NuGet.LibraryModel.dll b/bin/Debug/net7.0/NuGet.LibraryModel.dll deleted file mode 100644 index ba03b76..0000000 Binary files a/bin/Debug/net7.0/NuGet.LibraryModel.dll and /dev/null differ diff --git a/bin/Debug/net7.0/NuGet.Packaging.dll b/bin/Debug/net7.0/NuGet.Packaging.dll deleted file mode 100644 index a3ec988..0000000 Binary files a/bin/Debug/net7.0/NuGet.Packaging.dll and /dev/null differ diff --git a/bin/Debug/net7.0/NuGet.ProjectModel.dll b/bin/Debug/net7.0/NuGet.ProjectModel.dll deleted file mode 100644 index fe01820..0000000 Binary files a/bin/Debug/net7.0/NuGet.ProjectModel.dll and /dev/null differ diff --git a/bin/Debug/net7.0/NuGet.Protocol.dll b/bin/Debug/net7.0/NuGet.Protocol.dll deleted file mode 100644 index 6b3aa97..0000000 Binary files a/bin/Debug/net7.0/NuGet.Protocol.dll and /dev/null differ diff --git a/bin/Debug/net7.0/NuGet.Versioning.dll b/bin/Debug/net7.0/NuGet.Versioning.dll deleted file mode 100644 index 60cbd1e..0000000 Binary files a/bin/Debug/net7.0/NuGet.Versioning.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll b/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll deleted file mode 100644 index fd052a3..0000000 Binary files a/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll deleted file mode 100644 index 2ea00ee..0000000 Binary files a/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ diff --git a/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll deleted file mode 100644 index 0571d0f..0000000 Binary files a/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.CodeDom.dll b/bin/Debug/net7.0/System.CodeDom.dll deleted file mode 100644 index 3128b6a..0000000 Binary files a/bin/Debug/net7.0/System.CodeDom.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Composition.AttributedModel.dll b/bin/Debug/net7.0/System.Composition.AttributedModel.dll deleted file mode 100644 index d37283b..0000000 Binary files a/bin/Debug/net7.0/System.Composition.AttributedModel.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Composition.Convention.dll b/bin/Debug/net7.0/System.Composition.Convention.dll deleted file mode 100644 index b6fa4ab..0000000 Binary files a/bin/Debug/net7.0/System.Composition.Convention.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Composition.Hosting.dll b/bin/Debug/net7.0/System.Composition.Hosting.dll deleted file mode 100644 index c67f1c0..0000000 Binary files a/bin/Debug/net7.0/System.Composition.Hosting.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Composition.Runtime.dll b/bin/Debug/net7.0/System.Composition.Runtime.dll deleted file mode 100644 index 2a4b38c..0000000 Binary files a/bin/Debug/net7.0/System.Composition.Runtime.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Composition.TypedParts.dll b/bin/Debug/net7.0/System.Composition.TypedParts.dll deleted file mode 100644 index 7c0c780..0000000 Binary files a/bin/Debug/net7.0/System.Composition.TypedParts.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll b/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index d67c8a8..0000000 Binary files a/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 4d2da59..0000000 Binary files a/bin/Debug/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Drawing.Common.dll b/bin/Debug/net7.0/System.Drawing.Common.dll deleted file mode 100644 index be6915e..0000000 Binary files a/bin/Debug/net7.0/System.Drawing.Common.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll b/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index 131456c..0000000 Binary files a/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Memory.Data.dll b/bin/Debug/net7.0/System.Memory.Data.dll deleted file mode 100644 index 6f2a3e0..0000000 Binary files a/bin/Debug/net7.0/System.Memory.Data.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Reflection.MetadataLoadContext.dll b/bin/Debug/net7.0/System.Reflection.MetadataLoadContext.dll deleted file mode 100644 index e87fcda..0000000 Binary files a/bin/Debug/net7.0/System.Reflection.MetadataLoadContext.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Runtime.Caching.dll b/bin/Debug/net7.0/System.Runtime.Caching.dll deleted file mode 100644 index 6a6eb85..0000000 Binary files a/bin/Debug/net7.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 1ba8770..0000000 Binary files a/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Security.Permissions.dll b/bin/Debug/net7.0/System.Security.Permissions.dll deleted file mode 100644 index 39dd4df..0000000 Binary files a/bin/Debug/net7.0/System.Security.Permissions.dll and /dev/null differ diff --git a/bin/Debug/net7.0/System.Windows.Extensions.dll b/bin/Debug/net7.0/System.Windows.Extensions.dll deleted file mode 100644 index c3e8844..0000000 Binary files a/bin/Debug/net7.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/bin/Debug/net7.0/af/Humanizer.resources.dll b/bin/Debug/net7.0/af/Humanizer.resources.dll deleted file mode 100644 index e191f5f..0000000 Binary files a/bin/Debug/net7.0/af/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/appsettings.Development.json b/bin/Debug/net7.0/appsettings.Development.json deleted file mode 100644 index 17da08f..0000000 --- a/bin/Debug/net7.0/appsettings.Development.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ConnectionStrings": { - "Context": "Server=localhost;Database=SSP;TrustServerCertificate=True;Encrypt=False;Integrated Security=SSPI" - } -} diff --git a/bin/Debug/net7.0/appsettings.json b/bin/Debug/net7.0/appsettings.json deleted file mode 100644 index 005b7be..0000000 --- a/bin/Debug/net7.0/appsettings.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "Context": "Server=RZ1VCMSQL001\\MSSSP;Database=SSP;TrustServerCertificate=True;Encrypt=False;Integrated Security=SSPI" - } -} \ No newline at end of file diff --git a/bin/Debug/net7.0/ar/Humanizer.resources.dll b/bin/Debug/net7.0/ar/Humanizer.resources.dll deleted file mode 100644 index 319af06..0000000 Binary files a/bin/Debug/net7.0/ar/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/az/Humanizer.resources.dll b/bin/Debug/net7.0/az/Humanizer.resources.dll deleted file mode 100644 index f51f16e..0000000 Binary files a/bin/Debug/net7.0/az/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/bg/Humanizer.resources.dll b/bin/Debug/net7.0/bg/Humanizer.resources.dll deleted file mode 100644 index c6b47e9..0000000 Binary files a/bin/Debug/net7.0/bg/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/bn-BD/Humanizer.resources.dll b/bin/Debug/net7.0/bn-BD/Humanizer.resources.dll deleted file mode 100644 index dead005..0000000 Binary files a/bin/Debug/net7.0/bn-BD/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/cs/Humanizer.resources.dll b/bin/Debug/net7.0/cs/Humanizer.resources.dll deleted file mode 100644 index 43094ae..0000000 Binary files a/bin/Debug/net7.0/cs/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 10a5b8f..0000000 Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 6e642b5..0000000 Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 160cb79..0000000 Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 3a0c7f5..0000000 Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 9fda8a8..0000000 Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 1c4018b..0000000 Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 1662edf..0000000 Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/da/Humanizer.resources.dll b/bin/Debug/net7.0/da/Humanizer.resources.dll deleted file mode 100644 index 25c518a..0000000 Binary files a/bin/Debug/net7.0/da/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/de/Humanizer.resources.dll b/bin/Debug/net7.0/de/Humanizer.resources.dll deleted file mode 100644 index eca8773..0000000 Binary files a/bin/Debug/net7.0/de/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index b05c568..0000000 Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 7d8f563..0000000 Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d647fbf..0000000 Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 8c7bda7..0000000 Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 463b895..0000000 Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d2b2ebe..0000000 Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 41818f4..0000000 Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/dotnet-aspnet-codegenerator-design.dll b/bin/Debug/net7.0/dotnet-aspnet-codegenerator-design.dll deleted file mode 100644 index e5d1b54..0000000 Binary files a/bin/Debug/net7.0/dotnet-aspnet-codegenerator-design.dll and /dev/null differ diff --git a/bin/Debug/net7.0/el/Humanizer.resources.dll b/bin/Debug/net7.0/el/Humanizer.resources.dll deleted file mode 100644 index 7496654..0000000 Binary files a/bin/Debug/net7.0/el/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/es/Humanizer.resources.dll b/bin/Debug/net7.0/es/Humanizer.resources.dll deleted file mode 100644 index a2ccea7..0000000 Binary files a/bin/Debug/net7.0/es/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 5a0e03d..0000000 Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d91150f..0000000 Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2b1d73e..0000000 Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 4ae1f61..0000000 Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 58bac36..0000000 Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 472b0bb..0000000 Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 66145cb..0000000 Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fa/Humanizer.resources.dll b/bin/Debug/net7.0/fa/Humanizer.resources.dll deleted file mode 100644 index 71fb905..0000000 Binary files a/bin/Debug/net7.0/fa/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fi-FI/Humanizer.resources.dll b/bin/Debug/net7.0/fi-FI/Humanizer.resources.dll deleted file mode 100644 index 553a14d..0000000 Binary files a/bin/Debug/net7.0/fi-FI/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fr-BE/Humanizer.resources.dll b/bin/Debug/net7.0/fr-BE/Humanizer.resources.dll deleted file mode 100644 index d75e247..0000000 Binary files a/bin/Debug/net7.0/fr-BE/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fr/Humanizer.resources.dll b/bin/Debug/net7.0/fr/Humanizer.resources.dll deleted file mode 100644 index 5fb44a9..0000000 Binary files a/bin/Debug/net7.0/fr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 401ea0b..0000000 Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index cc8b864..0000000 Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index a98d0ec..0000000 Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 4b77322..0000000 Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index ada43a9..0000000 Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 474cc07..0000000 Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e6c12b5..0000000 Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/he/Humanizer.resources.dll b/bin/Debug/net7.0/he/Humanizer.resources.dll deleted file mode 100644 index deb8b6e..0000000 Binary files a/bin/Debug/net7.0/he/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/hr/Humanizer.resources.dll b/bin/Debug/net7.0/hr/Humanizer.resources.dll deleted file mode 100644 index 4d50733..0000000 Binary files a/bin/Debug/net7.0/hr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/hu/Humanizer.resources.dll b/bin/Debug/net7.0/hu/Humanizer.resources.dll deleted file mode 100644 index f93d556..0000000 Binary files a/bin/Debug/net7.0/hu/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/hy/Humanizer.resources.dll b/bin/Debug/net7.0/hy/Humanizer.resources.dll deleted file mode 100644 index a61b5e6..0000000 Binary files a/bin/Debug/net7.0/hy/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/id/Humanizer.resources.dll b/bin/Debug/net7.0/id/Humanizer.resources.dll deleted file mode 100644 index e605f23..0000000 Binary files a/bin/Debug/net7.0/id/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/is/Humanizer.resources.dll b/bin/Debug/net7.0/is/Humanizer.resources.dll deleted file mode 100644 index 40e36d7..0000000 Binary files a/bin/Debug/net7.0/is/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/it/Humanizer.resources.dll b/bin/Debug/net7.0/it/Humanizer.resources.dll deleted file mode 100644 index 9434487..0000000 Binary files a/bin/Debug/net7.0/it/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 2315e95..0000000 Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 23f6463..0000000 Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index dd024d9..0000000 Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 5f2ca6f..0000000 Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index c4b443b..0000000 Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 798de46..0000000 Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index a354025..0000000 Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ja/Humanizer.resources.dll b/bin/Debug/net7.0/ja/Humanizer.resources.dll deleted file mode 100644 index f949d63..0000000 Binary files a/bin/Debug/net7.0/ja/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 7a9c62e..0000000 Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 70682db..0000000 Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 0a8ac29..0000000 Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index dd8dced..0000000 Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 752d6b7..0000000 Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d02270a..0000000 Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8ee1273..0000000 Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ko-KR/Humanizer.resources.dll b/bin/Debug/net7.0/ko-KR/Humanizer.resources.dll deleted file mode 100644 index 6a5f6c7..0000000 Binary files a/bin/Debug/net7.0/ko-KR/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 1c8a1a4..0000000 Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 5101654..0000000 Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 15249dd..0000000 Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 45b5bfd..0000000 Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 0d2793b..0000000 Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 32b471d..0000000 Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 7881c82..0000000 Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ku/Humanizer.resources.dll b/bin/Debug/net7.0/ku/Humanizer.resources.dll deleted file mode 100644 index 606d2b9..0000000 Binary files a/bin/Debug/net7.0/ku/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/lv/Humanizer.resources.dll b/bin/Debug/net7.0/lv/Humanizer.resources.dll deleted file mode 100644 index 463bf2d..0000000 Binary files a/bin/Debug/net7.0/lv/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ms-MY/Humanizer.resources.dll b/bin/Debug/net7.0/ms-MY/Humanizer.resources.dll deleted file mode 100644 index 6494db8..0000000 Binary files a/bin/Debug/net7.0/ms-MY/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/mt/Humanizer.resources.dll b/bin/Debug/net7.0/mt/Humanizer.resources.dll deleted file mode 100644 index 7e056c7..0000000 Binary files a/bin/Debug/net7.0/mt/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/nb-NO/Humanizer.resources.dll b/bin/Debug/net7.0/nb-NO/Humanizer.resources.dll deleted file mode 100644 index 4ff1965..0000000 Binary files a/bin/Debug/net7.0/nb-NO/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/nb/Humanizer.resources.dll b/bin/Debug/net7.0/nb/Humanizer.resources.dll deleted file mode 100644 index 48d7d6e..0000000 Binary files a/bin/Debug/net7.0/nb/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/nl/Humanizer.resources.dll b/bin/Debug/net7.0/nl/Humanizer.resources.dll deleted file mode 100644 index e1bca89..0000000 Binary files a/bin/Debug/net7.0/nl/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pl/Humanizer.resources.dll b/bin/Debug/net7.0/pl/Humanizer.resources.dll deleted file mode 100644 index 1b81e27..0000000 Binary files a/bin/Debug/net7.0/pl/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index b1648b9..0000000 Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ab1f415..0000000 Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index f6565e0..0000000 Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 1ea99f3..0000000 Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 919a672..0000000 Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d1b15d9..0000000 Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 03b64a3..0000000 Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index d146dec..0000000 Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d6ffabe..0000000 Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index b179fd5..0000000 Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 331d87c..0000000 Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index a326d59..0000000 Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 44a8a4a..0000000 Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 186108a..0000000 Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/pt/Humanizer.resources.dll b/bin/Debug/net7.0/pt/Humanizer.resources.dll deleted file mode 100644 index 71daa56..0000000 Binary files a/bin/Debug/net7.0/pt/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ro/Humanizer.resources.dll b/bin/Debug/net7.0/ro/Humanizer.resources.dll deleted file mode 100644 index 0aea9b9..0000000 Binary files a/bin/Debug/net7.0/ro/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ru/Humanizer.resources.dll b/bin/Debug/net7.0/ru/Humanizer.resources.dll deleted file mode 100644 index dd2f875..0000000 Binary files a/bin/Debug/net7.0/ru/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index c32fb26..0000000 Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ca6f13a..0000000 Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4b1c65a..0000000 Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 7f4fca5..0000000 Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 8bcb19b..0000000 Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index ff641b1..0000000 Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 55cd313..0000000 Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index f535812..0000000 Binary files a/bin/Debug/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 1b4c830..0000000 Binary files a/bin/Debug/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 9e26473..0000000 Binary files a/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 9bd0326..0000000 Binary files a/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index 6bc82a0..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index 927516f..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index a00639b..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index ffb6e3a..0000000 Binary files a/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 66af198..0000000 Binary files a/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 7c9e87b..0000000 Binary files a/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 332dbfa..0000000 Binary files a/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index 69f0d1b..0000000 Binary files a/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll b/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 951a113..0000000 Binary files a/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 59ebd7f..0000000 Binary files a/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll deleted file mode 100644 index 432ebb4..0000000 Binary files a/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/bin/Debug/net7.0/sk/Humanizer.resources.dll b/bin/Debug/net7.0/sk/Humanizer.resources.dll deleted file mode 100644 index 4c03f54..0000000 Binary files a/bin/Debug/net7.0/sk/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/sl/Humanizer.resources.dll b/bin/Debug/net7.0/sl/Humanizer.resources.dll deleted file mode 100644 index b79bb3c..0000000 Binary files a/bin/Debug/net7.0/sl/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/sr-Latn/Humanizer.resources.dll b/bin/Debug/net7.0/sr-Latn/Humanizer.resources.dll deleted file mode 100644 index e846785..0000000 Binary files a/bin/Debug/net7.0/sr-Latn/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/sr/Humanizer.resources.dll b/bin/Debug/net7.0/sr/Humanizer.resources.dll deleted file mode 100644 index 7e36e26..0000000 Binary files a/bin/Debug/net7.0/sr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/sv/Humanizer.resources.dll b/bin/Debug/net7.0/sv/Humanizer.resources.dll deleted file mode 100644 index 70974a5..0000000 Binary files a/bin/Debug/net7.0/sv/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/th-TH/Humanizer.resources.dll b/bin/Debug/net7.0/th-TH/Humanizer.resources.dll deleted file mode 100644 index 4dcc85d..0000000 Binary files a/bin/Debug/net7.0/th-TH/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/tr/Humanizer.resources.dll b/bin/Debug/net7.0/tr/Humanizer.resources.dll deleted file mode 100644 index eff6ad8..0000000 Binary files a/bin/Debug/net7.0/tr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 5eb7e9c..0000000 Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index b870685..0000000 Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d3514a4..0000000 Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index f23a22f..0000000 Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 6df319d..0000000 Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6110c60..0000000 Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index edfdcf4..0000000 Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/uk/Humanizer.resources.dll b/bin/Debug/net7.0/uk/Humanizer.resources.dll deleted file mode 100644 index d4fb7a2..0000000 Binary files a/bin/Debug/net7.0/uk/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/uz-Cyrl-UZ/Humanizer.resources.dll b/bin/Debug/net7.0/uz-Cyrl-UZ/Humanizer.resources.dll deleted file mode 100644 index c76160d..0000000 Binary files a/bin/Debug/net7.0/uz-Cyrl-UZ/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/uz-Latn-UZ/Humanizer.resources.dll b/bin/Debug/net7.0/uz-Latn-UZ/Humanizer.resources.dll deleted file mode 100644 index da72030..0000000 Binary files a/bin/Debug/net7.0/uz-Latn-UZ/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/vi/Humanizer.resources.dll b/bin/Debug/net7.0/vi/Humanizer.resources.dll deleted file mode 100644 index ff72d7e..0000000 Binary files a/bin/Debug/net7.0/vi/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-CN/Humanizer.resources.dll b/bin/Debug/net7.0/zh-CN/Humanizer.resources.dll deleted file mode 100644 index a80799f..0000000 Binary files a/bin/Debug/net7.0/zh-CN/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hans/Humanizer.resources.dll b/bin/Debug/net7.0/zh-Hans/Humanizer.resources.dll deleted file mode 100644 index c84c639..0000000 Binary files a/bin/Debug/net7.0/zh-Hans/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 96afd23..0000000 Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index a0877d2..0000000 Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 1c4359b..0000000 Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 15bbfaf..0000000 Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 2c11839..0000000 Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6eaa45c..0000000 Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 007dee6..0000000 Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hant/Humanizer.resources.dll b/bin/Debug/net7.0/zh-Hant/Humanizer.resources.dll deleted file mode 100644 index d0cb506..0000000 Binary files a/bin/Debug/net7.0/zh-Hant/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index c2f0f0b..0000000 Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 8b76c06..0000000 Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index dfe8129..0000000 Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 9e42195..0000000 Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index ecb8019..0000000 Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index bf9204d..0000000 Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index f5308ff..0000000 Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/bin/Release/net7.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll deleted file mode 100644 index 8df3ce1..0000000 Binary files a/bin/Release/net7.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll and /dev/null differ diff --git a/bin/Release/net7.0/AutoMapper.dll b/bin/Release/net7.0/AutoMapper.dll deleted file mode 100644 index b33d3d0..0000000 Binary files a/bin/Release/net7.0/AutoMapper.dll and /dev/null differ diff --git a/bin/Release/net7.0/Azure.Core.dll b/bin/Release/net7.0/Azure.Core.dll deleted file mode 100644 index aa966ba..0000000 Binary files a/bin/Release/net7.0/Azure.Core.dll and /dev/null differ diff --git a/bin/Release/net7.0/Azure.Identity.dll b/bin/Release/net7.0/Azure.Identity.dll deleted file mode 100644 index eaab465..0000000 Binary files a/bin/Release/net7.0/Azure.Identity.dll and /dev/null differ diff --git a/bin/Release/net7.0/Humanizer.dll b/bin/Release/net7.0/Humanizer.dll deleted file mode 100644 index c9a7ef8..0000000 Binary files a/bin/Release/net7.0/Humanizer.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll b/bin/Release/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll deleted file mode 100644 index 76937c0..0000000 Binary files a/bin/Release/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll b/bin/Release/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll deleted file mode 100644 index d2d6643..0000000 Binary files a/bin/Release/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.AspNetCore.JsonPatch.dll b/bin/Release/net7.0/Microsoft.AspNetCore.JsonPatch.dll deleted file mode 100644 index 67976a4..0000000 Binary files a/bin/Release/net7.0/Microsoft.AspNetCore.JsonPatch.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/bin/Release/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll deleted file mode 100644 index 9185e39..0000000 Binary files a/bin/Release/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.AspNetCore.OpenApi.dll b/bin/Release/net7.0/Microsoft.AspNetCore.OpenApi.dll deleted file mode 100644 index 48f95b5..0000000 Binary files a/bin/Release/net7.0/Microsoft.AspNetCore.OpenApi.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.AspNetCore.Razor.Language.dll b/bin/Release/net7.0/Microsoft.AspNetCore.Razor.Language.dll deleted file mode 100644 index e0b7296..0000000 Binary files a/bin/Release/net7.0/Microsoft.AspNetCore.Razor.Language.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Release/net7.0/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/bin/Release/net7.0/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.Build.Framework.dll b/bin/Release/net7.0/Microsoft.Build.Framework.dll deleted file mode 100644 index dcebf91..0000000 Binary files a/bin/Release/net7.0/Microsoft.Build.Framework.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.Build.dll b/bin/Release/net7.0/Microsoft.Build.dll deleted file mode 100644 index b9d1fa9..0000000 Binary files a/bin/Release/net7.0/Microsoft.Build.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll b/bin/Release/net7.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll deleted file mode 100644 index e070bd5..0000000 Binary files a/bin/Release/net7.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll b/bin/Release/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll deleted file mode 100644 index fad30cf..0000000 Binary files a/bin/Release/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/bin/Release/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll deleted file mode 100644 index eb2748f..0000000 Binary files a/bin/Release/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.CodeAnalysis.CSharp.dll b/bin/Release/net7.0/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index 6506b81..0000000 Binary files a/bin/Release/net7.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.CodeAnalysis.Elfie.dll b/bin/Release/net7.0/Microsoft.CodeAnalysis.Elfie.dll deleted file mode 100644 index b131340..0000000 Binary files a/bin/Release/net7.0/Microsoft.CodeAnalysis.Elfie.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.CodeAnalysis.Features.dll b/bin/Release/net7.0/Microsoft.CodeAnalysis.Features.dll deleted file mode 100644 index 70ccdf7..0000000 Binary files a/bin/Release/net7.0/Microsoft.CodeAnalysis.Features.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.CodeAnalysis.Razor.dll b/bin/Release/net7.0/Microsoft.CodeAnalysis.Razor.dll deleted file mode 100644 index f21b880..0000000 Binary files a/bin/Release/net7.0/Microsoft.CodeAnalysis.Razor.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.CodeAnalysis.Scripting.dll b/bin/Release/net7.0/Microsoft.CodeAnalysis.Scripting.dll deleted file mode 100644 index 9da1e74..0000000 Binary files a/bin/Release/net7.0/Microsoft.CodeAnalysis.Scripting.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.CodeAnalysis.Workspaces.dll b/bin/Release/net7.0/Microsoft.CodeAnalysis.Workspaces.dll deleted file mode 100644 index ab9a24c..0000000 Binary files a/bin/Release/net7.0/Microsoft.CodeAnalysis.Workspaces.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.CodeAnalysis.dll b/bin/Release/net7.0/Microsoft.CodeAnalysis.dll deleted file mode 100644 index f35e108..0000000 Binary files a/bin/Release/net7.0/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.Data.SqlClient.dll b/bin/Release/net7.0/Microsoft.Data.SqlClient.dll deleted file mode 100644 index bd9b405..0000000 Binary files a/bin/Release/net7.0/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.DiaSymReader.dll b/bin/Release/net7.0/Microsoft.DiaSymReader.dll deleted file mode 100644 index 7a3a497..0000000 Binary files a/bin/Release/net7.0/Microsoft.DiaSymReader.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll b/bin/Release/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll deleted file mode 100644 index 0d69a80..0000000 Binary files a/bin/Release/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/bin/Release/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index bbe5da9..0000000 Binary files a/bin/Release/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.EntityFrameworkCore.Design.dll b/bin/Release/net7.0/Microsoft.EntityFrameworkCore.Design.dll deleted file mode 100644 index d0866eb..0000000 Binary files a/bin/Release/net7.0/Microsoft.EntityFrameworkCore.Design.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.EntityFrameworkCore.Relational.dll b/bin/Release/net7.0/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index 5732007..0000000 Binary files a/bin/Release/net7.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/bin/Release/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll deleted file mode 100644 index 21a03f8..0000000 Binary files a/bin/Release/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.EntityFrameworkCore.dll b/bin/Release/net7.0/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index c8a8af4..0000000 Binary files a/bin/Release/net7.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.Extensions.DependencyModel.dll b/bin/Release/net7.0/Microsoft.Extensions.DependencyModel.dll deleted file mode 100644 index c4fe0b9..0000000 Binary files a/bin/Release/net7.0/Microsoft.Extensions.DependencyModel.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.Extensions.Features.dll b/bin/Release/net7.0/Microsoft.Extensions.Features.dll deleted file mode 100644 index d6c80bf..0000000 Binary files a/bin/Release/net7.0/Microsoft.Extensions.Features.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll b/bin/Release/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll deleted file mode 100644 index 04be9fc..0000000 Binary files a/bin/Release/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.Identity.Client.dll b/bin/Release/net7.0/Microsoft.Identity.Client.dll deleted file mode 100644 index 112dd74..0000000 Binary files a/bin/Release/net7.0/Microsoft.Identity.Client.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.IdentityModel.Abstractions.dll b/bin/Release/net7.0/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index 6a0300a..0000000 Binary files a/bin/Release/net7.0/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll b/bin/Release/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 80565a9..0000000 Binary files a/bin/Release/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.IdentityModel.Logging.dll b/bin/Release/net7.0/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index c6427c7..0000000 Binary files a/bin/Release/net7.0/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/bin/Release/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll deleted file mode 100644 index 73cb93e..0000000 Binary files a/bin/Release/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.IdentityModel.Protocols.dll b/bin/Release/net7.0/Microsoft.IdentityModel.Protocols.dll deleted file mode 100644 index df4b6d0..0000000 Binary files a/bin/Release/net7.0/Microsoft.IdentityModel.Protocols.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.IdentityModel.Tokens.dll b/bin/Release/net7.0/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 9d9fcdd..0000000 Binary files a/bin/Release/net7.0/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.NET.StringTools.dll b/bin/Release/net7.0/Microsoft.NET.StringTools.dll deleted file mode 100644 index 9f42478..0000000 Binary files a/bin/Release/net7.0/Microsoft.NET.StringTools.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.OpenApi.dll b/bin/Release/net7.0/Microsoft.OpenApi.dll deleted file mode 100644 index 1e0998d..0000000 Binary files a/bin/Release/net7.0/Microsoft.OpenApi.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json b/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json deleted file mode 100644 index e0607b5..0000000 --- a/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json +++ /dev/null @@ -1,4359 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v7.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v7.0": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "dependencies": { - "AutoMapper": "12.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", - "Microsoft.AspNetCore.Authentication.Negotiate": "7.0.9", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "7.0.9", - "Microsoft.AspNetCore.OpenApi": "7.0.9", - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.EntityFrameworkCore.SqlServer": "7.0.9", - "Microsoft.EntityFrameworkCore.Tools": "7.0.9", - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "7.0.8", - "Swashbuckle.AspNetCore": "6.5.0" - }, - "runtime": { - "Microsoft.SelfService.Portal.Core.API.dll": {} - } - }, - "AutoMapper/12.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "dependencies": { - "AutoMapper": "12.0.1", - "Microsoft.Extensions.Options": "7.0.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "Azure.Core/1.24.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/net5.0/Azure.Core.dll": { - "assemblyVersion": "1.24.0.0", - "fileVersion": "1.2400.22.20404" - } - } - }, - "Azure.Identity/1.6.0": { - "dependencies": { - "Azure.Core": "1.24.0", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", - "System.Memory": "4.5.5", - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "assemblyVersion": "1.6.0.0", - "fileVersion": "1.600.22.20503" - } - } - }, - "Humanizer/2.14.1": { - "dependencies": { - "Humanizer.Core.af": "2.14.1", - "Humanizer.Core.ar": "2.14.1", - "Humanizer.Core.az": "2.14.1", - "Humanizer.Core.bg": "2.14.1", - "Humanizer.Core.bn-BD": "2.14.1", - "Humanizer.Core.cs": "2.14.1", - "Humanizer.Core.da": "2.14.1", - "Humanizer.Core.de": "2.14.1", - "Humanizer.Core.el": "2.14.1", - "Humanizer.Core.es": "2.14.1", - "Humanizer.Core.fa": "2.14.1", - "Humanizer.Core.fi-FI": "2.14.1", - "Humanizer.Core.fr": "2.14.1", - "Humanizer.Core.fr-BE": "2.14.1", - "Humanizer.Core.he": "2.14.1", - "Humanizer.Core.hr": "2.14.1", - "Humanizer.Core.hu": "2.14.1", - "Humanizer.Core.hy": "2.14.1", - "Humanizer.Core.id": "2.14.1", - "Humanizer.Core.is": "2.14.1", - "Humanizer.Core.it": "2.14.1", - "Humanizer.Core.ja": "2.14.1", - "Humanizer.Core.ko-KR": "2.14.1", - "Humanizer.Core.ku": "2.14.1", - "Humanizer.Core.lv": "2.14.1", - "Humanizer.Core.ms-MY": "2.14.1", - "Humanizer.Core.mt": "2.14.1", - "Humanizer.Core.nb": "2.14.1", - "Humanizer.Core.nb-NO": "2.14.1", - "Humanizer.Core.nl": "2.14.1", - "Humanizer.Core.pl": "2.14.1", - "Humanizer.Core.pt": "2.14.1", - "Humanizer.Core.ro": "2.14.1", - "Humanizer.Core.ru": "2.14.1", - "Humanizer.Core.sk": "2.14.1", - "Humanizer.Core.sl": "2.14.1", - "Humanizer.Core.sr": "2.14.1", - "Humanizer.Core.sr-Latn": "2.14.1", - "Humanizer.Core.sv": "2.14.1", - "Humanizer.Core.th-TH": "2.14.1", - "Humanizer.Core.tr": "2.14.1", - "Humanizer.Core.uk": "2.14.1", - "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", - "Humanizer.Core.uz-Latn-UZ": "2.14.1", - "Humanizer.Core.vi": "2.14.1", - "Humanizer.Core.zh-CN": "2.14.1", - "Humanizer.Core.zh-Hans": "2.14.1", - "Humanizer.Core.zh-Hant": "2.14.1" - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "Humanizer.Core.af/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/af/Humanizer.resources.dll": { - "locale": "af" - } - } - }, - "Humanizer.Core.ar/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ar/Humanizer.resources.dll": { - "locale": "ar" - } - } - }, - "Humanizer.Core.az/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/az/Humanizer.resources.dll": { - "locale": "az" - } - } - }, - "Humanizer.Core.bg/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bg/Humanizer.resources.dll": { - "locale": "bg" - } - } - }, - "Humanizer.Core.bn-BD/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bn-BD/Humanizer.resources.dll": { - "locale": "bn-BD" - } - } - }, - "Humanizer.Core.cs/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/cs/Humanizer.resources.dll": { - "locale": "cs" - } - } - }, - "Humanizer.Core.da/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/da/Humanizer.resources.dll": { - "locale": "da" - } - } - }, - "Humanizer.Core.de/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/de/Humanizer.resources.dll": { - "locale": "de" - } - } - }, - "Humanizer.Core.el/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/el/Humanizer.resources.dll": { - "locale": "el" - } - } - }, - "Humanizer.Core.es/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/es/Humanizer.resources.dll": { - "locale": "es" - } - } - }, - "Humanizer.Core.fa/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fa/Humanizer.resources.dll": { - "locale": "fa" - } - } - }, - "Humanizer.Core.fi-FI/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fi-FI/Humanizer.resources.dll": { - "locale": "fi-FI" - } - } - }, - "Humanizer.Core.fr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr/Humanizer.resources.dll": { - "locale": "fr" - } - } - }, - "Humanizer.Core.fr-BE/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr-BE/Humanizer.resources.dll": { - "locale": "fr-BE" - } - } - }, - "Humanizer.Core.he/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/he/Humanizer.resources.dll": { - "locale": "he" - } - } - }, - "Humanizer.Core.hr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hr/Humanizer.resources.dll": { - "locale": "hr" - } - } - }, - "Humanizer.Core.hu/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hu/Humanizer.resources.dll": { - "locale": "hu" - } - } - }, - "Humanizer.Core.hy/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hy/Humanizer.resources.dll": { - "locale": "hy" - } - } - }, - "Humanizer.Core.id/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/id/Humanizer.resources.dll": { - "locale": "id" - } - } - }, - "Humanizer.Core.is/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/is/Humanizer.resources.dll": { - "locale": "is" - } - } - }, - "Humanizer.Core.it/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/it/Humanizer.resources.dll": { - "locale": "it" - } - } - }, - "Humanizer.Core.ja/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ja/Humanizer.resources.dll": { - "locale": "ja" - } - } - }, - "Humanizer.Core.ko-KR/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { - "locale": "ko-KR" - } - } - }, - "Humanizer.Core.ku/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ku/Humanizer.resources.dll": { - "locale": "ku" - } - } - }, - "Humanizer.Core.lv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/lv/Humanizer.resources.dll": { - "locale": "lv" - } - } - }, - "Humanizer.Core.ms-MY/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { - "locale": "ms-MY" - } - } - }, - "Humanizer.Core.mt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/mt/Humanizer.resources.dll": { - "locale": "mt" - } - } - }, - "Humanizer.Core.nb/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb/Humanizer.resources.dll": { - "locale": "nb" - } - } - }, - "Humanizer.Core.nb-NO/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb-NO/Humanizer.resources.dll": { - "locale": "nb-NO" - } - } - }, - "Humanizer.Core.nl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nl/Humanizer.resources.dll": { - "locale": "nl" - } - } - }, - "Humanizer.Core.pl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pl/Humanizer.resources.dll": { - "locale": "pl" - } - } - }, - "Humanizer.Core.pt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pt/Humanizer.resources.dll": { - "locale": "pt" - } - } - }, - "Humanizer.Core.ro/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ro/Humanizer.resources.dll": { - "locale": "ro" - } - } - }, - "Humanizer.Core.ru/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ru/Humanizer.resources.dll": { - "locale": "ru" - } - } - }, - "Humanizer.Core.sk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sk/Humanizer.resources.dll": { - "locale": "sk" - } - } - }, - "Humanizer.Core.sl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sl/Humanizer.resources.dll": { - "locale": "sl" - } - } - }, - "Humanizer.Core.sr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr/Humanizer.resources.dll": { - "locale": "sr" - } - } - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr-Latn/Humanizer.resources.dll": { - "locale": "sr-Latn" - } - } - }, - "Humanizer.Core.sv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sv/Humanizer.resources.dll": { - "locale": "sv" - } - } - }, - "Humanizer.Core.th-TH/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { - "locale": "th-TH" - } - } - }, - "Humanizer.Core.tr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/tr/Humanizer.resources.dll": { - "locale": "tr" - } - } - }, - "Humanizer.Core.uk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uk/Humanizer.resources.dll": { - "locale": "uk" - } - } - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { - "locale": "uz-Cyrl-UZ" - } - } - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { - "locale": "uz-Latn-UZ" - } - } - }, - "Humanizer.Core.vi/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/vi/Humanizer.resources.dll": { - "locale": "vi" - } - } - }, - "Humanizer.Core.zh-CN/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-CN/Humanizer.resources.dll": { - "locale": "zh-CN" - } - } - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hans/Humanizer.resources.dll": { - "locale": "zh-Hans" - } - } - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hant/Humanizer.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "System.DirectoryServices.Protocols": "7.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "dependencies": { - "Microsoft.Extensions.Features": "7.0.9", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.9", - "Newtonsoft.Json": "13.0.1", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Build/17.3.2": { - "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "System.Collections.Immutable": "6.0.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Reflection.Metadata": "6.0.0", - "System.Reflection.MetadataLoadContext": "6.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Dataflow": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.Build.Framework/17.3.2": { - "dependencies": { - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.Framework.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "assemblyVersion": "3.3.2.30504", - "fileVersion": "3.3.2.30504" - } - } - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "6.0.0", - "System.Memory": "4.5.5", - "System.Reflection.Metadata": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Features": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Data.DataSetExtensions": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.16" - } - } - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Elfie": "1.0.0", - "Microsoft.CodeAnalysis.Scripting.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0", - "Microsoft.DiaSymReader": "1.4.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "System.Composition": "6.0.0", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.SqlClient/5.0.2": { - "dependencies": { - "Azure.Identity": "1.6.0", - "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", - "Microsoft.SqlServer.Server": "1.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Caching": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - }, - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "5.0.1.0" - } - } - }, - "Microsoft.DiaSymReader/1.4.0": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.400.22.11101" - } - } - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "dependencies": { - "Humanizer": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Features": "4.4.0", - "Newtonsoft.Json": "13.0.1", - "NuGet.ProjectModel": "6.3.1" - }, - "runtime": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9", - "Microsoft.EntityFrameworkCore.Analyzers": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": {}, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Mono.TextTemplating": "2.2.1" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "dependencies": { - "Microsoft.Data.SqlClient": "5.0.2", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "7.0.9" - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {}, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.Features/7.0.9": { - "runtime": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.Extensions.Logging/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": {}, - "Microsoft.Extensions.Options/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Primitives/7.0.0": {}, - "Microsoft.Identity.Client/4.45.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.45.0.0", - "fileVersion": "4.45.0.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "dependencies": { - "Microsoft.Identity.Client": "4.45.0", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "2.19.3.0", - "fileVersion": "2.19.3.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.21.0", - "System.IdentityModel.Tokens.Jwt": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "6.21.0", - "System.Security.Cryptography.Cng": "5.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.NET.StringTools/17.3.2": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.NET.StringTools.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.OpenApi/1.4.3": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.4.3.0", - "fileVersion": "1.4.3.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "7.0.8" - }, - "runtime": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Razor": "6.0.11", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "dependencies": { - "Microsoft.Build": "17.3.2", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "dependencies": { - "System.CodeDom": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Mono.TextTemplating.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.1.1" - } - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "dependencies": { - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.22727" - } - } - }, - "NuGet.Common/6.3.1": { - "dependencies": { - "NuGet.Frameworks": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Common.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Configuration/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "dependencies": { - "NuGet.Configuration": "6.3.1", - "NuGet.LibraryModel": "6.3.1", - "NuGet.Protocol": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Frameworks/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.LibraryModel/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "NuGet.Versioning": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Packaging/6.3.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "NuGet.Configuration": "6.3.1", - "NuGet.Versioning": "6.3.1", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Pkcs": "5.0.0" - }, - "runtime": { - "lib/net5.0/NuGet.Packaging.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.ProjectModel/6.3.1": { - "dependencies": { - "NuGet.DependencyResolver.Core": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Protocol/6.3.1": { - "dependencies": { - "NuGet.Packaging": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.Protocol.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Versioning/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "Swashbuckle.AspNetCore/6.5.0": { - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" - } - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.5.1": {}, - "System.CodeDom/4.4.0": { - "runtime": { - "lib/netstandard2.0/System.CodeDom.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.6.25519.3" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Composition/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - } - }, - "System.Composition.AttributedModel/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Convention/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Hosting/6.0.0": { - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Runtime/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.TypedParts/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Data.DataSetExtensions/4.5.0": {}, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": {}, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.DirectoryServices.Protocols/7.0.1": { - "runtime": { - "lib/net7.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - }, - "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - }, - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Formats.Asn1/5.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Pipelines/7.0.0": {}, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Memory/4.5.5": {}, - "System.Memory.Data/1.0.2": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "assemblyVersion": "1.0.2.0", - "fileVersion": "1.0.221.20802" - } - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - } - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0", - "System.Reflection.Metadata": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/5.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Encodings.Web/7.0.0": {}, - "System.Text.Json/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Dataflow/6.0.0": {}, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Windows.Extensions/6.0.0": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - } - } - }, - "libraries": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==", - "path": "automapper/12.0.1", - "hashPath": "automapper.12.0.1.nupkg.sha512" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==", - "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1", - "hashPath": "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512" - }, - "Azure.Core/1.24.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==", - "path": "azure.core/1.24.0", - "hashPath": "azure.core.1.24.0.nupkg.sha512" - }, - "Azure.Identity/1.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==", - "path": "azure.identity/1.6.0", - "hashPath": "azure.identity.1.6.0.nupkg.sha512" - }, - "Humanizer/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", - "path": "humanizer/2.14.1", - "hashPath": "humanizer.2.14.1.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.af/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", - "path": "humanizer.core.af/2.14.1", - "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ar/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", - "path": "humanizer.core.ar/2.14.1", - "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.az/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", - "path": "humanizer.core.az/2.14.1", - "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bg/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", - "path": "humanizer.core.bg/2.14.1", - "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bn-BD/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", - "path": "humanizer.core.bn-bd/2.14.1", - "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.cs/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", - "path": "humanizer.core.cs/2.14.1", - "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.da/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", - "path": "humanizer.core.da/2.14.1", - "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.de/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", - "path": "humanizer.core.de/2.14.1", - "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.el/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", - "path": "humanizer.core.el/2.14.1", - "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.es/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", - "path": "humanizer.core.es/2.14.1", - "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fa/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", - "path": "humanizer.core.fa/2.14.1", - "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fi-FI/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", - "path": "humanizer.core.fi-fi/2.14.1", - "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", - "path": "humanizer.core.fr/2.14.1", - "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr-BE/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", - "path": "humanizer.core.fr-be/2.14.1", - "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.he/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", - "path": "humanizer.core.he/2.14.1", - "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", - "path": "humanizer.core.hr/2.14.1", - "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hu/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", - "path": "humanizer.core.hu/2.14.1", - "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hy/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", - "path": "humanizer.core.hy/2.14.1", - "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.id/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", - "path": "humanizer.core.id/2.14.1", - "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.is/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", - "path": "humanizer.core.is/2.14.1", - "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.it/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", - "path": "humanizer.core.it/2.14.1", - "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ja/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", - "path": "humanizer.core.ja/2.14.1", - "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ko-KR/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", - "path": "humanizer.core.ko-kr/2.14.1", - "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ku/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", - "path": "humanizer.core.ku/2.14.1", - "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.lv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", - "path": "humanizer.core.lv/2.14.1", - "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ms-MY/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", - "path": "humanizer.core.ms-my/2.14.1", - "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.mt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", - "path": "humanizer.core.mt/2.14.1", - "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", - "path": "humanizer.core.nb/2.14.1", - "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb-NO/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", - "path": "humanizer.core.nb-no/2.14.1", - "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", - "path": "humanizer.core.nl/2.14.1", - "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", - "path": "humanizer.core.pl/2.14.1", - "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", - "path": "humanizer.core.pt/2.14.1", - "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ro/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", - "path": "humanizer.core.ro/2.14.1", - "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ru/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", - "path": "humanizer.core.ru/2.14.1", - "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", - "path": "humanizer.core.sk/2.14.1", - "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", - "path": "humanizer.core.sl/2.14.1", - "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", - "path": "humanizer.core.sr/2.14.1", - "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", - "path": "humanizer.core.sr-latn/2.14.1", - "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", - "path": "humanizer.core.sv/2.14.1", - "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.th-TH/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", - "path": "humanizer.core.th-th/2.14.1", - "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.tr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", - "path": "humanizer.core.tr/2.14.1", - "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", - "path": "humanizer.core.uk/2.14.1", - "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", - "path": "humanizer.core.uz-cyrl-uz/2.14.1", - "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", - "path": "humanizer.core.uz-latn-uz/2.14.1", - "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.vi/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", - "path": "humanizer.core.vi/2.14.1", - "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-CN/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", - "path": "humanizer.core.zh-cn/2.14.1", - "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", - "path": "humanizer.core.zh-hans/2.14.1", - "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", - "path": "humanizer.core.zh-hant/2.14.1", - "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Sh+zGJAgG5MwQcHATWrKsFn4IY5psaX2c1QtKwSNPlEuTjZIZe3aVjEWMHT/ou2jkQ12S2kjOzaW5nMeg/cBA==", - "path": "microsoft.aspnetcore.authentication.negotiate/7.0.9", - "hashPath": "microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/A7MkuL0g4r/oNuASR2gIukWoG2360/tuS9RoiU1dOwTlMYthHJaK8NEpswMihcImCDryiHp5dJCPTZHIs9TQ==", - "path": "microsoft.aspnetcore.connections.abstractions/7.0.9", - "hashPath": "microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6iMRtYIQZj7gMC7iVotL9bZjCjnbV2ZkAAduKYHfV6v+WQhEjk0iEGSFNVh6N9rTCNTeZ2xVgv3xi675GwyDzQ==", - "path": "microsoft.aspnetcore.jsonpatch/7.0.9", - "hashPath": "microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dhAFLGV3RfK6BAbLYpTKcVch1hcyP2qDWNy7Pk2wGrQEO/yWbWwiR9c13hk5kGWcPMGeVMkcuftUo6OAHe2yIA==", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.9", - "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5kBnHntQTJqmYV66Khdl9OJ/j2Pw8cOKj8kNQuLCpfCsPbSijp334Vaad3vaGnG9Wpgq/VbSUSRxZOoroOe8zQ==", - "path": "microsoft.aspnetcore.openapi/7.0.9", - "hashPath": "microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SPjSZIL7JFI5XbVfRMPG/fHLr/xfumSrmN+IOimyIf71WQQ8u2hpaE5+VvpcgjJ5VrJMhfDEhdEAB+Nj/S16dQ==", - "path": "microsoft.aspnetcore.razor.language/6.0.11", - "hashPath": "microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Build/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k5+7CfF/aM/hykfnrF93VhbUnhGfpJkGaD+ce8VlhLnOqDyts7WV+8Up3YCP6qmXMZFeeH/Cp23w2wSliP0mBw==", - "path": "microsoft.build/17.3.2", - "hashPath": "microsoft.build.17.3.2.nupkg.sha512" - }, - "Microsoft.Build.Framework/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==", - "path": "microsoft.build.framework/17.3.2", - "hashPath": "microsoft.build.framework.17.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", - "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", - "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JfHupS/B7Jb5MZoYkFFABn3mux0wQgxi2D8F/rJYZeRBK2ZOyk7TjQ2Kq9rh6W/DCh0KNbbSbn5qoFar+ueHqw==", - "path": "microsoft.codeanalysis.common/4.4.0", - "hashPath": "microsoft.codeanalysis.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eD2w0xHRoaqK07hjlOKGR9eLNy3nimiGNeCClNax1NDgS/+DBtBqCjXelOa+TNy99kIB3nHhUqDmr46nDXy/RQ==", - "path": "microsoft.codeanalysis.csharp/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Un4XeiWD8Xo4A/Q6Wrkrt9UCas6EaP/ZfQAHXNjde5ULkvliWzvy0/ZlXzlPo6L/Xoon1BWOFMprIQWCjuLq9A==", - "path": "microsoft.codeanalysis.csharp.features/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ADmI2jcwJP9GgBsVx2l0Bo0v3Hn4hHBg1uJ5zHd230mkO8rUJBLZu2h3tCbpwJMkpAIRtrxuZDD5uNfiyz0Q5Q==", - "path": "microsoft.codeanalysis.csharp.workspaces/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", - "path": "microsoft.codeanalysis.elfie/1.0.0", - "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0LEXWpaDlZMl5lOnM872FuBmcDD99qKp4QmmFsMpJjnq7f21KuNchdyuSdh9pdpibl2JfdMWrvA56y5dKc6EPQ==", - "path": "microsoft.codeanalysis.features/4.4.0", - "hashPath": "microsoft.codeanalysis.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-40M7AHKPKvOw3LnWsaKmHitk0taBZ8982zoZBQstYzsfdH+tcIdeOewRHvuej23T7HV6d8se9MZdKC9O2I78vQ==", - "path": "microsoft.codeanalysis.razor/6.0.11", - "hashPath": "microsoft.codeanalysis.razor.6.0.11.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RkAwCFJ8LfN7TfbWDejm50nucPxVoG/vDh0qVIoGx1U2FZhaBct72U4lGIACLuYsa0dIlC7Y0ivBemfDHnqWmA==", - "path": "microsoft.codeanalysis.scripting.common/4.4.0", - "hashPath": "microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6KzmmTIUU7qInQldcSPaW0nkrO71zlFPhoiabFBhkokEit49rLx4Kr/G3agBchYzirScrXibqgTRQkvx9WcJTw==", - "path": "microsoft.codeanalysis.workspaces.common/4.4.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/5.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mxcYU9I5TLzUegLVXiTtOE89RXN3GafL1Y+ExIbXvivvQtxplI4wxOgsiZGO4TZC18OJqui7mLVmiYpdFFImRQ==", - "path": "microsoft.data.sqlclient/5.0.2", - "hashPath": "microsoft.data.sqlclient.5.0.2.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==", - "path": "microsoft.data.sqlclient.sni.runtime/5.0.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512" - }, - "Microsoft.DiaSymReader/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLtWq5/W5ePzSraavAFeXAbasE6REDByizTz6M8yQO3e4jf+6pRqPLdNCSvnSfKRVqsF7y/lTVWhqlf89ttweg==", - "path": "microsoft.diasymreader/1.4.0", - "hashPath": "microsoft.diasymreader.1.4.0.nupkg.sha512" - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QXtyFZWYAwlKymbFCQT5O21BJ7hLmQcJGB/EdvUV0VuJyeWJMf/8JSI+ijw3IoOd7MUTBpGVNNE8UDM9gUm4Qw==", - "path": "microsoft.dotnet.scaffolding.shared/7.0.8", - "hashPath": "microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9YuCdQWuRAmYYHqwW1h5ukKMC1fmNvcVHdp3gb8zdHxwSQz7hkGpYOBEjm6dRXRmGRkpUyHL8rwUz4kd53Ev0A==", - "path": "microsoft.entityframeworkcore/7.0.9", - "hashPath": "microsoft.entityframeworkcore.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cfY6Fn7cnP/5pXndL8QYaey/B2nGn1fwze5aSaMJymmbqwqYzFiszHuWbsdVBCDYJc8ok7eB1m/nCc3/rltulQ==", - "path": "microsoft.entityframeworkcore.abstractions/7.0.9", - "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VvqFD3DdML6LhPCAR/lG2xNX66juylC8v57yUAAYnUSdEUOMRi3lNoT4OrNdG0rere3UOQPhvVl5FH2QdyoF8Q==", - "path": "microsoft.entityframeworkcore.analyzers/7.0.9", - "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tWsa+spzKZAwHrUP6vYM1LLh0P89UMcldEjerFPPZb0LcI/ONQmh7ldK4Q8TeRuIiuXxYgRYPElSgxwLp14oug==", - "path": "microsoft.entityframeworkcore.design/7.0.9", - "hashPath": "microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u7iN6cNd6SJUlpdk24JVIbkji/UbkEEQ7pXncTyT4eXXj+Hz2y4NSZFOAywPGcioIgX1YzbKWDiJhk7hjSFxBQ==", - "path": "microsoft.entityframeworkcore.relational/7.0.9", - "hashPath": "microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-19S5BWZBcaShhLWzePi9iOq+meKIgL+dDlS0NQgPOQapu3wb3So3ZL0xgPmmlyq3GLYvXiCmQsK3Yv3vXYaMTg==", - "path": "microsoft.entityframeworkcore.sqlserver/7.0.9", - "hashPath": "microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GWOSIe8ltR/mqv2wpRvMhy6ULapdKhZXXpXSGWzG1fRxhYXjSGpe2Pqhxqo46o9RDGlk0WJUXrwyU+N4voPxMw==", - "path": "microsoft.entityframeworkcore.tools/7.0.9", - "hashPath": "microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", - "path": "microsoft.extensions.apidescription.server/6.0.5", - "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", - "path": "microsoft.extensions.caching.abstractions/7.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", - "path": "microsoft.extensions.caching.memory/7.0.0", - "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", - "path": "microsoft.extensions.configuration.abstractions/7.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", - "path": "microsoft.extensions.dependencyinjection/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", - "path": "microsoft.extensions.dependencymodel/7.0.0", - "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Features/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IJ2vdDt2OYCKyJ7ZJPIZKa4b0M0tsG36h0QUt1d/E8IMAnjIncI+1i9Am0nmheD/wpcVd9eDykiV4dklcwUd3Q==", - "path": "microsoft.extensions.features/7.0.9", - "hashPath": "microsoft.extensions.features.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", - "path": "microsoft.extensions.logging/7.0.0", - "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", - "path": "microsoft.extensions.logging.abstractions/7.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", - "path": "microsoft.extensions.options/7.0.0", - "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", - "path": "microsoft.extensions.primitives/7.0.0", - "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.45.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==", - "path": "microsoft.identity.client/4.45.0", - "hashPath": "microsoft.identity.client.4.45.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", - "path": "microsoft.identity.client.extensions.msal/2.19.3", - "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==", - "path": "microsoft.identitymodel.abstractions/6.21.0", - "hashPath": "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==", - "path": "microsoft.identitymodel.jsonwebtokens/6.21.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==", - "path": "microsoft.identitymodel.logging/6.21.0", - "hashPath": "microsoft.identitymodel.logging.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==", - "path": "microsoft.identitymodel.protocols/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==", - "path": "microsoft.identitymodel.tokens/6.21.0", - "hashPath": "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512" - }, - "Microsoft.NET.StringTools/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==", - "path": "microsoft.net.stringtools/17.3.2", - "hashPath": "microsoft.net.stringtools.17.3.2.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.OpenApi/1.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", - "path": "microsoft.openapi/1.4.3", - "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AbrSIuBwG/7+7JBMOSyHVYqcz8YdUdArGIx4Asckm/U8FWKdT6NSJmObZh3X2Da2/W176FqG3MPTPtw/P0kJag==", - "path": "microsoft.visualstudio.web.codegeneration/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wdud/mzEfFMHqPNBb+N+jVeI2INNSP5WlCrPepQqvoLqiZwM0wUvf7yWGrVbNHBMOjDk3lIavqjXNkY9PriOQg==", - "path": "microsoft.visualstudio.web.codegeneration.core/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-56UeN0J8SA5PJjvf6Mv0ZbhLWO6Cr+YGM5eOsNejpQDL+ba8pt8BR7SBMTnSrZIOEeOhY3nAPUkOUK3bh+v3Tg==", - "path": "microsoft.visualstudio.web.codegeneration.design/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlyRk0pmpvPCzCot0bY+Lt6bctGC4dqrQxk1vk2ep+wTdH/CZ8FflnWHEKGBpd+kMrwy93UbJZ8HSAxlBLksLA==", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JTepVMzR2XOr6BVgejMltlzi3O6LMpNb3dz0VKczsjKKX/l6ZT1iTUC6FjuHs9SNTc8rTlEK7hw2TIKpGy1tCQ==", - "path": "microsoft.visualstudio.web.codegeneration.templating/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5T6uK9MH6zWXXyVinlvmbz7fFiuA5/UIFa1wAWD6ylkReDlPTEOq5AMwlkdlEPZuqMgICH4N3BQAizY/EIAlzA==", - "path": "microsoft.visualstudio.web.codegeneration.utils/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xQIJfP4NpuAnFykWuXW5nr+1WyPLNVbMhqFS7SKX6CIm32Ak9iCMFS1NSbksl5bfIXaSg1rjJM8TpZYoKM+Ffg==", - "path": "microsoft.visualstudio.web.codegenerators.mvc/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "path": "mono.texttemplating/2.2.1", - "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "path": "newtonsoft.json.bson/1.0.2", - "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" - }, - "NuGet.Common/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==", - "path": "nuget.common/6.3.1", - "hashPath": "nuget.common.6.3.1.nupkg.sha512" - }, - "NuGet.Configuration/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==", - "path": "nuget.configuration/6.3.1", - "hashPath": "nuget.configuration.6.3.1.nupkg.sha512" - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wSr4XMNE5f82ZveuATVwj+kS1/dWyXARjOZcS70Aiaj+XEWL8uo4EFTwPIvqPHWCem5cxmavBRuWBwlQ4HWjeA==", - "path": "nuget.dependencyresolver.core/6.3.1", - "hashPath": "nuget.dependencyresolver.core.6.3.1.nupkg.sha512" - }, - "NuGet.Frameworks/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==", - "path": "nuget.frameworks/6.3.1", - "hashPath": "nuget.frameworks.6.3.1.nupkg.sha512" - }, - "NuGet.LibraryModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aEB4AesZ+ddLVTBbewQFNHagbVbwewobBk2+8mk0THWjn0qIUH2l4kLTMmiTD7DOthVB6pYds8bz1B8Z0rEPrQ==", - "path": "nuget.librarymodel/6.3.1", - "hashPath": "nuget.librarymodel.6.3.1.nupkg.sha512" - }, - "NuGet.Packaging/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==", - "path": "nuget.packaging/6.3.1", - "hashPath": "nuget.packaging.6.3.1.nupkg.sha512" - }, - "NuGet.ProjectModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TtC4zUKnMIkJBtM7P1GtvVK2jCh4Xi8SVK+bEsCUSoZ0rJf7Zqw2oBrmMNWe51IlfOcYkREmn6xif9mgJXOnmQ==", - "path": "nuget.projectmodel/6.3.1", - "hashPath": "nuget.projectmodel.6.3.1.nupkg.sha512" - }, - "NuGet.Protocol/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==", - "path": "nuget.protocol/6.3.1", - "hashPath": "nuget.protocol.6.3.1.nupkg.sha512" - }, - "NuGet.Versioning/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==", - "path": "nuget.versioning/6.3.1", - "hashPath": "nuget.versioning.6.3.1.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", - "path": "swashbuckle.aspnetcore/6.5.0", - "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", - "path": "swashbuckle.aspnetcore.swagger/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", - "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", - "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.CodeDom/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "path": "system.codedom/4.4.0", - "hashPath": "system.codedom.4.4.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", - "path": "system.composition/6.0.0", - "hashPath": "system.composition.6.0.0.nupkg.sha512" - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", - "path": "system.composition.attributedmodel/6.0.0", - "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", - "path": "system.composition.convention/6.0.0", - "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", - "path": "system.composition.hosting/6.0.0", - "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", - "path": "system.composition.runtime/6.0.0", - "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", - "path": "system.composition.typedparts/6.0.0", - "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", - "path": "system.data.datasetextensions/4.5.0", - "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/7.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", - "path": "system.directoryservices.protocols/7.0.1", - "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Formats.Asn1/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", - "path": "system.formats.asn1/5.0.0", - "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==", - "path": "system.identitymodel.tokens.jwt/6.21.0", - "hashPath": "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Pipelines/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", - "path": "system.io.pipelines/7.0.0", - "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "path": "system.memory.data/1.0.2", - "hashPath": "system.memory.data.1.0.2.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sffDOcex1C3HO5kDolOYcWXTwRpZY/LvJujM6SMjn63fWMJWchYAAmkoAJXlbpZ5yf4d+KMgxd+LeETa4gD9sQ==", - "path": "system.reflection.metadata/6.0.0", - "hashPath": "system.reflection.metadata.6.0.0.nupkg.sha512" - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SuK8qTHbmG3PToLo1TEq8YSfY31FiKhASBmjozUTAleDgiX4H2X4jm0VPFb+K2soSSmYPyHTpHp35TctfNtDzQ==", - "path": "system.reflection.metadataloadcontext/6.0.0", - "hashPath": "system.reflection.metadataloadcontext.6.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", - "path": "system.runtime.caching/5.0.0", - "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "path": "system.security.cryptography.cng/5.0.0", - "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", - "path": "system.security.cryptography.pkcs/5.0.0", - "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" - }, - "System.Text.Json/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", - "path": "system.text.json/7.0.0", - "hashPath": "system.text.json.7.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Dataflow/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+tyDCU3/B1lDdOOAJywHQoFwyXIUghIaP2BxG79uvhfTnO+D9qIgjVlL/JV2NTliYbMHpd6eKDmHp2VHpij7MA==", - "path": "system.threading.tasks.dataflow/6.0.0", - "hashPath": "system.threading.tasks.dataflow.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.dll b/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 005b791..0000000 Binary files a/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.exe b/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.exe deleted file mode 100644 index 17fcb9f..0000000 Binary files a/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.exe and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.pdb b/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.pdb deleted file mode 100644 index f7aebb9..0000000 Binary files a/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.pdb and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json b/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json deleted file mode 100644 index 10d7259..0000000 --- a/bin/Release/net7.0/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net7.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "7.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "7.0.0" - } - ], - "configProperties": { - "System.GC.Server": true, - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/bin/Release/net7.0/Microsoft.SqlServer.Server.dll b/bin/Release/net7.0/Microsoft.SqlServer.Server.dll deleted file mode 100644 index ddeaa86..0000000 Binary files a/bin/Release/net7.0/Microsoft.SqlServer.Server.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll b/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll deleted file mode 100644 index a5b93ee..0000000 Binary files a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll b/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll deleted file mode 100644 index 534a126..0000000 Binary files a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll b/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll deleted file mode 100644 index 99fe458..0000000 Binary files a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll b/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll deleted file mode 100644 index 0391697..0000000 Binary files a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll b/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll deleted file mode 100644 index a374651..0000000 Binary files a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll b/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll deleted file mode 100644 index a1c3c0f..0000000 Binary files a/bin/Release/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll and /dev/null differ diff --git a/bin/Release/net7.0/Microsoft.Win32.SystemEvents.dll b/bin/Release/net7.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 3ab5850..0000000 Binary files a/bin/Release/net7.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/bin/Release/net7.0/Mono.TextTemplating.dll b/bin/Release/net7.0/Mono.TextTemplating.dll deleted file mode 100644 index d5a4b3c..0000000 Binary files a/bin/Release/net7.0/Mono.TextTemplating.dll and /dev/null differ diff --git a/bin/Release/net7.0/Newtonsoft.Json.Bson.dll b/bin/Release/net7.0/Newtonsoft.Json.Bson.dll deleted file mode 100644 index e9b1dd2..0000000 Binary files a/bin/Release/net7.0/Newtonsoft.Json.Bson.dll and /dev/null differ diff --git a/bin/Release/net7.0/Newtonsoft.Json.dll b/bin/Release/net7.0/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/bin/Release/net7.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/bin/Release/net7.0/NuGet.Common.dll b/bin/Release/net7.0/NuGet.Common.dll deleted file mode 100644 index ce4bda8..0000000 Binary files a/bin/Release/net7.0/NuGet.Common.dll and /dev/null differ diff --git a/bin/Release/net7.0/NuGet.Configuration.dll b/bin/Release/net7.0/NuGet.Configuration.dll deleted file mode 100644 index cbe9417..0000000 Binary files a/bin/Release/net7.0/NuGet.Configuration.dll and /dev/null differ diff --git a/bin/Release/net7.0/NuGet.DependencyResolver.Core.dll b/bin/Release/net7.0/NuGet.DependencyResolver.Core.dll deleted file mode 100644 index 908b3e6..0000000 Binary files a/bin/Release/net7.0/NuGet.DependencyResolver.Core.dll and /dev/null differ diff --git a/bin/Release/net7.0/NuGet.Frameworks.dll b/bin/Release/net7.0/NuGet.Frameworks.dll deleted file mode 100644 index 4eacf6a..0000000 Binary files a/bin/Release/net7.0/NuGet.Frameworks.dll and /dev/null differ diff --git a/bin/Release/net7.0/NuGet.LibraryModel.dll b/bin/Release/net7.0/NuGet.LibraryModel.dll deleted file mode 100644 index ba03b76..0000000 Binary files a/bin/Release/net7.0/NuGet.LibraryModel.dll and /dev/null differ diff --git a/bin/Release/net7.0/NuGet.Packaging.dll b/bin/Release/net7.0/NuGet.Packaging.dll deleted file mode 100644 index a3ec988..0000000 Binary files a/bin/Release/net7.0/NuGet.Packaging.dll and /dev/null differ diff --git a/bin/Release/net7.0/NuGet.ProjectModel.dll b/bin/Release/net7.0/NuGet.ProjectModel.dll deleted file mode 100644 index fe01820..0000000 Binary files a/bin/Release/net7.0/NuGet.ProjectModel.dll and /dev/null differ diff --git a/bin/Release/net7.0/NuGet.Protocol.dll b/bin/Release/net7.0/NuGet.Protocol.dll deleted file mode 100644 index 6b3aa97..0000000 Binary files a/bin/Release/net7.0/NuGet.Protocol.dll and /dev/null differ diff --git a/bin/Release/net7.0/NuGet.Versioning.dll b/bin/Release/net7.0/NuGet.Versioning.dll deleted file mode 100644 index 60cbd1e..0000000 Binary files a/bin/Release/net7.0/NuGet.Versioning.dll and /dev/null differ diff --git a/bin/Release/net7.0/Swashbuckle.AspNetCore.Swagger.dll b/bin/Release/net7.0/Swashbuckle.AspNetCore.Swagger.dll deleted file mode 100644 index fd052a3..0000000 Binary files a/bin/Release/net7.0/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ diff --git a/bin/Release/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/bin/Release/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll deleted file mode 100644 index 2ea00ee..0000000 Binary files a/bin/Release/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ diff --git a/bin/Release/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/bin/Release/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll deleted file mode 100644 index 0571d0f..0000000 Binary files a/bin/Release/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.CodeDom.dll b/bin/Release/net7.0/System.CodeDom.dll deleted file mode 100644 index 3128b6a..0000000 Binary files a/bin/Release/net7.0/System.CodeDom.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Composition.AttributedModel.dll b/bin/Release/net7.0/System.Composition.AttributedModel.dll deleted file mode 100644 index d37283b..0000000 Binary files a/bin/Release/net7.0/System.Composition.AttributedModel.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Composition.Convention.dll b/bin/Release/net7.0/System.Composition.Convention.dll deleted file mode 100644 index b6fa4ab..0000000 Binary files a/bin/Release/net7.0/System.Composition.Convention.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Composition.Hosting.dll b/bin/Release/net7.0/System.Composition.Hosting.dll deleted file mode 100644 index c67f1c0..0000000 Binary files a/bin/Release/net7.0/System.Composition.Hosting.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Composition.Runtime.dll b/bin/Release/net7.0/System.Composition.Runtime.dll deleted file mode 100644 index 2a4b38c..0000000 Binary files a/bin/Release/net7.0/System.Composition.Runtime.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Composition.TypedParts.dll b/bin/Release/net7.0/System.Composition.TypedParts.dll deleted file mode 100644 index 7c0c780..0000000 Binary files a/bin/Release/net7.0/System.Composition.TypedParts.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Configuration.ConfigurationManager.dll b/bin/Release/net7.0/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index d67c8a8..0000000 Binary files a/bin/Release/net7.0/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.DirectoryServices.Protocols.dll b/bin/Release/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 4d2da59..0000000 Binary files a/bin/Release/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Drawing.Common.dll b/bin/Release/net7.0/System.Drawing.Common.dll deleted file mode 100644 index be6915e..0000000 Binary files a/bin/Release/net7.0/System.Drawing.Common.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.IdentityModel.Tokens.Jwt.dll b/bin/Release/net7.0/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index 131456c..0000000 Binary files a/bin/Release/net7.0/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Memory.Data.dll b/bin/Release/net7.0/System.Memory.Data.dll deleted file mode 100644 index 6f2a3e0..0000000 Binary files a/bin/Release/net7.0/System.Memory.Data.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Reflection.MetadataLoadContext.dll b/bin/Release/net7.0/System.Reflection.MetadataLoadContext.dll deleted file mode 100644 index e87fcda..0000000 Binary files a/bin/Release/net7.0/System.Reflection.MetadataLoadContext.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Runtime.Caching.dll b/bin/Release/net7.0/System.Runtime.Caching.dll deleted file mode 100644 index 6a6eb85..0000000 Binary files a/bin/Release/net7.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Security.Cryptography.ProtectedData.dll b/bin/Release/net7.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 1ba8770..0000000 Binary files a/bin/Release/net7.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Security.Permissions.dll b/bin/Release/net7.0/System.Security.Permissions.dll deleted file mode 100644 index 39dd4df..0000000 Binary files a/bin/Release/net7.0/System.Security.Permissions.dll and /dev/null differ diff --git a/bin/Release/net7.0/System.Windows.Extensions.dll b/bin/Release/net7.0/System.Windows.Extensions.dll deleted file mode 100644 index c3e8844..0000000 Binary files a/bin/Release/net7.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/bin/Release/net7.0/af/Humanizer.resources.dll b/bin/Release/net7.0/af/Humanizer.resources.dll deleted file mode 100644 index e191f5f..0000000 Binary files a/bin/Release/net7.0/af/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/appsettings.Development.json b/bin/Release/net7.0/appsettings.Development.json deleted file mode 100644 index 0c208ae..0000000 --- a/bin/Release/net7.0/appsettings.Development.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/bin/Release/net7.0/appsettings.json b/bin/Release/net7.0/appsettings.json deleted file mode 100644 index 005b7be..0000000 --- a/bin/Release/net7.0/appsettings.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "Context": "Server=RZ1VCMSQL001\\MSSSP;Database=SSP;TrustServerCertificate=True;Encrypt=False;Integrated Security=SSPI" - } -} \ No newline at end of file diff --git a/bin/Release/net7.0/ar/Humanizer.resources.dll b/bin/Release/net7.0/ar/Humanizer.resources.dll deleted file mode 100644 index 319af06..0000000 Binary files a/bin/Release/net7.0/ar/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/az/Humanizer.resources.dll b/bin/Release/net7.0/az/Humanizer.resources.dll deleted file mode 100644 index f51f16e..0000000 Binary files a/bin/Release/net7.0/az/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/bg/Humanizer.resources.dll b/bin/Release/net7.0/bg/Humanizer.resources.dll deleted file mode 100644 index c6b47e9..0000000 Binary files a/bin/Release/net7.0/bg/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/bn-BD/Humanizer.resources.dll b/bin/Release/net7.0/bn-BD/Humanizer.resources.dll deleted file mode 100644 index dead005..0000000 Binary files a/bin/Release/net7.0/bn-BD/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/cs/Humanizer.resources.dll b/bin/Release/net7.0/cs/Humanizer.resources.dll deleted file mode 100644 index 43094ae..0000000 Binary files a/bin/Release/net7.0/cs/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 10a5b8f..0000000 Binary files a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 6e642b5..0000000 Binary files a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 160cb79..0000000 Binary files a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 3a0c7f5..0000000 Binary files a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 9fda8a8..0000000 Binary files a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 1c4018b..0000000 Binary files a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 1662edf..0000000 Binary files a/bin/Release/net7.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/da/Humanizer.resources.dll b/bin/Release/net7.0/da/Humanizer.resources.dll deleted file mode 100644 index 25c518a..0000000 Binary files a/bin/Release/net7.0/da/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/de/Humanizer.resources.dll b/bin/Release/net7.0/de/Humanizer.resources.dll deleted file mode 100644 index eca8773..0000000 Binary files a/bin/Release/net7.0/de/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index b05c568..0000000 Binary files a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 7d8f563..0000000 Binary files a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d647fbf..0000000 Binary files a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 8c7bda7..0000000 Binary files a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 463b895..0000000 Binary files a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d2b2ebe..0000000 Binary files a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 41818f4..0000000 Binary files a/bin/Release/net7.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/dotnet-aspnet-codegenerator-design.dll b/bin/Release/net7.0/dotnet-aspnet-codegenerator-design.dll deleted file mode 100644 index e5d1b54..0000000 Binary files a/bin/Release/net7.0/dotnet-aspnet-codegenerator-design.dll and /dev/null differ diff --git a/bin/Release/net7.0/el/Humanizer.resources.dll b/bin/Release/net7.0/el/Humanizer.resources.dll deleted file mode 100644 index 7496654..0000000 Binary files a/bin/Release/net7.0/el/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/es/Humanizer.resources.dll b/bin/Release/net7.0/es/Humanizer.resources.dll deleted file mode 100644 index a2ccea7..0000000 Binary files a/bin/Release/net7.0/es/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 5a0e03d..0000000 Binary files a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d91150f..0000000 Binary files a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2b1d73e..0000000 Binary files a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 4ae1f61..0000000 Binary files a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 58bac36..0000000 Binary files a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 472b0bb..0000000 Binary files a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 66145cb..0000000 Binary files a/bin/Release/net7.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fa/Humanizer.resources.dll b/bin/Release/net7.0/fa/Humanizer.resources.dll deleted file mode 100644 index 71fb905..0000000 Binary files a/bin/Release/net7.0/fa/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fi-FI/Humanizer.resources.dll b/bin/Release/net7.0/fi-FI/Humanizer.resources.dll deleted file mode 100644 index 553a14d..0000000 Binary files a/bin/Release/net7.0/fi-FI/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fr-BE/Humanizer.resources.dll b/bin/Release/net7.0/fr-BE/Humanizer.resources.dll deleted file mode 100644 index d75e247..0000000 Binary files a/bin/Release/net7.0/fr-BE/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fr/Humanizer.resources.dll b/bin/Release/net7.0/fr/Humanizer.resources.dll deleted file mode 100644 index 5fb44a9..0000000 Binary files a/bin/Release/net7.0/fr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 401ea0b..0000000 Binary files a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index cc8b864..0000000 Binary files a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index a98d0ec..0000000 Binary files a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 4b77322..0000000 Binary files a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index ada43a9..0000000 Binary files a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 474cc07..0000000 Binary files a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e6c12b5..0000000 Binary files a/bin/Release/net7.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/he/Humanizer.resources.dll b/bin/Release/net7.0/he/Humanizer.resources.dll deleted file mode 100644 index deb8b6e..0000000 Binary files a/bin/Release/net7.0/he/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/hr/Humanizer.resources.dll b/bin/Release/net7.0/hr/Humanizer.resources.dll deleted file mode 100644 index 4d50733..0000000 Binary files a/bin/Release/net7.0/hr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/hu/Humanizer.resources.dll b/bin/Release/net7.0/hu/Humanizer.resources.dll deleted file mode 100644 index f93d556..0000000 Binary files a/bin/Release/net7.0/hu/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/hy/Humanizer.resources.dll b/bin/Release/net7.0/hy/Humanizer.resources.dll deleted file mode 100644 index a61b5e6..0000000 Binary files a/bin/Release/net7.0/hy/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/id/Humanizer.resources.dll b/bin/Release/net7.0/id/Humanizer.resources.dll deleted file mode 100644 index e605f23..0000000 Binary files a/bin/Release/net7.0/id/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/is/Humanizer.resources.dll b/bin/Release/net7.0/is/Humanizer.resources.dll deleted file mode 100644 index 40e36d7..0000000 Binary files a/bin/Release/net7.0/is/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/it/Humanizer.resources.dll b/bin/Release/net7.0/it/Humanizer.resources.dll deleted file mode 100644 index 9434487..0000000 Binary files a/bin/Release/net7.0/it/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 2315e95..0000000 Binary files a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 23f6463..0000000 Binary files a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index dd024d9..0000000 Binary files a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 5f2ca6f..0000000 Binary files a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index c4b443b..0000000 Binary files a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 798de46..0000000 Binary files a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index a354025..0000000 Binary files a/bin/Release/net7.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ja/Humanizer.resources.dll b/bin/Release/net7.0/ja/Humanizer.resources.dll deleted file mode 100644 index f949d63..0000000 Binary files a/bin/Release/net7.0/ja/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 7a9c62e..0000000 Binary files a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 70682db..0000000 Binary files a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 0a8ac29..0000000 Binary files a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index dd8dced..0000000 Binary files a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 752d6b7..0000000 Binary files a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d02270a..0000000 Binary files a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8ee1273..0000000 Binary files a/bin/Release/net7.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ko-KR/Humanizer.resources.dll b/bin/Release/net7.0/ko-KR/Humanizer.resources.dll deleted file mode 100644 index 6a5f6c7..0000000 Binary files a/bin/Release/net7.0/ko-KR/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 1c8a1a4..0000000 Binary files a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 5101654..0000000 Binary files a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 15249dd..0000000 Binary files a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 45b5bfd..0000000 Binary files a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 0d2793b..0000000 Binary files a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 32b471d..0000000 Binary files a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 7881c82..0000000 Binary files a/bin/Release/net7.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ku/Humanizer.resources.dll b/bin/Release/net7.0/ku/Humanizer.resources.dll deleted file mode 100644 index 606d2b9..0000000 Binary files a/bin/Release/net7.0/ku/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/lv/Humanizer.resources.dll b/bin/Release/net7.0/lv/Humanizer.resources.dll deleted file mode 100644 index 463bf2d..0000000 Binary files a/bin/Release/net7.0/lv/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ms-MY/Humanizer.resources.dll b/bin/Release/net7.0/ms-MY/Humanizer.resources.dll deleted file mode 100644 index 6494db8..0000000 Binary files a/bin/Release/net7.0/ms-MY/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/mt/Humanizer.resources.dll b/bin/Release/net7.0/mt/Humanizer.resources.dll deleted file mode 100644 index 7e056c7..0000000 Binary files a/bin/Release/net7.0/mt/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/nb-NO/Humanizer.resources.dll b/bin/Release/net7.0/nb-NO/Humanizer.resources.dll deleted file mode 100644 index 4ff1965..0000000 Binary files a/bin/Release/net7.0/nb-NO/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/nb/Humanizer.resources.dll b/bin/Release/net7.0/nb/Humanizer.resources.dll deleted file mode 100644 index 48d7d6e..0000000 Binary files a/bin/Release/net7.0/nb/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/nl/Humanizer.resources.dll b/bin/Release/net7.0/nl/Humanizer.resources.dll deleted file mode 100644 index e1bca89..0000000 Binary files a/bin/Release/net7.0/nl/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pl/Humanizer.resources.dll b/bin/Release/net7.0/pl/Humanizer.resources.dll deleted file mode 100644 index 1b81e27..0000000 Binary files a/bin/Release/net7.0/pl/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index b1648b9..0000000 Binary files a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ab1f415..0000000 Binary files a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index f6565e0..0000000 Binary files a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 1ea99f3..0000000 Binary files a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 919a672..0000000 Binary files a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d1b15d9..0000000 Binary files a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 03b64a3..0000000 Binary files a/bin/Release/net7.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index d146dec..0000000 Binary files a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d6ffabe..0000000 Binary files a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index b179fd5..0000000 Binary files a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 331d87c..0000000 Binary files a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index a326d59..0000000 Binary files a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 44a8a4a..0000000 Binary files a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 186108a..0000000 Binary files a/bin/Release/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/pt/Humanizer.resources.dll b/bin/Release/net7.0/pt/Humanizer.resources.dll deleted file mode 100644 index 71daa56..0000000 Binary files a/bin/Release/net7.0/pt/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ro/Humanizer.resources.dll b/bin/Release/net7.0/ro/Humanizer.resources.dll deleted file mode 100644 index 0aea9b9..0000000 Binary files a/bin/Release/net7.0/ro/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ru/Humanizer.resources.dll b/bin/Release/net7.0/ru/Humanizer.resources.dll deleted file mode 100644 index dd2f875..0000000 Binary files a/bin/Release/net7.0/ru/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index c32fb26..0000000 Binary files a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ca6f13a..0000000 Binary files a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4b1c65a..0000000 Binary files a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 7f4fca5..0000000 Binary files a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 8bcb19b..0000000 Binary files a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index ff641b1..0000000 Binary files a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 55cd313..0000000 Binary files a/bin/Release/net7.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll b/bin/Release/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index f535812..0000000 Binary files a/bin/Release/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll b/bin/Release/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 1b4c830..0000000 Binary files a/bin/Release/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/bin/Release/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 9e26473..0000000 Binary files a/bin/Release/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/bin/Release/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 9bd0326..0000000 Binary files a/bin/Release/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Release/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index 6bc82a0..0000000 Binary files a/bin/Release/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Release/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index 927516f..0000000 Binary files a/bin/Release/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Release/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index a00639b..0000000 Binary files a/bin/Release/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Release/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index ffb6e3a..0000000 Binary files a/bin/Release/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/bin/Release/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 66af198..0000000 Binary files a/bin/Release/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/bin/Release/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 7c9e87b..0000000 Binary files a/bin/Release/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/bin/Release/net7.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 332dbfa..0000000 Binary files a/bin/Release/net7.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/bin/Release/net7.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index 69f0d1b..0000000 Binary files a/bin/Release/net7.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll b/bin/Release/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 951a113..0000000 Binary files a/bin/Release/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/bin/Release/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 59ebd7f..0000000 Binary files a/bin/Release/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/bin/Release/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/bin/Release/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll deleted file mode 100644 index 432ebb4..0000000 Binary files a/bin/Release/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/bin/Release/net7.0/sk/Humanizer.resources.dll b/bin/Release/net7.0/sk/Humanizer.resources.dll deleted file mode 100644 index 4c03f54..0000000 Binary files a/bin/Release/net7.0/sk/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/sl/Humanizer.resources.dll b/bin/Release/net7.0/sl/Humanizer.resources.dll deleted file mode 100644 index b79bb3c..0000000 Binary files a/bin/Release/net7.0/sl/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/sr-Latn/Humanizer.resources.dll b/bin/Release/net7.0/sr-Latn/Humanizer.resources.dll deleted file mode 100644 index e846785..0000000 Binary files a/bin/Release/net7.0/sr-Latn/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/sr/Humanizer.resources.dll b/bin/Release/net7.0/sr/Humanizer.resources.dll deleted file mode 100644 index 7e36e26..0000000 Binary files a/bin/Release/net7.0/sr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/sv/Humanizer.resources.dll b/bin/Release/net7.0/sv/Humanizer.resources.dll deleted file mode 100644 index 70974a5..0000000 Binary files a/bin/Release/net7.0/sv/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/th-TH/Humanizer.resources.dll b/bin/Release/net7.0/th-TH/Humanizer.resources.dll deleted file mode 100644 index 4dcc85d..0000000 Binary files a/bin/Release/net7.0/th-TH/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/tr/Humanizer.resources.dll b/bin/Release/net7.0/tr/Humanizer.resources.dll deleted file mode 100644 index eff6ad8..0000000 Binary files a/bin/Release/net7.0/tr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 5eb7e9c..0000000 Binary files a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index b870685..0000000 Binary files a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d3514a4..0000000 Binary files a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index f23a22f..0000000 Binary files a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 6df319d..0000000 Binary files a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6110c60..0000000 Binary files a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index edfdcf4..0000000 Binary files a/bin/Release/net7.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/uk/Humanizer.resources.dll b/bin/Release/net7.0/uk/Humanizer.resources.dll deleted file mode 100644 index d4fb7a2..0000000 Binary files a/bin/Release/net7.0/uk/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/uz-Cyrl-UZ/Humanizer.resources.dll b/bin/Release/net7.0/uz-Cyrl-UZ/Humanizer.resources.dll deleted file mode 100644 index c76160d..0000000 Binary files a/bin/Release/net7.0/uz-Cyrl-UZ/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/uz-Latn-UZ/Humanizer.resources.dll b/bin/Release/net7.0/uz-Latn-UZ/Humanizer.resources.dll deleted file mode 100644 index da72030..0000000 Binary files a/bin/Release/net7.0/uz-Latn-UZ/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/vi/Humanizer.resources.dll b/bin/Release/net7.0/vi/Humanizer.resources.dll deleted file mode 100644 index ff72d7e..0000000 Binary files a/bin/Release/net7.0/vi/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/bin/Release/net7.0/win-x64/AutoMapper.Extensions.Microsoft.DependencyInjection.dll deleted file mode 100644 index 8df3ce1..0000000 Binary files a/bin/Release/net7.0/win-x64/AutoMapper.Extensions.Microsoft.DependencyInjection.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/AutoMapper.dll b/bin/Release/net7.0/win-x64/AutoMapper.dll deleted file mode 100644 index b33d3d0..0000000 Binary files a/bin/Release/net7.0/win-x64/AutoMapper.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Azure.Core.dll b/bin/Release/net7.0/win-x64/Azure.Core.dll deleted file mode 100644 index aa966ba..0000000 Binary files a/bin/Release/net7.0/win-x64/Azure.Core.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Azure.Identity.dll b/bin/Release/net7.0/win-x64/Azure.Identity.dll deleted file mode 100644 index eaab465..0000000 Binary files a/bin/Release/net7.0/win-x64/Azure.Identity.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Humanizer.dll b/bin/Release/net7.0/win-x64/Humanizer.dll deleted file mode 100644 index c9a7ef8..0000000 Binary files a/bin/Release/net7.0/win-x64/Humanizer.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Authentication.Negotiate.dll b/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Authentication.Negotiate.dll deleted file mode 100644 index 76937c0..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Authentication.Negotiate.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Connections.Abstractions.dll b/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Connections.Abstractions.dll deleted file mode 100644 index d2d6643..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Connections.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.JsonPatch.dll b/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.JsonPatch.dll deleted file mode 100644 index 67976a4..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.JsonPatch.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll deleted file mode 100644 index 9185e39..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.OpenApi.dll b/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.OpenApi.dll deleted file mode 100644 index 48f95b5..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.OpenApi.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Razor.Language.dll b/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Razor.Language.dll deleted file mode 100644 index e0b7296..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.AspNetCore.Razor.Language.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Release/net7.0/win-x64/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.Build.Framework.dll b/bin/Release/net7.0/win-x64/Microsoft.Build.Framework.dll deleted file mode 100644 index dcebf91..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.Build.Framework.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.Build.dll b/bin/Release/net7.0/win-x64/Microsoft.Build.dll deleted file mode 100644 index b9d1fa9..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.Build.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.AnalyzerUtilities.dll b/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.AnalyzerUtilities.dll deleted file mode 100644 index e070bd5..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.AnalyzerUtilities.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.CSharp.Features.dll b/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.CSharp.Features.dll deleted file mode 100644 index fad30cf..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.CSharp.Features.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.CSharp.Workspaces.dll deleted file mode 100644 index eb2748f..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.CSharp.Workspaces.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.CSharp.dll b/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index 6506b81..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Elfie.dll b/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Elfie.dll deleted file mode 100644 index b131340..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Elfie.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Features.dll b/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Features.dll deleted file mode 100644 index 70ccdf7..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Features.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Razor.dll b/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Razor.dll deleted file mode 100644 index f21b880..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Razor.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Scripting.dll b/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Scripting.dll deleted file mode 100644 index 9da1e74..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Scripting.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Workspaces.dll b/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Workspaces.dll deleted file mode 100644 index ab9a24c..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.Workspaces.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.dll b/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.dll deleted file mode 100644 index f35e108..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.Data.SqlClient.SNI.dll b/bin/Release/net7.0/win-x64/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index a00639b..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.Data.SqlClient.dll b/bin/Release/net7.0/win-x64/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 59ebd7f..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.DiaSymReader.dll b/bin/Release/net7.0/win-x64/Microsoft.DiaSymReader.dll deleted file mode 100644 index 7a3a497..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.DiaSymReader.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.DotNet.Scaffolding.Shared.dll b/bin/Release/net7.0/win-x64/Microsoft.DotNet.Scaffolding.Shared.dll deleted file mode 100644 index 0d69a80..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.DotNet.Scaffolding.Shared.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.Abstractions.dll b/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index bbe5da9..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.Design.dll b/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.Design.dll deleted file mode 100644 index d0866eb..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.Design.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.Relational.dll b/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index 5732007..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.SqlServer.dll b/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.SqlServer.dll deleted file mode 100644 index 21a03f8..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.SqlServer.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.dll b/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index c8a8af4..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.Extensions.DependencyModel.dll b/bin/Release/net7.0/win-x64/Microsoft.Extensions.DependencyModel.dll deleted file mode 100644 index c4fe0b9..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.Extensions.DependencyModel.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.Extensions.Features.dll b/bin/Release/net7.0/win-x64/Microsoft.Extensions.Features.dll deleted file mode 100644 index d6c80bf..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.Extensions.Features.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.Identity.Client.Extensions.Msal.dll b/bin/Release/net7.0/win-x64/Microsoft.Identity.Client.Extensions.Msal.dll deleted file mode 100644 index 04be9fc..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.Identity.Client.Extensions.Msal.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.Identity.Client.dll b/bin/Release/net7.0/win-x64/Microsoft.Identity.Client.dll deleted file mode 100644 index 112dd74..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.Identity.Client.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Abstractions.dll b/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index 6a0300a..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.JsonWebTokens.dll b/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 80565a9..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Logging.dll b/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index c6427c7..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll deleted file mode 100644 index 73cb93e..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Protocols.dll b/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Protocols.dll deleted file mode 100644 index df4b6d0..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Protocols.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Tokens.dll b/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 9d9fcdd..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.NET.StringTools.dll b/bin/Release/net7.0/win-x64/Microsoft.NET.StringTools.dll deleted file mode 100644 index 9f42478..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.NET.StringTools.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.OpenApi.dll b/bin/Release/net7.0/win-x64/Microsoft.OpenApi.dll deleted file mode 100644 index 1e0998d..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.OpenApi.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.deps.json b/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.deps.json deleted file mode 100644 index 7f22def..0000000 --- a/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.deps.json +++ /dev/null @@ -1,4613 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v7.0/win-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v7.0": {}, - ".NETCoreApp,Version=v7.0/win-x64": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "dependencies": { - "AutoMapper": "12.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", - "Microsoft.AspNetCore.Authentication.Negotiate": "7.0.9", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "7.0.9", - "Microsoft.AspNetCore.OpenApi": "7.0.9", - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.EntityFrameworkCore.SqlServer": "7.0.9", - "Microsoft.EntityFrameworkCore.Tools": "7.0.9", - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "7.0.8", - "Swashbuckle.AspNetCore": "6.5.0" - }, - "runtime": { - "Microsoft.SelfService.Portal.Core.API.dll": {} - } - }, - "AutoMapper/12.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "dependencies": { - "AutoMapper": "12.0.1", - "Microsoft.Extensions.Options": "7.0.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "Azure.Core/1.24.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/net5.0/Azure.Core.dll": { - "assemblyVersion": "1.24.0.0", - "fileVersion": "1.2400.22.20404" - } - } - }, - "Azure.Identity/1.6.0": { - "dependencies": { - "Azure.Core": "1.24.0", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", - "System.Memory": "4.5.5", - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "assemblyVersion": "1.6.0.0", - "fileVersion": "1.600.22.20503" - } - } - }, - "Humanizer/2.14.1": { - "dependencies": { - "Humanizer.Core.af": "2.14.1", - "Humanizer.Core.ar": "2.14.1", - "Humanizer.Core.az": "2.14.1", - "Humanizer.Core.bg": "2.14.1", - "Humanizer.Core.bn-BD": "2.14.1", - "Humanizer.Core.cs": "2.14.1", - "Humanizer.Core.da": "2.14.1", - "Humanizer.Core.de": "2.14.1", - "Humanizer.Core.el": "2.14.1", - "Humanizer.Core.es": "2.14.1", - "Humanizer.Core.fa": "2.14.1", - "Humanizer.Core.fi-FI": "2.14.1", - "Humanizer.Core.fr": "2.14.1", - "Humanizer.Core.fr-BE": "2.14.1", - "Humanizer.Core.he": "2.14.1", - "Humanizer.Core.hr": "2.14.1", - "Humanizer.Core.hu": "2.14.1", - "Humanizer.Core.hy": "2.14.1", - "Humanizer.Core.id": "2.14.1", - "Humanizer.Core.is": "2.14.1", - "Humanizer.Core.it": "2.14.1", - "Humanizer.Core.ja": "2.14.1", - "Humanizer.Core.ko-KR": "2.14.1", - "Humanizer.Core.ku": "2.14.1", - "Humanizer.Core.lv": "2.14.1", - "Humanizer.Core.ms-MY": "2.14.1", - "Humanizer.Core.mt": "2.14.1", - "Humanizer.Core.nb": "2.14.1", - "Humanizer.Core.nb-NO": "2.14.1", - "Humanizer.Core.nl": "2.14.1", - "Humanizer.Core.pl": "2.14.1", - "Humanizer.Core.pt": "2.14.1", - "Humanizer.Core.ro": "2.14.1", - "Humanizer.Core.ru": "2.14.1", - "Humanizer.Core.sk": "2.14.1", - "Humanizer.Core.sl": "2.14.1", - "Humanizer.Core.sr": "2.14.1", - "Humanizer.Core.sr-Latn": "2.14.1", - "Humanizer.Core.sv": "2.14.1", - "Humanizer.Core.th-TH": "2.14.1", - "Humanizer.Core.tr": "2.14.1", - "Humanizer.Core.uk": "2.14.1", - "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", - "Humanizer.Core.uz-Latn-UZ": "2.14.1", - "Humanizer.Core.vi": "2.14.1", - "Humanizer.Core.zh-CN": "2.14.1", - "Humanizer.Core.zh-Hans": "2.14.1", - "Humanizer.Core.zh-Hant": "2.14.1" - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "Humanizer.Core.af/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/af/Humanizer.resources.dll": { - "locale": "af" - } - } - }, - "Humanizer.Core.ar/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ar/Humanizer.resources.dll": { - "locale": "ar" - } - } - }, - "Humanizer.Core.az/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/az/Humanizer.resources.dll": { - "locale": "az" - } - } - }, - "Humanizer.Core.bg/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bg/Humanizer.resources.dll": { - "locale": "bg" - } - } - }, - "Humanizer.Core.bn-BD/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bn-BD/Humanizer.resources.dll": { - "locale": "bn-BD" - } - } - }, - "Humanizer.Core.cs/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/cs/Humanizer.resources.dll": { - "locale": "cs" - } - } - }, - "Humanizer.Core.da/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/da/Humanizer.resources.dll": { - "locale": "da" - } - } - }, - "Humanizer.Core.de/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/de/Humanizer.resources.dll": { - "locale": "de" - } - } - }, - "Humanizer.Core.el/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/el/Humanizer.resources.dll": { - "locale": "el" - } - } - }, - "Humanizer.Core.es/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/es/Humanizer.resources.dll": { - "locale": "es" - } - } - }, - "Humanizer.Core.fa/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fa/Humanizer.resources.dll": { - "locale": "fa" - } - } - }, - "Humanizer.Core.fi-FI/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fi-FI/Humanizer.resources.dll": { - "locale": "fi-FI" - } - } - }, - "Humanizer.Core.fr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr/Humanizer.resources.dll": { - "locale": "fr" - } - } - }, - "Humanizer.Core.fr-BE/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr-BE/Humanizer.resources.dll": { - "locale": "fr-BE" - } - } - }, - "Humanizer.Core.he/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/he/Humanizer.resources.dll": { - "locale": "he" - } - } - }, - "Humanizer.Core.hr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hr/Humanizer.resources.dll": { - "locale": "hr" - } - } - }, - "Humanizer.Core.hu/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hu/Humanizer.resources.dll": { - "locale": "hu" - } - } - }, - "Humanizer.Core.hy/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hy/Humanizer.resources.dll": { - "locale": "hy" - } - } - }, - "Humanizer.Core.id/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/id/Humanizer.resources.dll": { - "locale": "id" - } - } - }, - "Humanizer.Core.is/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/is/Humanizer.resources.dll": { - "locale": "is" - } - } - }, - "Humanizer.Core.it/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/it/Humanizer.resources.dll": { - "locale": "it" - } - } - }, - "Humanizer.Core.ja/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ja/Humanizer.resources.dll": { - "locale": "ja" - } - } - }, - "Humanizer.Core.ko-KR/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { - "locale": "ko-KR" - } - } - }, - "Humanizer.Core.ku/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ku/Humanizer.resources.dll": { - "locale": "ku" - } - } - }, - "Humanizer.Core.lv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/lv/Humanizer.resources.dll": { - "locale": "lv" - } - } - }, - "Humanizer.Core.ms-MY/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { - "locale": "ms-MY" - } - } - }, - "Humanizer.Core.mt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/mt/Humanizer.resources.dll": { - "locale": "mt" - } - } - }, - "Humanizer.Core.nb/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb/Humanizer.resources.dll": { - "locale": "nb" - } - } - }, - "Humanizer.Core.nb-NO/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb-NO/Humanizer.resources.dll": { - "locale": "nb-NO" - } - } - }, - "Humanizer.Core.nl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nl/Humanizer.resources.dll": { - "locale": "nl" - } - } - }, - "Humanizer.Core.pl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pl/Humanizer.resources.dll": { - "locale": "pl" - } - } - }, - "Humanizer.Core.pt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pt/Humanizer.resources.dll": { - "locale": "pt" - } - } - }, - "Humanizer.Core.ro/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ro/Humanizer.resources.dll": { - "locale": "ro" - } - } - }, - "Humanizer.Core.ru/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ru/Humanizer.resources.dll": { - "locale": "ru" - } - } - }, - "Humanizer.Core.sk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sk/Humanizer.resources.dll": { - "locale": "sk" - } - } - }, - "Humanizer.Core.sl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sl/Humanizer.resources.dll": { - "locale": "sl" - } - } - }, - "Humanizer.Core.sr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr/Humanizer.resources.dll": { - "locale": "sr" - } - } - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr-Latn/Humanizer.resources.dll": { - "locale": "sr-Latn" - } - } - }, - "Humanizer.Core.sv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sv/Humanizer.resources.dll": { - "locale": "sv" - } - } - }, - "Humanizer.Core.th-TH/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { - "locale": "th-TH" - } - } - }, - "Humanizer.Core.tr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/tr/Humanizer.resources.dll": { - "locale": "tr" - } - } - }, - "Humanizer.Core.uk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uk/Humanizer.resources.dll": { - "locale": "uk" - } - } - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { - "locale": "uz-Cyrl-UZ" - } - } - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { - "locale": "uz-Latn-UZ" - } - } - }, - "Humanizer.Core.vi/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/vi/Humanizer.resources.dll": { - "locale": "vi" - } - } - }, - "Humanizer.Core.zh-CN/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-CN/Humanizer.resources.dll": { - "locale": "zh-CN" - } - } - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hans/Humanizer.resources.dll": { - "locale": "zh-Hans" - } - } - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hant/Humanizer.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "System.DirectoryServices.Protocols": "7.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "dependencies": { - "Microsoft.Extensions.Features": "7.0.9", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.9", - "Newtonsoft.Json": "13.0.1", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Build/17.3.2": { - "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "System.Collections.Immutable": "6.0.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Reflection.Metadata": "6.0.0", - "System.Reflection.MetadataLoadContext": "6.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Dataflow": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.Build.Framework/17.3.2": { - "dependencies": { - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.Framework.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "assemblyVersion": "3.3.2.30504", - "fileVersion": "3.3.2.30504" - } - } - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "6.0.0", - "System.Memory": "4.5.5", - "System.Reflection.Metadata": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Features": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Data.DataSetExtensions": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.16" - } - } - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Elfie": "1.0.0", - "Microsoft.CodeAnalysis.Scripting.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0", - "Microsoft.DiaSymReader": "1.4.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "System.Composition": "6.0.0", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.SqlClient/5.0.2": { - "dependencies": { - "Azure.Identity": "1.6.0", - "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", - "Microsoft.SqlServer.Server": "1.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Caching": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "7.0.0" - }, - "runtime": { - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "native": { - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "fileVersion": "5.0.1.0" - } - } - }, - "Microsoft.DiaSymReader/1.4.0": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.400.22.11101" - } - } - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "dependencies": { - "Humanizer": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Features": "4.4.0", - "Newtonsoft.Json": "13.0.1", - "NuGet.ProjectModel": "6.3.1" - }, - "runtime": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9", - "Microsoft.EntityFrameworkCore.Analyzers": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": {}, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Mono.TextTemplating": "2.2.1" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "dependencies": { - "Microsoft.Data.SqlClient": "5.0.2", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "7.0.9" - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {}, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.Features/7.0.9": { - "runtime": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.Extensions.Logging/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": {}, - "Microsoft.Extensions.Options/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Primitives/7.0.0": {}, - "Microsoft.Identity.Client/4.45.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.45.0.0", - "fileVersion": "4.45.0.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "dependencies": { - "Microsoft.Identity.Client": "4.45.0", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "2.19.3.0", - "fileVersion": "2.19.3.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.21.0", - "System.IdentityModel.Tokens.Jwt": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "6.21.0", - "System.Security.Cryptography.Cng": "5.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.NET.StringTools/17.3.2": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.NET.StringTools.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.OpenApi/1.4.3": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.4.3.0", - "fileVersion": "1.4.3.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "7.0.8" - }, - "runtime": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Razor": "6.0.11", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "dependencies": { - "Microsoft.Build": "17.3.2", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.Microsoft.Win32.Primitives": "4.3.0" - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "dependencies": { - "System.CodeDom": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Mono.TextTemplating.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.1.1" - } - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "dependencies": { - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.22727" - } - } - }, - "NuGet.Common/6.3.1": { - "dependencies": { - "NuGet.Frameworks": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Common.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Configuration/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "dependencies": { - "NuGet.Configuration": "6.3.1", - "NuGet.LibraryModel": "6.3.1", - "NuGet.Protocol": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Frameworks/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.LibraryModel/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "NuGet.Versioning": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Packaging/6.3.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "NuGet.Configuration": "6.3.1", - "NuGet.Versioning": "6.3.1", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Pkcs": "5.0.0" - }, - "runtime": { - "lib/net5.0/NuGet.Packaging.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.ProjectModel/6.3.1": { - "dependencies": { - "NuGet.DependencyResolver.Core": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Protocol/6.3.1": { - "dependencies": { - "NuGet.Packaging": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.Protocol.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Versioning/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "runtime.any.System.Collections/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": {}, - "runtime.any.System.Diagnostics.Tracing/4.3.0": {}, - "runtime.any.System.Globalization/4.3.0": {}, - "runtime.any.System.Globalization.Calendars/4.3.0": {}, - "runtime.any.System.IO/4.3.0": {}, - "runtime.any.System.Reflection/4.3.0": {}, - "runtime.any.System.Reflection.Extensions/4.3.0": {}, - "runtime.any.System.Reflection.Primitives/4.3.0": {}, - "runtime.any.System.Resources.ResourceManager/4.3.0": {}, - "runtime.any.System.Runtime/4.3.0": { - "dependencies": { - "System.Private.Uri": "4.3.0" - } - }, - "runtime.any.System.Runtime.Handles/4.3.0": {}, - "runtime.any.System.Runtime.InteropServices/4.3.0": {}, - "runtime.any.System.Text.Encoding/4.3.0": {}, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": {}, - "runtime.any.System.Threading.Tasks/4.3.0": {}, - "runtime.any.System.Threading.Timer/4.3.0": {}, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "runtime.win.System.Console/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": {}, - "runtime.win.System.IO.FileSystem/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Net.NameResolution": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "dependencies": { - "System.Private.Uri": "4.3.0" - } - }, - "Swashbuckle.AspNetCore/6.5.0": { - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" - } - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.5.1": {}, - "System.CodeDom/4.4.0": { - "runtime": { - "lib/netstandard2.0/System.CodeDom.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.6.25519.3" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Collections": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Composition/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - } - }, - "System.Composition.AttributedModel/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Convention/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Hosting/6.0.0": { - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Runtime/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.TypedParts/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.win.System.Console": "4.3.0" - } - }, - "System.Data.DataSetExtensions/4.5.0": {}, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Diagnostics.Debug": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": {}, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tools": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tracing": "4.3.0" - } - }, - "System.DirectoryServices.Protocols/7.0.1": { - "runtime": { - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Formats.Asn1/5.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization.Calendars": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.any.System.IO": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.IO.FileSystem": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Pipelines/7.0.0": {}, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Memory/4.5.5": {}, - "System.Memory.Data/1.0.2": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "assemblyVersion": "1.0.2.0", - "fileVersion": "1.0.221.20802" - } - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.NameResolution/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.win.System.Net.Primitives": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.Net.Sockets": "4.3.0" - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Private.Uri/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Extensions": "4.3.0" - } - }, - "System.Reflection.Metadata/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - } - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0", - "System.Reflection.Metadata": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Primitives": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Resources.ResourceManager": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.any.System.Runtime": "4.3.0" - } - }, - "System.Runtime.Caching/5.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Runtime.Extensions": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.any.System.Runtime.InteropServices": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.any.System.Text.Encoding.Extensions": "4.3.0" - } - }, - "System.Text.Encodings.Web/7.0.0": {}, - "System.Text.Json/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Overlapped/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks.Dataflow/6.0.0": {}, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Timer": "4.3.0" - } - }, - "System.Windows.Extensions/6.0.0": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - } - } - }, - "libraries": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==", - "path": "automapper/12.0.1", - "hashPath": "automapper.12.0.1.nupkg.sha512" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==", - "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1", - "hashPath": "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512" - }, - "Azure.Core/1.24.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==", - "path": "azure.core/1.24.0", - "hashPath": "azure.core.1.24.0.nupkg.sha512" - }, - "Azure.Identity/1.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==", - "path": "azure.identity/1.6.0", - "hashPath": "azure.identity.1.6.0.nupkg.sha512" - }, - "Humanizer/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", - "path": "humanizer/2.14.1", - "hashPath": "humanizer.2.14.1.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.af/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", - "path": "humanizer.core.af/2.14.1", - "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ar/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", - "path": "humanizer.core.ar/2.14.1", - "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.az/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", - "path": "humanizer.core.az/2.14.1", - "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bg/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", - "path": "humanizer.core.bg/2.14.1", - "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bn-BD/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", - "path": "humanizer.core.bn-bd/2.14.1", - "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.cs/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", - "path": "humanizer.core.cs/2.14.1", - "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.da/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", - "path": "humanizer.core.da/2.14.1", - "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.de/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", - "path": "humanizer.core.de/2.14.1", - "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.el/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", - "path": "humanizer.core.el/2.14.1", - "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.es/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", - "path": "humanizer.core.es/2.14.1", - "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fa/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", - "path": "humanizer.core.fa/2.14.1", - "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fi-FI/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", - "path": "humanizer.core.fi-fi/2.14.1", - "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", - "path": "humanizer.core.fr/2.14.1", - "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr-BE/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", - "path": "humanizer.core.fr-be/2.14.1", - "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.he/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", - "path": "humanizer.core.he/2.14.1", - "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", - "path": "humanizer.core.hr/2.14.1", - "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hu/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", - "path": "humanizer.core.hu/2.14.1", - "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hy/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", - "path": "humanizer.core.hy/2.14.1", - "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.id/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", - "path": "humanizer.core.id/2.14.1", - "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.is/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", - "path": "humanizer.core.is/2.14.1", - "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.it/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", - "path": "humanizer.core.it/2.14.1", - "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ja/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", - "path": "humanizer.core.ja/2.14.1", - "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ko-KR/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", - "path": "humanizer.core.ko-kr/2.14.1", - "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ku/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", - "path": "humanizer.core.ku/2.14.1", - "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.lv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", - "path": "humanizer.core.lv/2.14.1", - "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ms-MY/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", - "path": "humanizer.core.ms-my/2.14.1", - "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.mt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", - "path": "humanizer.core.mt/2.14.1", - "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", - "path": "humanizer.core.nb/2.14.1", - "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb-NO/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", - "path": "humanizer.core.nb-no/2.14.1", - "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", - "path": "humanizer.core.nl/2.14.1", - "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", - "path": "humanizer.core.pl/2.14.1", - "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", - "path": "humanizer.core.pt/2.14.1", - "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ro/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", - "path": "humanizer.core.ro/2.14.1", - "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ru/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", - "path": "humanizer.core.ru/2.14.1", - "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", - "path": "humanizer.core.sk/2.14.1", - "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", - "path": "humanizer.core.sl/2.14.1", - "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", - "path": "humanizer.core.sr/2.14.1", - "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", - "path": "humanizer.core.sr-latn/2.14.1", - "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", - "path": "humanizer.core.sv/2.14.1", - "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.th-TH/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", - "path": "humanizer.core.th-th/2.14.1", - "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.tr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", - "path": "humanizer.core.tr/2.14.1", - "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", - "path": "humanizer.core.uk/2.14.1", - "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", - "path": "humanizer.core.uz-cyrl-uz/2.14.1", - "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", - "path": "humanizer.core.uz-latn-uz/2.14.1", - "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.vi/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", - "path": "humanizer.core.vi/2.14.1", - "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-CN/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", - "path": "humanizer.core.zh-cn/2.14.1", - "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", - "path": "humanizer.core.zh-hans/2.14.1", - "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", - "path": "humanizer.core.zh-hant/2.14.1", - "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Sh+zGJAgG5MwQcHATWrKsFn4IY5psaX2c1QtKwSNPlEuTjZIZe3aVjEWMHT/ou2jkQ12S2kjOzaW5nMeg/cBA==", - "path": "microsoft.aspnetcore.authentication.negotiate/7.0.9", - "hashPath": "microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/A7MkuL0g4r/oNuASR2gIukWoG2360/tuS9RoiU1dOwTlMYthHJaK8NEpswMihcImCDryiHp5dJCPTZHIs9TQ==", - "path": "microsoft.aspnetcore.connections.abstractions/7.0.9", - "hashPath": "microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6iMRtYIQZj7gMC7iVotL9bZjCjnbV2ZkAAduKYHfV6v+WQhEjk0iEGSFNVh6N9rTCNTeZ2xVgv3xi675GwyDzQ==", - "path": "microsoft.aspnetcore.jsonpatch/7.0.9", - "hashPath": "microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dhAFLGV3RfK6BAbLYpTKcVch1hcyP2qDWNy7Pk2wGrQEO/yWbWwiR9c13hk5kGWcPMGeVMkcuftUo6OAHe2yIA==", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.9", - "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5kBnHntQTJqmYV66Khdl9OJ/j2Pw8cOKj8kNQuLCpfCsPbSijp334Vaad3vaGnG9Wpgq/VbSUSRxZOoroOe8zQ==", - "path": "microsoft.aspnetcore.openapi/7.0.9", - "hashPath": "microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SPjSZIL7JFI5XbVfRMPG/fHLr/xfumSrmN+IOimyIf71WQQ8u2hpaE5+VvpcgjJ5VrJMhfDEhdEAB+Nj/S16dQ==", - "path": "microsoft.aspnetcore.razor.language/6.0.11", - "hashPath": "microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Build/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k5+7CfF/aM/hykfnrF93VhbUnhGfpJkGaD+ce8VlhLnOqDyts7WV+8Up3YCP6qmXMZFeeH/Cp23w2wSliP0mBw==", - "path": "microsoft.build/17.3.2", - "hashPath": "microsoft.build.17.3.2.nupkg.sha512" - }, - "Microsoft.Build.Framework/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==", - "path": "microsoft.build.framework/17.3.2", - "hashPath": "microsoft.build.framework.17.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", - "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", - "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JfHupS/B7Jb5MZoYkFFABn3mux0wQgxi2D8F/rJYZeRBK2ZOyk7TjQ2Kq9rh6W/DCh0KNbbSbn5qoFar+ueHqw==", - "path": "microsoft.codeanalysis.common/4.4.0", - "hashPath": "microsoft.codeanalysis.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eD2w0xHRoaqK07hjlOKGR9eLNy3nimiGNeCClNax1NDgS/+DBtBqCjXelOa+TNy99kIB3nHhUqDmr46nDXy/RQ==", - "path": "microsoft.codeanalysis.csharp/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Un4XeiWD8Xo4A/Q6Wrkrt9UCas6EaP/ZfQAHXNjde5ULkvliWzvy0/ZlXzlPo6L/Xoon1BWOFMprIQWCjuLq9A==", - "path": "microsoft.codeanalysis.csharp.features/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ADmI2jcwJP9GgBsVx2l0Bo0v3Hn4hHBg1uJ5zHd230mkO8rUJBLZu2h3tCbpwJMkpAIRtrxuZDD5uNfiyz0Q5Q==", - "path": "microsoft.codeanalysis.csharp.workspaces/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", - "path": "microsoft.codeanalysis.elfie/1.0.0", - "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0LEXWpaDlZMl5lOnM872FuBmcDD99qKp4QmmFsMpJjnq7f21KuNchdyuSdh9pdpibl2JfdMWrvA56y5dKc6EPQ==", - "path": "microsoft.codeanalysis.features/4.4.0", - "hashPath": "microsoft.codeanalysis.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-40M7AHKPKvOw3LnWsaKmHitk0taBZ8982zoZBQstYzsfdH+tcIdeOewRHvuej23T7HV6d8se9MZdKC9O2I78vQ==", - "path": "microsoft.codeanalysis.razor/6.0.11", - "hashPath": "microsoft.codeanalysis.razor.6.0.11.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RkAwCFJ8LfN7TfbWDejm50nucPxVoG/vDh0qVIoGx1U2FZhaBct72U4lGIACLuYsa0dIlC7Y0ivBemfDHnqWmA==", - "path": "microsoft.codeanalysis.scripting.common/4.4.0", - "hashPath": "microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6KzmmTIUU7qInQldcSPaW0nkrO71zlFPhoiabFBhkokEit49rLx4Kr/G3agBchYzirScrXibqgTRQkvx9WcJTw==", - "path": "microsoft.codeanalysis.workspaces.common/4.4.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/5.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mxcYU9I5TLzUegLVXiTtOE89RXN3GafL1Y+ExIbXvivvQtxplI4wxOgsiZGO4TZC18OJqui7mLVmiYpdFFImRQ==", - "path": "microsoft.data.sqlclient/5.0.2", - "hashPath": "microsoft.data.sqlclient.5.0.2.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==", - "path": "microsoft.data.sqlclient.sni.runtime/5.0.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512" - }, - "Microsoft.DiaSymReader/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLtWq5/W5ePzSraavAFeXAbasE6REDByizTz6M8yQO3e4jf+6pRqPLdNCSvnSfKRVqsF7y/lTVWhqlf89ttweg==", - "path": "microsoft.diasymreader/1.4.0", - "hashPath": "microsoft.diasymreader.1.4.0.nupkg.sha512" - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QXtyFZWYAwlKymbFCQT5O21BJ7hLmQcJGB/EdvUV0VuJyeWJMf/8JSI+ijw3IoOd7MUTBpGVNNE8UDM9gUm4Qw==", - "path": "microsoft.dotnet.scaffolding.shared/7.0.8", - "hashPath": "microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9YuCdQWuRAmYYHqwW1h5ukKMC1fmNvcVHdp3gb8zdHxwSQz7hkGpYOBEjm6dRXRmGRkpUyHL8rwUz4kd53Ev0A==", - "path": "microsoft.entityframeworkcore/7.0.9", - "hashPath": "microsoft.entityframeworkcore.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cfY6Fn7cnP/5pXndL8QYaey/B2nGn1fwze5aSaMJymmbqwqYzFiszHuWbsdVBCDYJc8ok7eB1m/nCc3/rltulQ==", - "path": "microsoft.entityframeworkcore.abstractions/7.0.9", - "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VvqFD3DdML6LhPCAR/lG2xNX66juylC8v57yUAAYnUSdEUOMRi3lNoT4OrNdG0rere3UOQPhvVl5FH2QdyoF8Q==", - "path": "microsoft.entityframeworkcore.analyzers/7.0.9", - "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tWsa+spzKZAwHrUP6vYM1LLh0P89UMcldEjerFPPZb0LcI/ONQmh7ldK4Q8TeRuIiuXxYgRYPElSgxwLp14oug==", - "path": "microsoft.entityframeworkcore.design/7.0.9", - "hashPath": "microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u7iN6cNd6SJUlpdk24JVIbkji/UbkEEQ7pXncTyT4eXXj+Hz2y4NSZFOAywPGcioIgX1YzbKWDiJhk7hjSFxBQ==", - "path": "microsoft.entityframeworkcore.relational/7.0.9", - "hashPath": "microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-19S5BWZBcaShhLWzePi9iOq+meKIgL+dDlS0NQgPOQapu3wb3So3ZL0xgPmmlyq3GLYvXiCmQsK3Yv3vXYaMTg==", - "path": "microsoft.entityframeworkcore.sqlserver/7.0.9", - "hashPath": "microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GWOSIe8ltR/mqv2wpRvMhy6ULapdKhZXXpXSGWzG1fRxhYXjSGpe2Pqhxqo46o9RDGlk0WJUXrwyU+N4voPxMw==", - "path": "microsoft.entityframeworkcore.tools/7.0.9", - "hashPath": "microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", - "path": "microsoft.extensions.apidescription.server/6.0.5", - "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", - "path": "microsoft.extensions.caching.abstractions/7.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", - "path": "microsoft.extensions.caching.memory/7.0.0", - "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", - "path": "microsoft.extensions.configuration.abstractions/7.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", - "path": "microsoft.extensions.dependencyinjection/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", - "path": "microsoft.extensions.dependencymodel/7.0.0", - "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Features/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IJ2vdDt2OYCKyJ7ZJPIZKa4b0M0tsG36h0QUt1d/E8IMAnjIncI+1i9Am0nmheD/wpcVd9eDykiV4dklcwUd3Q==", - "path": "microsoft.extensions.features/7.0.9", - "hashPath": "microsoft.extensions.features.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", - "path": "microsoft.extensions.logging/7.0.0", - "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", - "path": "microsoft.extensions.logging.abstractions/7.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", - "path": "microsoft.extensions.options/7.0.0", - "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", - "path": "microsoft.extensions.primitives/7.0.0", - "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.45.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==", - "path": "microsoft.identity.client/4.45.0", - "hashPath": "microsoft.identity.client.4.45.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", - "path": "microsoft.identity.client.extensions.msal/2.19.3", - "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==", - "path": "microsoft.identitymodel.abstractions/6.21.0", - "hashPath": "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==", - "path": "microsoft.identitymodel.jsonwebtokens/6.21.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==", - "path": "microsoft.identitymodel.logging/6.21.0", - "hashPath": "microsoft.identitymodel.logging.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==", - "path": "microsoft.identitymodel.protocols/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==", - "path": "microsoft.identitymodel.tokens/6.21.0", - "hashPath": "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512" - }, - "Microsoft.NET.StringTools/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==", - "path": "microsoft.net.stringtools/17.3.2", - "hashPath": "microsoft.net.stringtools.17.3.2.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.OpenApi/1.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", - "path": "microsoft.openapi/1.4.3", - "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AbrSIuBwG/7+7JBMOSyHVYqcz8YdUdArGIx4Asckm/U8FWKdT6NSJmObZh3X2Da2/W176FqG3MPTPtw/P0kJag==", - "path": "microsoft.visualstudio.web.codegeneration/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wdud/mzEfFMHqPNBb+N+jVeI2INNSP5WlCrPepQqvoLqiZwM0wUvf7yWGrVbNHBMOjDk3lIavqjXNkY9PriOQg==", - "path": "microsoft.visualstudio.web.codegeneration.core/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-56UeN0J8SA5PJjvf6Mv0ZbhLWO6Cr+YGM5eOsNejpQDL+ba8pt8BR7SBMTnSrZIOEeOhY3nAPUkOUK3bh+v3Tg==", - "path": "microsoft.visualstudio.web.codegeneration.design/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlyRk0pmpvPCzCot0bY+Lt6bctGC4dqrQxk1vk2ep+wTdH/CZ8FflnWHEKGBpd+kMrwy93UbJZ8HSAxlBLksLA==", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JTepVMzR2XOr6BVgejMltlzi3O6LMpNb3dz0VKczsjKKX/l6ZT1iTUC6FjuHs9SNTc8rTlEK7hw2TIKpGy1tCQ==", - "path": "microsoft.visualstudio.web.codegeneration.templating/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5T6uK9MH6zWXXyVinlvmbz7fFiuA5/UIFa1wAWD6ylkReDlPTEOq5AMwlkdlEPZuqMgICH4N3BQAizY/EIAlzA==", - "path": "microsoft.visualstudio.web.codegeneration.utils/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xQIJfP4NpuAnFykWuXW5nr+1WyPLNVbMhqFS7SKX6CIm32Ak9iCMFS1NSbksl5bfIXaSg1rjJM8TpZYoKM+Ffg==", - "path": "microsoft.visualstudio.web.codegenerators.mvc/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "path": "mono.texttemplating/2.2.1", - "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "path": "newtonsoft.json.bson/1.0.2", - "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" - }, - "NuGet.Common/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==", - "path": "nuget.common/6.3.1", - "hashPath": "nuget.common.6.3.1.nupkg.sha512" - }, - "NuGet.Configuration/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==", - "path": "nuget.configuration/6.3.1", - "hashPath": "nuget.configuration.6.3.1.nupkg.sha512" - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wSr4XMNE5f82ZveuATVwj+kS1/dWyXARjOZcS70Aiaj+XEWL8uo4EFTwPIvqPHWCem5cxmavBRuWBwlQ4HWjeA==", - "path": "nuget.dependencyresolver.core/6.3.1", - "hashPath": "nuget.dependencyresolver.core.6.3.1.nupkg.sha512" - }, - "NuGet.Frameworks/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==", - "path": "nuget.frameworks/6.3.1", - "hashPath": "nuget.frameworks.6.3.1.nupkg.sha512" - }, - "NuGet.LibraryModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aEB4AesZ+ddLVTBbewQFNHagbVbwewobBk2+8mk0THWjn0qIUH2l4kLTMmiTD7DOthVB6pYds8bz1B8Z0rEPrQ==", - "path": "nuget.librarymodel/6.3.1", - "hashPath": "nuget.librarymodel.6.3.1.nupkg.sha512" - }, - "NuGet.Packaging/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==", - "path": "nuget.packaging/6.3.1", - "hashPath": "nuget.packaging.6.3.1.nupkg.sha512" - }, - "NuGet.ProjectModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TtC4zUKnMIkJBtM7P1GtvVK2jCh4Xi8SVK+bEsCUSoZ0rJf7Zqw2oBrmMNWe51IlfOcYkREmn6xif9mgJXOnmQ==", - "path": "nuget.projectmodel/6.3.1", - "hashPath": "nuget.projectmodel.6.3.1.nupkg.sha512" - }, - "NuGet.Protocol/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==", - "path": "nuget.protocol/6.3.1", - "hashPath": "nuget.protocol.6.3.1.nupkg.sha512" - }, - "NuGet.Versioning/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==", - "path": "nuget.versioning/6.3.1", - "hashPath": "nuget.versioning.6.3.1.nupkg.sha512" - }, - "runtime.any.System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", - "path": "runtime.any.system.collections/4.3.0", - "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==", - "path": "runtime.any.system.diagnostics.tools/4.3.0", - "hashPath": "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", - "path": "runtime.any.system.diagnostics.tracing/4.3.0", - "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", - "path": "runtime.any.system.globalization/4.3.0", - "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", - "path": "runtime.any.system.globalization.calendars/4.3.0", - "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "runtime.any.System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", - "path": "runtime.any.system.io/4.3.0", - "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", - "path": "runtime.any.system.reflection/4.3.0", - "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==", - "path": "runtime.any.system.reflection.extensions/4.3.0", - "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", - "path": "runtime.any.system.reflection.primitives/4.3.0", - "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", - "path": "runtime.any.system.resources.resourcemanager/4.3.0", - "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", - "path": "runtime.any.system.runtime/4.3.0", - "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", - "path": "runtime.any.system.runtime.handles/4.3.0", - "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", - "path": "runtime.any.system.runtime.interopservices/4.3.0", - "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", - "path": "runtime.any.system.text.encoding/4.3.0", - "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", - "path": "runtime.any.system.text.encoding.extensions/4.3.0", - "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", - "path": "runtime.any.system.threading.tasks/4.3.0", - "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==", - "path": "runtime.any.system.threading.timer/4.3.0", - "hashPath": "runtime.any.system.threading.timer.4.3.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==", - "path": "runtime.win.microsoft.win32.primitives/4.3.0", - "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RRACWygml5dnmfgC1SW6tLGsFgwsUAKFtvhdyHnIEz4EhWyrd7pacDdY95CacQJy7BMXRDRCejC9aCRC0Y1sQA==", - "path": "runtime.win.system.console/4.3.0", - "hashPath": "runtime.win.system.console.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", - "path": "runtime.win.system.diagnostics.debug/4.3.0", - "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==", - "path": "runtime.win.system.io.filesystem/4.3.0", - "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==", - "path": "runtime.win.system.net.primitives/4.3.0", - "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==", - "path": "runtime.win.system.net.sockets/4.3.0", - "hashPath": "runtime.win.system.net.sockets.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", - "path": "runtime.win.system.runtime.extensions/4.3.0", - "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", - "path": "swashbuckle.aspnetcore/6.5.0", - "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", - "path": "swashbuckle.aspnetcore.swagger/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", - "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", - "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.CodeDom/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "path": "system.codedom/4.4.0", - "hashPath": "system.codedom.4.4.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", - "path": "system.composition/6.0.0", - "hashPath": "system.composition.6.0.0.nupkg.sha512" - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", - "path": "system.composition.attributedmodel/6.0.0", - "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", - "path": "system.composition.convention/6.0.0", - "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", - "path": "system.composition.hosting/6.0.0", - "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", - "path": "system.composition.runtime/6.0.0", - "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", - "path": "system.composition.typedparts/6.0.0", - "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", - "path": "system.data.datasetextensions/4.5.0", - "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/7.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", - "path": "system.directoryservices.protocols/7.0.1", - "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Formats.Asn1/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", - "path": "system.formats.asn1/5.0.0", - "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==", - "path": "system.identitymodel.tokens.jwt/6.21.0", - "hashPath": "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Pipelines/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", - "path": "system.io.pipelines/7.0.0", - "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "path": "system.memory.data/1.0.2", - "hashPath": "system.memory.data.1.0.2.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.NameResolution/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", - "path": "system.net.nameresolution/4.3.0", - "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", - "path": "system.private.uri/4.3.0", - "hashPath": "system.private.uri.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sffDOcex1C3HO5kDolOYcWXTwRpZY/LvJujM6SMjn63fWMJWchYAAmkoAJXlbpZ5yf4d+KMgxd+LeETa4gD9sQ==", - "path": "system.reflection.metadata/6.0.0", - "hashPath": "system.reflection.metadata.6.0.0.nupkg.sha512" - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SuK8qTHbmG3PToLo1TEq8YSfY31FiKhASBmjozUTAleDgiX4H2X4jm0VPFb+K2soSSmYPyHTpHp35TctfNtDzQ==", - "path": "system.reflection.metadataloadcontext/6.0.0", - "hashPath": "system.reflection.metadataloadcontext.6.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", - "path": "system.runtime.caching/5.0.0", - "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "path": "system.security.cryptography.cng/5.0.0", - "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", - "path": "system.security.cryptography.pkcs/5.0.0", - "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" - }, - "System.Text.Json/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", - "path": "system.text.json/7.0.0", - "hashPath": "system.text.json.7.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", - "path": "system.threading.overlapped/4.3.0", - "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Dataflow/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+tyDCU3/B1lDdOOAJywHQoFwyXIUghIaP2BxG79uvhfTnO+D9qIgjVlL/JV2NTliYbMHpd6eKDmHp2VHpij7MA==", - "path": "system.threading.tasks.dataflow/6.0.0", - "hashPath": "system.threading.tasks.dataflow.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.dll b/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 3614b6e..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.exe b/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.exe deleted file mode 100644 index 17fcb9f..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.exe and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.pdb b/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.pdb deleted file mode 100644 index e084b4c..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.pdb and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json b/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json deleted file mode 100644 index 10d7259..0000000 --- a/bin/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net7.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "7.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "7.0.0" - } - ], - "configProperties": { - "System.GC.Server": true, - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/bin/Release/net7.0/win-x64/Microsoft.SqlServer.Server.dll b/bin/Release/net7.0/win-x64/Microsoft.SqlServer.Server.dll deleted file mode 100644 index ddeaa86..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.SqlServer.Server.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll b/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll deleted file mode 100644 index a5b93ee..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll b/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll deleted file mode 100644 index 534a126..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll b/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll deleted file mode 100644 index 99fe458..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll b/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll deleted file mode 100644 index 0391697..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.dll b/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.dll deleted file mode 100644 index a374651..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGeneration.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll b/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll deleted file mode 100644 index a1c3c0f..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Microsoft.Win32.SystemEvents.dll b/bin/Release/net7.0/win-x64/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 66af198..0000000 Binary files a/bin/Release/net7.0/win-x64/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Mono.TextTemplating.dll b/bin/Release/net7.0/win-x64/Mono.TextTemplating.dll deleted file mode 100644 index d5a4b3c..0000000 Binary files a/bin/Release/net7.0/win-x64/Mono.TextTemplating.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Newtonsoft.Json.Bson.dll b/bin/Release/net7.0/win-x64/Newtonsoft.Json.Bson.dll deleted file mode 100644 index e9b1dd2..0000000 Binary files a/bin/Release/net7.0/win-x64/Newtonsoft.Json.Bson.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Newtonsoft.Json.dll b/bin/Release/net7.0/win-x64/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/bin/Release/net7.0/win-x64/Newtonsoft.Json.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/NuGet.Common.dll b/bin/Release/net7.0/win-x64/NuGet.Common.dll deleted file mode 100644 index ce4bda8..0000000 Binary files a/bin/Release/net7.0/win-x64/NuGet.Common.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/NuGet.Configuration.dll b/bin/Release/net7.0/win-x64/NuGet.Configuration.dll deleted file mode 100644 index cbe9417..0000000 Binary files a/bin/Release/net7.0/win-x64/NuGet.Configuration.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/NuGet.DependencyResolver.Core.dll b/bin/Release/net7.0/win-x64/NuGet.DependencyResolver.Core.dll deleted file mode 100644 index 908b3e6..0000000 Binary files a/bin/Release/net7.0/win-x64/NuGet.DependencyResolver.Core.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/NuGet.Frameworks.dll b/bin/Release/net7.0/win-x64/NuGet.Frameworks.dll deleted file mode 100644 index 4eacf6a..0000000 Binary files a/bin/Release/net7.0/win-x64/NuGet.Frameworks.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/NuGet.LibraryModel.dll b/bin/Release/net7.0/win-x64/NuGet.LibraryModel.dll deleted file mode 100644 index ba03b76..0000000 Binary files a/bin/Release/net7.0/win-x64/NuGet.LibraryModel.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/NuGet.Packaging.dll b/bin/Release/net7.0/win-x64/NuGet.Packaging.dll deleted file mode 100644 index a3ec988..0000000 Binary files a/bin/Release/net7.0/win-x64/NuGet.Packaging.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/NuGet.ProjectModel.dll b/bin/Release/net7.0/win-x64/NuGet.ProjectModel.dll deleted file mode 100644 index fe01820..0000000 Binary files a/bin/Release/net7.0/win-x64/NuGet.ProjectModel.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/NuGet.Protocol.dll b/bin/Release/net7.0/win-x64/NuGet.Protocol.dll deleted file mode 100644 index 6b3aa97..0000000 Binary files a/bin/Release/net7.0/win-x64/NuGet.Protocol.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/NuGet.Versioning.dll b/bin/Release/net7.0/win-x64/NuGet.Versioning.dll deleted file mode 100644 index 60cbd1e..0000000 Binary files a/bin/Release/net7.0/win-x64/NuGet.Versioning.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Swashbuckle.AspNetCore.Swagger.dll b/bin/Release/net7.0/win-x64/Swashbuckle.AspNetCore.Swagger.dll deleted file mode 100644 index fd052a3..0000000 Binary files a/bin/Release/net7.0/win-x64/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Swashbuckle.AspNetCore.SwaggerGen.dll b/bin/Release/net7.0/win-x64/Swashbuckle.AspNetCore.SwaggerGen.dll deleted file mode 100644 index 2ea00ee..0000000 Binary files a/bin/Release/net7.0/win-x64/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/Swashbuckle.AspNetCore.SwaggerUI.dll b/bin/Release/net7.0/win-x64/Swashbuckle.AspNetCore.SwaggerUI.dll deleted file mode 100644 index 0571d0f..0000000 Binary files a/bin/Release/net7.0/win-x64/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.CodeDom.dll b/bin/Release/net7.0/win-x64/System.CodeDom.dll deleted file mode 100644 index 3128b6a..0000000 Binary files a/bin/Release/net7.0/win-x64/System.CodeDom.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Composition.AttributedModel.dll b/bin/Release/net7.0/win-x64/System.Composition.AttributedModel.dll deleted file mode 100644 index d37283b..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Composition.AttributedModel.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Composition.Convention.dll b/bin/Release/net7.0/win-x64/System.Composition.Convention.dll deleted file mode 100644 index b6fa4ab..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Composition.Convention.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Composition.Hosting.dll b/bin/Release/net7.0/win-x64/System.Composition.Hosting.dll deleted file mode 100644 index c67f1c0..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Composition.Hosting.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Composition.Runtime.dll b/bin/Release/net7.0/win-x64/System.Composition.Runtime.dll deleted file mode 100644 index 2a4b38c..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Composition.Runtime.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Composition.TypedParts.dll b/bin/Release/net7.0/win-x64/System.Composition.TypedParts.dll deleted file mode 100644 index 7c0c780..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Composition.TypedParts.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Configuration.ConfigurationManager.dll b/bin/Release/net7.0/win-x64/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index d67c8a8..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.DirectoryServices.Protocols.dll b/bin/Release/net7.0/win-x64/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 951a113..0000000 Binary files a/bin/Release/net7.0/win-x64/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Drawing.Common.dll b/bin/Release/net7.0/win-x64/System.Drawing.Common.dll deleted file mode 100644 index 7c9e87b..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Drawing.Common.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.IdentityModel.Tokens.Jwt.dll b/bin/Release/net7.0/win-x64/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index 131456c..0000000 Binary files a/bin/Release/net7.0/win-x64/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Memory.Data.dll b/bin/Release/net7.0/win-x64/System.Memory.Data.dll deleted file mode 100644 index 6f2a3e0..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Memory.Data.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Reflection.MetadataLoadContext.dll b/bin/Release/net7.0/win-x64/System.Reflection.MetadataLoadContext.dll deleted file mode 100644 index e87fcda..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Reflection.MetadataLoadContext.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Runtime.Caching.dll b/bin/Release/net7.0/win-x64/System.Runtime.Caching.dll deleted file mode 100644 index 432ebb4..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Runtime.Caching.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Security.Cryptography.ProtectedData.dll b/bin/Release/net7.0/win-x64/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 332dbfa..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Security.Permissions.dll b/bin/Release/net7.0/win-x64/System.Security.Permissions.dll deleted file mode 100644 index 39dd4df..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Security.Permissions.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/System.Windows.Extensions.dll b/bin/Release/net7.0/win-x64/System.Windows.Extensions.dll deleted file mode 100644 index 69f0d1b..0000000 Binary files a/bin/Release/net7.0/win-x64/System.Windows.Extensions.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/af/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/af/Humanizer.resources.dll deleted file mode 100644 index e191f5f..0000000 Binary files a/bin/Release/net7.0/win-x64/af/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/appsettings.Development.json b/bin/Release/net7.0/win-x64/appsettings.Development.json deleted file mode 100644 index 0c208ae..0000000 --- a/bin/Release/net7.0/win-x64/appsettings.Development.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/bin/Release/net7.0/win-x64/appsettings.json b/bin/Release/net7.0/win-x64/appsettings.json deleted file mode 100644 index 005b7be..0000000 --- a/bin/Release/net7.0/win-x64/appsettings.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "Context": "Server=RZ1VCMSQL001\\MSSSP;Database=SSP;TrustServerCertificate=True;Encrypt=False;Integrated Security=SSPI" - } -} \ No newline at end of file diff --git a/bin/Release/net7.0/win-x64/ar/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/ar/Humanizer.resources.dll deleted file mode 100644 index 319af06..0000000 Binary files a/bin/Release/net7.0/win-x64/ar/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/az/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/az/Humanizer.resources.dll deleted file mode 100644 index f51f16e..0000000 Binary files a/bin/Release/net7.0/win-x64/az/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/bg/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/bg/Humanizer.resources.dll deleted file mode 100644 index c6b47e9..0000000 Binary files a/bin/Release/net7.0/win-x64/bg/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/bn-BD/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/bn-BD/Humanizer.resources.dll deleted file mode 100644 index dead005..0000000 Binary files a/bin/Release/net7.0/win-x64/bn-BD/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/cs/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/cs/Humanizer.resources.dll deleted file mode 100644 index 43094ae..0000000 Binary files a/bin/Release/net7.0/win-x64/cs/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 10a5b8f..0000000 Binary files a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 6e642b5..0000000 Binary files a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 160cb79..0000000 Binary files a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 3a0c7f5..0000000 Binary files a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 9fda8a8..0000000 Binary files a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 1c4018b..0000000 Binary files a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 1662edf..0000000 Binary files a/bin/Release/net7.0/win-x64/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/da/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/da/Humanizer.resources.dll deleted file mode 100644 index 25c518a..0000000 Binary files a/bin/Release/net7.0/win-x64/da/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/de/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/de/Humanizer.resources.dll deleted file mode 100644 index eca8773..0000000 Binary files a/bin/Release/net7.0/win-x64/de/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index b05c568..0000000 Binary files a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 7d8f563..0000000 Binary files a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d647fbf..0000000 Binary files a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 8c7bda7..0000000 Binary files a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 463b895..0000000 Binary files a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d2b2ebe..0000000 Binary files a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 41818f4..0000000 Binary files a/bin/Release/net7.0/win-x64/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/dotnet-aspnet-codegenerator-design.dll b/bin/Release/net7.0/win-x64/dotnet-aspnet-codegenerator-design.dll deleted file mode 100644 index e5d1b54..0000000 Binary files a/bin/Release/net7.0/win-x64/dotnet-aspnet-codegenerator-design.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/el/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/el/Humanizer.resources.dll deleted file mode 100644 index 7496654..0000000 Binary files a/bin/Release/net7.0/win-x64/el/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/es/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/es/Humanizer.resources.dll deleted file mode 100644 index a2ccea7..0000000 Binary files a/bin/Release/net7.0/win-x64/es/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 5a0e03d..0000000 Binary files a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d91150f..0000000 Binary files a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2b1d73e..0000000 Binary files a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 4ae1f61..0000000 Binary files a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 58bac36..0000000 Binary files a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 472b0bb..0000000 Binary files a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 66145cb..0000000 Binary files a/bin/Release/net7.0/win-x64/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fa/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/fa/Humanizer.resources.dll deleted file mode 100644 index 71fb905..0000000 Binary files a/bin/Release/net7.0/win-x64/fa/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fi-FI/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/fi-FI/Humanizer.resources.dll deleted file mode 100644 index 553a14d..0000000 Binary files a/bin/Release/net7.0/win-x64/fi-FI/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fr-BE/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/fr-BE/Humanizer.resources.dll deleted file mode 100644 index d75e247..0000000 Binary files a/bin/Release/net7.0/win-x64/fr-BE/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fr/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/fr/Humanizer.resources.dll deleted file mode 100644 index 5fb44a9..0000000 Binary files a/bin/Release/net7.0/win-x64/fr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 401ea0b..0000000 Binary files a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index cc8b864..0000000 Binary files a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index a98d0ec..0000000 Binary files a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 4b77322..0000000 Binary files a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index ada43a9..0000000 Binary files a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 474cc07..0000000 Binary files a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e6c12b5..0000000 Binary files a/bin/Release/net7.0/win-x64/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/he/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/he/Humanizer.resources.dll deleted file mode 100644 index deb8b6e..0000000 Binary files a/bin/Release/net7.0/win-x64/he/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/hr/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/hr/Humanizer.resources.dll deleted file mode 100644 index 4d50733..0000000 Binary files a/bin/Release/net7.0/win-x64/hr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/hu/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/hu/Humanizer.resources.dll deleted file mode 100644 index f93d556..0000000 Binary files a/bin/Release/net7.0/win-x64/hu/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/hy/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/hy/Humanizer.resources.dll deleted file mode 100644 index a61b5e6..0000000 Binary files a/bin/Release/net7.0/win-x64/hy/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/id/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/id/Humanizer.resources.dll deleted file mode 100644 index e605f23..0000000 Binary files a/bin/Release/net7.0/win-x64/id/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/is/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/is/Humanizer.resources.dll deleted file mode 100644 index 40e36d7..0000000 Binary files a/bin/Release/net7.0/win-x64/is/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/it/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/it/Humanizer.resources.dll deleted file mode 100644 index 9434487..0000000 Binary files a/bin/Release/net7.0/win-x64/it/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 2315e95..0000000 Binary files a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 23f6463..0000000 Binary files a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index dd024d9..0000000 Binary files a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 5f2ca6f..0000000 Binary files a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index c4b443b..0000000 Binary files a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 798de46..0000000 Binary files a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index a354025..0000000 Binary files a/bin/Release/net7.0/win-x64/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ja/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/ja/Humanizer.resources.dll deleted file mode 100644 index f949d63..0000000 Binary files a/bin/Release/net7.0/win-x64/ja/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 7a9c62e..0000000 Binary files a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 70682db..0000000 Binary files a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 0a8ac29..0000000 Binary files a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index dd8dced..0000000 Binary files a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 752d6b7..0000000 Binary files a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d02270a..0000000 Binary files a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8ee1273..0000000 Binary files a/bin/Release/net7.0/win-x64/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ko-KR/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/ko-KR/Humanizer.resources.dll deleted file mode 100644 index 6a5f6c7..0000000 Binary files a/bin/Release/net7.0/win-x64/ko-KR/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 1c8a1a4..0000000 Binary files a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 5101654..0000000 Binary files a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 15249dd..0000000 Binary files a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 45b5bfd..0000000 Binary files a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 0d2793b..0000000 Binary files a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 32b471d..0000000 Binary files a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 7881c82..0000000 Binary files a/bin/Release/net7.0/win-x64/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ku/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/ku/Humanizer.resources.dll deleted file mode 100644 index 606d2b9..0000000 Binary files a/bin/Release/net7.0/win-x64/ku/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/lv/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/lv/Humanizer.resources.dll deleted file mode 100644 index 463bf2d..0000000 Binary files a/bin/Release/net7.0/win-x64/lv/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ms-MY/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/ms-MY/Humanizer.resources.dll deleted file mode 100644 index 6494db8..0000000 Binary files a/bin/Release/net7.0/win-x64/ms-MY/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/mt/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/mt/Humanizer.resources.dll deleted file mode 100644 index 7e056c7..0000000 Binary files a/bin/Release/net7.0/win-x64/mt/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/nb-NO/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/nb-NO/Humanizer.resources.dll deleted file mode 100644 index 4ff1965..0000000 Binary files a/bin/Release/net7.0/win-x64/nb-NO/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/nb/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/nb/Humanizer.resources.dll deleted file mode 100644 index 48d7d6e..0000000 Binary files a/bin/Release/net7.0/win-x64/nb/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/nl/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/nl/Humanizer.resources.dll deleted file mode 100644 index e1bca89..0000000 Binary files a/bin/Release/net7.0/win-x64/nl/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pl/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/pl/Humanizer.resources.dll deleted file mode 100644 index 1b81e27..0000000 Binary files a/bin/Release/net7.0/win-x64/pl/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index b1648b9..0000000 Binary files a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ab1f415..0000000 Binary files a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index f6565e0..0000000 Binary files a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 1ea99f3..0000000 Binary files a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 919a672..0000000 Binary files a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d1b15d9..0000000 Binary files a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 03b64a3..0000000 Binary files a/bin/Release/net7.0/win-x64/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index d146dec..0000000 Binary files a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d6ffabe..0000000 Binary files a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index b179fd5..0000000 Binary files a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 331d87c..0000000 Binary files a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index a326d59..0000000 Binary files a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 44a8a4a..0000000 Binary files a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 186108a..0000000 Binary files a/bin/Release/net7.0/win-x64/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/pt/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/pt/Humanizer.resources.dll deleted file mode 100644 index 71daa56..0000000 Binary files a/bin/Release/net7.0/win-x64/pt/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ro/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/ro/Humanizer.resources.dll deleted file mode 100644 index 0aea9b9..0000000 Binary files a/bin/Release/net7.0/win-x64/ro/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ru/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/ru/Humanizer.resources.dll deleted file mode 100644 index dd2f875..0000000 Binary files a/bin/Release/net7.0/win-x64/ru/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index c32fb26..0000000 Binary files a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ca6f13a..0000000 Binary files a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4b1c65a..0000000 Binary files a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 7f4fca5..0000000 Binary files a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 8bcb19b..0000000 Binary files a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index ff641b1..0000000 Binary files a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 55cd313..0000000 Binary files a/bin/Release/net7.0/win-x64/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/sk/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/sk/Humanizer.resources.dll deleted file mode 100644 index 4c03f54..0000000 Binary files a/bin/Release/net7.0/win-x64/sk/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/sl/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/sl/Humanizer.resources.dll deleted file mode 100644 index b79bb3c..0000000 Binary files a/bin/Release/net7.0/win-x64/sl/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/sr-Latn/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/sr-Latn/Humanizer.resources.dll deleted file mode 100644 index e846785..0000000 Binary files a/bin/Release/net7.0/win-x64/sr-Latn/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/sr/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/sr/Humanizer.resources.dll deleted file mode 100644 index 7e36e26..0000000 Binary files a/bin/Release/net7.0/win-x64/sr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/sv/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/sv/Humanizer.resources.dll deleted file mode 100644 index 70974a5..0000000 Binary files a/bin/Release/net7.0/win-x64/sv/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/th-TH/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/th-TH/Humanizer.resources.dll deleted file mode 100644 index 4dcc85d..0000000 Binary files a/bin/Release/net7.0/win-x64/th-TH/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/tr/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/tr/Humanizer.resources.dll deleted file mode 100644 index eff6ad8..0000000 Binary files a/bin/Release/net7.0/win-x64/tr/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 5eb7e9c..0000000 Binary files a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index b870685..0000000 Binary files a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d3514a4..0000000 Binary files a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index f23a22f..0000000 Binary files a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 6df319d..0000000 Binary files a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6110c60..0000000 Binary files a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index edfdcf4..0000000 Binary files a/bin/Release/net7.0/win-x64/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/uk/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/uk/Humanizer.resources.dll deleted file mode 100644 index d4fb7a2..0000000 Binary files a/bin/Release/net7.0/win-x64/uk/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/uz-Cyrl-UZ/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/uz-Cyrl-UZ/Humanizer.resources.dll deleted file mode 100644 index c76160d..0000000 Binary files a/bin/Release/net7.0/win-x64/uz-Cyrl-UZ/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/uz-Latn-UZ/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/uz-Latn-UZ/Humanizer.resources.dll deleted file mode 100644 index da72030..0000000 Binary files a/bin/Release/net7.0/win-x64/uz-Latn-UZ/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/vi/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/vi/Humanizer.resources.dll deleted file mode 100644 index ff72d7e..0000000 Binary files a/bin/Release/net7.0/win-x64/vi/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-CN/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/zh-CN/Humanizer.resources.dll deleted file mode 100644 index a80799f..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-CN/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hans/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/zh-Hans/Humanizer.resources.dll deleted file mode 100644 index c84c639..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hans/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 96afd23..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index a0877d2..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 1c4359b..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 15bbfaf..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 2c11839..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6eaa45c..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 007dee6..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hant/Humanizer.resources.dll b/bin/Release/net7.0/win-x64/zh-Hant/Humanizer.resources.dll deleted file mode 100644 index d0cb506..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hant/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index c2f0f0b..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 8b76c06..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index dfe8129..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 9e42195..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index ecb8019..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index bf9204d..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index f5308ff..0000000 Binary files a/bin/Release/net7.0/win-x64/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-CN/Humanizer.resources.dll b/bin/Release/net7.0/zh-CN/Humanizer.resources.dll deleted file mode 100644 index a80799f..0000000 Binary files a/bin/Release/net7.0/zh-CN/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hans/Humanizer.resources.dll b/bin/Release/net7.0/zh-Hans/Humanizer.resources.dll deleted file mode 100644 index c84c639..0000000 Binary files a/bin/Release/net7.0/zh-Hans/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 96afd23..0000000 Binary files a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index a0877d2..0000000 Binary files a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 1c4359b..0000000 Binary files a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 15bbfaf..0000000 Binary files a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 2c11839..0000000 Binary files a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6eaa45c..0000000 Binary files a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 007dee6..0000000 Binary files a/bin/Release/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hant/Humanizer.resources.dll b/bin/Release/net7.0/zh-Hant/Humanizer.resources.dll deleted file mode 100644 index d0cb506..0000000 Binary files a/bin/Release/net7.0/zh-Hant/Humanizer.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index c2f0f0b..0000000 Binary files a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 8b76c06..0000000 Binary files a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index dfe8129..0000000 Binary files a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll b/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 9e42195..0000000 Binary files a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index ecb8019..0000000 Binary files a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index bf9204d..0000000 Binary files a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index f5308ff..0000000 Binary files a/bin/Release/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/buildcheck/AddDeploymentComposition.sql b/buildcheck/AddDeploymentComposition.sql new file mode 100644 index 0000000..b965b73 --- /dev/null +++ b/buildcheck/AddDeploymentComposition.sql @@ -0,0 +1,2248 @@ +IF OBJECT_ID(N'[__EFMigrationsHistory]') IS NULL +BEGIN + CREATE TABLE [__EFMigrationsHistory] ( + [MigrationId] nvarchar(150) NOT NULL, + [ProductVersion] nvarchar(32) NOT NULL, + CONSTRAINT [PK___EFMigrationsHistory] PRIMARY KEY ([MigrationId]) + ); +END; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Domains] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [FQDN] nvarchar(max) NOT NULL, + [NetBIOS] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Domains] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Environments] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [CloudEnabled] bit NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Environments] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [OptionCategories] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [ParentCategoryName] nvarchar(max) NOT NULL, + [showOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_OptionCategories] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Runbooks] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Runbooks] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Services] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Services] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [VirtualMachines] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DomainID] uniqueidentifier NOT NULL, + [Name] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_VirtualMachines] PRIMARY KEY ([Id]), + CONSTRAINT [FK_VirtualMachines_Domains_DomainID] FOREIGN KEY ([DomainID]) REFERENCES [Domains] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [EnvironmentDomains] ( + [EnvironmentId] uniqueidentifier NOT NULL, + [DomainId] uniqueidentifier NOT NULL, + [Modified] datetime2 NOT NULL, + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL, + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_EnvironmentDomains] PRIMARY KEY ([EnvironmentId], [DomainId]), + CONSTRAINT [FK_EnvironmentDomains_Domains_DomainId] FOREIGN KEY ([DomainId]) REFERENCES [Domains] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_EnvironmentDomains_Environments_EnvironmentId] FOREIGN KEY ([EnvironmentId]) REFERENCES [Environments] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Options] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [OptionType] nvarchar(max) NOT NULL, + [OptionValue] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + [OptionCategoryId] uniqueidentifier NOT NULL, + CONSTRAINT [PK_Options] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Options_OptionCategories_OptionCategoryId] FOREIGN KEY ([OptionCategoryId]) REFERENCES [OptionCategories] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Events] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [RunbookId] uniqueidentifier NOT NULL, + [Class] nvarchar(max) NOT NULL, + [Method] nvarchar(max) NOT NULL, + [RestEndpointMethod] nvarchar(max) NOT NULL, + [RestEndpointOperation] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Events] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Events_Runbooks_RunbookId] FOREIGN KEY ([RunbookId]) REFERENCES [Runbooks] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [TemplateCategories] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [ServiceId] uniqueidentifier NOT NULL, + [Name] nvarchar(max) NOT NULL, + [ParentCategoryName] nvarchar(max) NOT NULL, + [showOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateCategories] PRIMARY KEY ([Id]), + CONSTRAINT [FK_TemplateCategories_Services_ServiceId] FOREIGN KEY ([ServiceId]) REFERENCES [Services] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Templates] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [CloudTemplate] bit NOT NULL, + [Version] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [JSONData] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + [TemplateCategoryId] uniqueidentifier NOT NULL, + CONSTRAINT [PK_Templates] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Templates_TemplateCategories_TemplateCategoryId] FOREIGN KEY ([TemplateCategoryId]) REFERENCES [TemplateCategories] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [DeploymentGroups] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [TemplateId] uniqueidentifier NOT NULL, + [Status] nvarchar(max) NOT NULL DEFAULT ('New'), + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentGroups] PRIMARY KEY ([Id]), + CONSTRAINT [FK_DeploymentGroups_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [TemplateOptions] ( + [TemplateId] uniqueidentifier NOT NULL, + [OptionId] uniqueidentifier NOT NULL, + [Value] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL, + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL, + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateOptions] PRIMARY KEY ([OptionId], [TemplateId]), + CONSTRAINT [FK_TemplateOptions_Options_OptionId] FOREIGN KEY ([OptionId]) REFERENCES [Options] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_TemplateOptions_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Deployments] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentGroupId] uniqueidentifier NOT NULL, + [VirtualMachineId] uniqueidentifier NOT NULL, + [Status] nvarchar(max) NOT NULL, + [JSONData] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Deployments] PRIMARY KEY ([VirtualMachineId], [DeploymentGroupId]), + CONSTRAINT [AK_Deployments_Id] UNIQUE ([Id]), + CONSTRAINT [FK_Deployments_DeploymentGroups_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentGroups] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_Deployments_VirtualMachines_VirtualMachineId] FOREIGN KEY ([VirtualMachineId]) REFERENCES [VirtualMachines] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Jobs] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentId] uniqueidentifier NOT NULL, + [RunbookId] uniqueidentifier NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Jobs] PRIMARY KEY ([RunbookId], [DeploymentId]), + CONSTRAINT [FK_Jobs_Deployments_DeploymentId] FOREIGN KEY ([DeploymentId]) REFERENCES [Deployments] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_Jobs_Runbooks_RunbookId] FOREIGN KEY ([RunbookId]) REFERENCES [Runbooks] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_DeploymentGroups_TemplateId] ON [DeploymentGroups] ([TemplateId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Deployments_DeploymentGroupId] ON [Deployments] ([DeploymentGroupId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_EnvironmentDomains_DomainId] ON [EnvironmentDomains] ([DomainId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Events_RunbookId] ON [Events] ([RunbookId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Jobs_DeploymentId] ON [Jobs] ([DeploymentId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Options_OptionCategoryId] ON [Options] ([OptionCategoryId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_TemplateCategories_ServiceId] ON [TemplateCategories] ([ServiceId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_TemplateOptions_TemplateId] ON [TemplateOptions] ([TemplateId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Templates_TemplateCategoryId] ON [Templates] ([TemplateCategoryId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_VirtualMachines_DomainID] ON [VirtualMachines] ([DomainID]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20231020093825_Initial', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260514210821_AddQueueJobs' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260514210821_AddQueueJobs', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260514210842_AddQueueJobModelSnapshotFix' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260514210842_AddQueueJobModelSnapshotFix', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [ExternalId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [TargetType] nvarchar(max) NOT NULL DEFAULT N''; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [EnvironmentType] nvarchar(max) NOT NULL DEFAULT N''; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515195005_AddEnvironmentAndTargetProviderModel', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var nvarchar(max); + SELECT @var = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'CloudEnabled'); + IF @var IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var + ';'); + ALTER TABLE [Environments] DROP COLUMN [CloudEnabled]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var1 nvarchar(max); + SELECT @var1 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'TenantId'); + IF @var1 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var1 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var2 nvarchar(max); + SELECT @var2 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'SubscriptionId'); + IF @var2 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var2 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var3 nvarchar(max); + SELECT @var3 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'ProviderType'); + IF @var3 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var3 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var4 nvarchar(max); + SELECT @var4 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'MetadataJson'); + IF @var4 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var4 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var5 nvarchar(max); + SELECT @var5 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'EnvironmentType'); + IF @var5 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var5 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [EnvironmentType] nvarchar(max) NOT NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515195742_RemoveCloudEnabledFromEnvironment', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var6 nvarchar(max); + SELECT @var6 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'ProviderType'); + IF @var6 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var6 + ';'); + ALTER TABLE [VirtualMachines] DROP COLUMN [ProviderType]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var7 nvarchar(max); + SELECT @var7 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'TargetType'); + IF @var7 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var7 + ';'); + ALTER TABLE [VirtualMachines] DROP COLUMN [TargetType]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var8 nvarchar(max); + SELECT @var8 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'MetadataJson'); + IF @var8 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var8 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var9 nvarchar(max); + SELECT @var9 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'ExternalId'); + IF @var9 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var9 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [ExternalId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515204426_RemoveVirtualMachineTargetAndProvider', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + ALTER TABLE [VirtualMachines] DROP CONSTRAINT [FK_VirtualMachines_Domains_DomainID]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + DECLARE @var10 nvarchar(max); + SELECT @var10 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'DomainID'); + IF @var10 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var10 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [DomainID] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD CONSTRAINT [FK_VirtualMachines_Domains_DomainID] FOREIGN KEY ([DomainID]) REFERENCES [Domains] ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + ALTER TABLE [Services] ADD [IsCloudService] bit NOT NULL DEFAULT CAST(0 AS bit); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + CREATE TABLE [ServiceRoleDefinitions] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [ServiceId] uniqueidentifier NOT NULL, + [Key] nvarchar(max) NOT NULL, + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NULL, + [MinCount] int NOT NULL, + [MaxCount] int NOT NULL, + [DefaultStageOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_ServiceRoleDefinitions] PRIMARY KEY ([Id]), + CONSTRAINT [FK_ServiceRoleDefinitions_Services_ServiceId] FOREIGN KEY ([ServiceId]) REFERENCES [Services] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + CREATE INDEX [IX_ServiceRoleDefinitions_ServiceId] ON [ServiceRoleDefinitions] ([ServiceId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var11 nvarchar(max); + SELECT @var11 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'DefaultStageOrder'); + IF @var11 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var11 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [DefaultStageOrder]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var12 nvarchar(max); + SELECT @var12 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'MaxCount'); + IF @var12 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var12 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [MaxCount]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var13 nvarchar(max); + SELECT @var13 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'MinCount'); + IF @var13 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var13 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [MinCount]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515221746_RemoveRoleDefinitionSizingFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + DECLARE @var14 nvarchar(max); + SELECT @var14 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'ParentCategoryName'); + IF @var14 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var14 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [ParentCategoryName]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + DECLARE @var15 nvarchar(max); + SELECT @var15 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'showOrder'); + IF @var15 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var15 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [showOrder]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516113515_RemoveTemplateCategoryLegacyFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [Color] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [Description] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [IconKey] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [IsActive] bit NOT NULL DEFAULT CAST(1 AS bit); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516114627_AddTemplateCategoryMetadataFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + DECLARE @var16 nvarchar(max); + SELECT @var16 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'IconKey'); + IF @var16 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var16 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [IconKey]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + ALTER TABLE [Services] ADD [IconKey] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516115934_MoveIconKeyFromTemplateCategoryToService', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516121222_RemoveTemplateCloudFlag' +) +BEGIN + DECLARE @var17 nvarchar(max); + SELECT @var17 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Templates]') AND [c].[name] = N'CloudTemplate'); + IF @var17 IS NOT NULL EXEC(N'ALTER TABLE [Templates] DROP CONSTRAINT ' + @var17 + ';'); + ALTER TABLE [Templates] DROP COLUMN [CloudTemplate]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516121222_RemoveTemplateCloudFlag' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516121222_RemoveTemplateCloudFlag', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [Templates] ADD [DeploymentRuleId] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [QueueJobs] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [QueueJobs] ADD [RuleSnapshotJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [DeploymentRules] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NULL, + [IsActive] bit NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentRules] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [QueueJobSteps] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [QueueJobId] uniqueidentifier NOT NULL, + [DependsOnQueueJobStepId] uniqueidentifier NULL, + [SortOrder] int NOT NULL, + [Name] nvarchar(max) NOT NULL, + [StepType] nvarchar(max) NOT NULL, + [Status] nvarchar(max) NOT NULL, + [MetadataJson] nvarchar(max) NULL, + [ApprovedAt] datetime2 NULL, + [ApprovedBy] nvarchar(max) NULL, + [ApprovalComment] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_QueueJobSteps] PRIMARY KEY ([Id]), + CONSTRAINT [FK_QueueJobSteps_QueueJobSteps_DependsOnQueueJobStepId] FOREIGN KEY ([DependsOnQueueJobStepId]) REFERENCES [QueueJobSteps] ([Id]) ON DELETE NO ACTION, + CONSTRAINT [FK_QueueJobSteps_QueueJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [QueueJobs] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [DeploymentRuleSteps] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentRuleId] uniqueidentifier NOT NULL, + [SortOrder] int NOT NULL, + [Name] nvarchar(max) NOT NULL, + [StepType] nvarchar(max) NOT NULL, + [RequiresApproval] bit NOT NULL, + [MetadataJson] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentRuleSteps] PRIMARY KEY ([Id]), + CONSTRAINT [FK_DeploymentRuleSteps_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_Templates_DeploymentRuleId] ON [Templates] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_DeploymentRuleSteps_DeploymentRuleId] ON [DeploymentRuleSteps] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_QueueJobSteps_DependsOnQueueJobStepId] ON [QueueJobSteps] ([DependsOnQueueJobStepId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_QueueJobSteps_QueueJobId] ON [QueueJobSteps] ([QueueJobId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [Templates] ADD CONSTRAINT [FK_Templates_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516140554_AddDeploymentRulesAndQueueJobSteps', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentGroups] DROP CONSTRAINT [FK_DeploymentGroups_Templates_TemplateId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [FK_Deployments_DeploymentGroups_DeploymentGroupId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [FK_Deployments_VirtualMachines_VirtualMachineId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Jobs] DROP CONSTRAINT [FK_Jobs_Deployments_DeploymentId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [FK_QueueJobSteps_QueueJobSteps_DependsOnQueueJobStepId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [FK_QueueJobSteps_QueueJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobTargets] DROP CONSTRAINT [FK_QueueJobTargets_QueueJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobTargets] DROP CONSTRAINT [PK_QueueJobTargets]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [PK_QueueJobSteps]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobs] DROP CONSTRAINT [PK_QueueJobs]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [AK_Deployments_Id]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [PK_Deployments]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentGroups] DROP CONSTRAINT [PK_DeploymentGroups]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobTargets]', N'DeploymentJobTargets', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobSteps]', N'DeploymentJobSteps', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobs]', N'DeploymentJobs', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[Deployments]', N'DeploymentExecutions', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentGroups]', N'DeploymentBatches', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[IX_QueueJobTargets_QueueJobId]', N'IX_DeploymentJobTargets_QueueJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_QueueJobSteps_QueueJobId]', N'IX_DeploymentJobSteps_QueueJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_QueueJobSteps_DependsOnQueueJobStepId]', N'IX_DeploymentJobSteps_DependsOnQueueJobStepId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[IX_Deployments_DeploymentGroupId]', N'IX_DeploymentExecutions_DeploymentGroupId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentBatches].[IX_DeploymentGroups_TemplateId]', N'IX_DeploymentBatches_TemplateId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [PK_DeploymentJobTargets] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [PK_DeploymentJobSteps] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobs] ADD CONSTRAINT [PK_DeploymentJobs] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [AK_DeploymentExecutions_Id] UNIQUE ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [PK_DeploymentExecutions] PRIMARY KEY ([VirtualMachineId], [DeploymentGroupId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [PK_DeploymentBatches] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [FK_DeploymentBatches_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_VirtualMachines_VirtualMachineId] FOREIGN KEY ([VirtualMachineId]) REFERENCES [VirtualMachines] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnQueueJobStepId] FOREIGN KEY ([DependsOnQueueJobStepId]) REFERENCES [DeploymentJobSteps] ([Id]) ON DELETE NO ACTION; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Jobs] ADD CONSTRAINT [FK_Jobs_DeploymentExecutions_DeploymentId] FOREIGN KEY ([DeploymentId]) REFERENCES [DeploymentExecutions] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516141653_RenameDeploymentAndJobTables', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentExecutions] DROP CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentGroupId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] DROP CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnQueueJobStepId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] DROP CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] DROP CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[QueueJobId]', N'DeploymentJobId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[DeploymentGroupId]', N'DeploymentBatchId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[IX_DeploymentJobTargets_QueueJobId]', N'IX_DeploymentJobTargets_DeploymentJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[QueueJobId]', N'DeploymentJobId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[DependsOnQueueJobStepId]', N'DependsOnDeploymentJobStepId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_DeploymentJobSteps_QueueJobId]', N'IX_DeploymentJobSteps_DeploymentJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_DeploymentJobSteps_DependsOnQueueJobStepId]', N'IX_DeploymentJobSteps_DependsOnDeploymentJobStepId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[DeploymentGroupId]', N'DeploymentBatchId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[IX_DeploymentExecutions_DeploymentGroupId]', N'IX_DeploymentExecutions_DeploymentBatchId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentBatchId] FOREIGN KEY ([DeploymentBatchId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnDeploymentJobStepId] FOREIGN KEY ([DependsOnDeploymentJobStepId]) REFERENCES [DeploymentJobSteps] ([Id]) ON DELETE NO ACTION; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_DeploymentJobId] FOREIGN KEY ([DeploymentJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_DeploymentJobId] FOREIGN KEY ([DeploymentJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516141719_RenameDeploymentAndJobColumns', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var18 nvarchar(max); + SELECT @var18 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'TenantId'); + IF @var18 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var18 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var19 nvarchar(max); + SELECT @var19 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'SubscriptionId'); + IF @var19 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var19 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var20 nvarchar(max); + SELECT @var20 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'ProviderType'); + IF @var20 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var20 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var21 nvarchar(max); + SELECT @var21 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'MetadataJson'); + IF @var21 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var21 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + ALTER TABLE [Environments] ADD [HostingType] nvarchar(max) NOT NULL DEFAULT N'OnPrem'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + + UPDATE [Environments] + SET [HostingType] = CASE + WHEN [EnvironmentType] IN ('OnPrem','AzureTenant','M365Tenant') THEN [EnvironmentType] + ELSE 'OnPrem' + END + +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + + UPDATE [Environments] + SET [EnvironmentType] = CASE + WHEN [EnvironmentType] IN ('Development','Test','QA','Production') THEN [EnvironmentType] + ELSE 'Test' + END + +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260517193537_SyncEnvironmentStageAndHostingType', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517205713_LinkDeploymentBatchToDeploymentRule' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260517205713_LinkDeploymentBatchToDeploymentRule', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD [DeploymentRuleId] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE TABLE [TemplateVersions] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [TemplateId] uniqueidentifier NOT NULL, + [Version] nvarchar(64) NOT NULL, + [JsonData] nvarchar(max) NOT NULL, + [JsonHash] nvarchar(64) NOT NULL, + [SchemaVersion] nvarchar(32) NOT NULL, + [IsPublished] bit NOT NULL, + [PublishedAt] datetime2 NULL, + [PublishedBy] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateVersions] PRIMARY KEY ([Id]), + CONSTRAINT [CK_TemplateVersions_JsonData_IsJson] CHECK (ISJSON([JsonData]) = 1), + CONSTRAINT [FK_TemplateVersions_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + INSERT INTO [TemplateVersions] + ([Id], [TemplateId], [Version], [JsonData], [JsonHash], [SchemaVersion], [IsPublished], [PublishedAt], [PublishedBy], [Modified], [ModifiedBy], [Created], [CreatedBy]) + SELECT + NEWID(), + [Id], + CASE + WHEN [Version] IS NULL OR LTRIM(RTRIM([Version])) = '' THEN '1.0.0' + ELSE [Version] + END, + CASE + WHEN ISJSON([JSONData]) = 1 THEN [JSONData] + ELSE '{}' + END, + CONVERT(varchar(64), HASHBYTES('SHA2_256', CONVERT(varbinary(max), CASE WHEN ISJSON([JSONData]) = 1 THEN [JSONData] ELSE '{}' END)), 2), + '1.0', + 1, + SYSUTCDATETIME(), + [CreatedBy], + [Modified], + [ModifiedBy], + [Created], + [CreatedBy] + FROM [Templates] + WHERE NOT EXISTS ( + SELECT 1 + FROM [TemplateVersions] + WHERE [TemplateVersions].[TemplateId] = [Templates].[Id] + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE INDEX [IX_DeploymentBatches_DeploymentRuleId] ON [DeploymentBatches] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + EXEC(N'CREATE UNIQUE INDEX [IX_TemplateVersions_TemplateId] ON [TemplateVersions] ([TemplateId]) WHERE [IsPublished] = 1'); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE UNIQUE INDEX [IX_TemplateVersions_TemplateId_Version] ON [TemplateVersions] ([TemplateId], [Version]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [FK_DeploymentBatches_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]) ON DELETE SET NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260707195927_AddTemplateVersions', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + DELETE FROM [DeploymentJobTargets]; + DELETE FROM [DeploymentJobSteps]; + DELETE FROM [DeploymentJobs]; + DELETE FROM [Jobs]; + DELETE FROM [Events]; + DELETE FROM [DeploymentExecutions]; + DELETE FROM [DeploymentBatches]; + DELETE FROM [TemplateVersions]; + DELETE FROM [TemplateOptions]; + DELETE FROM [Templates]; + DELETE FROM [DeploymentRuleSteps]; + DELETE FROM [DeploymentRules]; + DELETE FROM [ServiceRoleDefinitions]; + DELETE FROM [TemplateCategories]; + DELETE FROM [Options]; + DELETE FROM [OptionCategories]; + DELETE FROM [Services]; + DELETE FROM [VirtualMachines]; + DELETE FROM [EnvironmentDomains]; + DELETE FROM [Domains]; + DELETE FROM [Environments]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[DeploymentRules]')) + SET IDENTITY_INSERT [DeploymentRules] ON; + EXEC(N'INSERT INTO [DeploymentRules] ([Id], [Created], [CreatedBy], [Description], [IsActive], [Modified], [ModifiedBy], [Name]) + VALUES (''60000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Validate input, wait for approval, then provision targets.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Standard Provisioning'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[DeploymentRules]')) + SET IDENTITY_INSERT [DeploymentRules] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'FQDN', N'Modified', N'ModifiedBy', N'Name', N'NetBIOS') AND [object_id] = OBJECT_ID(N'[Domains]')) + SET IDENTITY_INSERT [Domains] ON; + EXEC(N'INSERT INTO [Domains] ([Id], [Created], [CreatedBy], [FQDN], [Modified], [ModifiedBy], [Name], [NetBIOS]) + VALUES (''20000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''corp.contoso.com'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Central Management'', N''CONTOSO''), + (''20000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''resource.contoso.com'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Resource Domain'', N''RESOURCE'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'FQDN', N'Modified', N'ModifiedBy', N'Name', N'NetBIOS') AND [object_id] = OBJECT_ID(N'[Domains]')) + SET IDENTITY_INSERT [Domains] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'EnvironmentType', N'HostingType', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'ProviderType', N'SubscriptionId', N'TenantId') AND [object_id] = OBJECT_ID(N'[Environments]')) + SET IDENTITY_INSERT [Environments] ON; + EXEC(N'INSERT INTO [Environments] ([Id], [Created], [CreatedBy], [EnvironmentType], [HostingType], [MetadataJson], [Modified], [ModifiedBy], [Name], [ProviderType], [SubscriptionId], [TenantId]) + VALUES (''10000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Test'', N''OnPrem'', N''{"location":"Datacenter A"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Test'', NULL, NULL, NULL), + (''10000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Production'', N''OnPrem'', N''{"location":"Datacenter A"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Production'', NULL, NULL, NULL), + (''10000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Production'', N''M365Tenant'', N''{"tenant":"contoso.onmicrosoft.com"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso M365'', N''Microsoft365'', NULL, N''11111111-1111-1111-1111-111111111111'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'EnvironmentType', N'HostingType', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'ProviderType', N'SubscriptionId', N'TenantId') AND [object_id] = OBJECT_ID(N'[Environments]')) + SET IDENTITY_INSERT [Environments] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IconKey', N'IsCloudService', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[Services]')) + SET IDENTITY_INSERT [Services] ON; + EXEC(N'INSERT INTO [Services] ([Id], [Created], [CreatedBy], [Description], [IconKey], [IsCloudService], [Modified], [ModifiedBy], [Name]) + VALUES (''40000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''On-premises directory and identity service.'', N''network'', CAST(0 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Active Directory''), + (''40000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Database platform for application workloads.'', N''database'', CAST(0 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SQL Server''), + (''40000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Collaboration platform for on-premises workloads.'', N''sharepoint'', CAST(0 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint Server''), + (''40000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Cloud collaboration workload in Microsoft 365.'', N''messages-square'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Microsoft Teams'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IconKey', N'IsCloudService', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[Services]')) + SET IDENTITY_INSERT [Services] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'RequiresApproval', N'SortOrder', N'StepType') AND [object_id] = OBJECT_ID(N'[DeploymentRuleSteps]')) + SET IDENTITY_INSERT [DeploymentRuleSteps] ON; + EXEC(N'INSERT INTO [DeploymentRuleSteps] ([Id], [Created], [CreatedBy], [DeploymentRuleId], [MetadataJson], [Modified], [ModifiedBy], [Name], [RequiresApproval], [SortOrder], [StepType]) + VALUES (''60000000-0000-0000-0000-000000000101'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''{"action":"validate"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Validate configuration'', CAST(0 AS bit), 10, N''Provision''), + (''60000000-0000-0000-0000-000000000102'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''{"approverGroup":"Platform Owners"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Approve deployment'', CAST(1 AS bit), 20, N''Approval''), + (''60000000-0000-0000-0000-000000000103'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''{"action":"deploy"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Provision workload'', CAST(0 AS bit), 30, N''Provision'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'RequiresApproval', N'SortOrder', N'StepType') AND [object_id] = OBJECT_ID(N'[DeploymentRuleSteps]')) + SET IDENTITY_INSERT [DeploymentRuleSteps] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DomainId', N'EnvironmentId', N'Created', N'CreatedBy', N'Modified', N'ModifiedBy') AND [object_id] = OBJECT_ID(N'[EnvironmentDomains]')) + SET IDENTITY_INSERT [EnvironmentDomains] ON; + EXEC(N'INSERT INTO [EnvironmentDomains] ([DomainId], [EnvironmentId], [Created], [CreatedBy], [Modified], [ModifiedBy]) + VALUES (''20000000-0000-0000-0000-000000000001'', ''10000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed''), + (''20000000-0000-0000-0000-000000000001'', ''10000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed''), + (''20000000-0000-0000-0000-000000000002'', ''10000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DomainId', N'EnvironmentId', N'Created', N'CreatedBy', N'Modified', N'ModifiedBy') AND [object_id] = OBJECT_ID(N'[EnvironmentDomains]')) + SET IDENTITY_INSERT [EnvironmentDomains] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'Key', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]')) + SET IDENTITY_INSERT [ServiceRoleDefinitions] ON; + EXEC(N'INSERT INTO [ServiceRoleDefinitions] ([Id], [Created], [CreatedBy], [Description], [Key], [Modified], [ModifiedBy], [Name], [ServiceId]) + VALUES (''41000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint farm role.'', N''Farm'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Farm'', ''40000000-0000-0000-0000-000000000003''), + (''41000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint web front-end role.'', N''WebFrontEnd'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Web Front End'', ''40000000-0000-0000-0000-000000000003''), + (''41000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint service application role.'', N''Application'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Application'', ''40000000-0000-0000-0000-000000000003''), + (''41000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SQL Server database role.'', N''Database'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Database'', ''40000000-0000-0000-0000-000000000002'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'Key', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]')) + SET IDENTITY_INSERT [ServiceRoleDefinitions] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Color', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[TemplateCategories]')) + SET IDENTITY_INSERT [TemplateCategories] ON; + EXEC(N'INSERT INTO [TemplateCategories] ([Id], [Color], [Created], [CreatedBy], [Description], [IsActive], [Modified], [ModifiedBy], [Name], [ServiceId]) + VALUES (''50000000-0000-0000-0000-000000000001'', N''#2563EB'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for domain controller and domain configuration.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Domain Services'', ''40000000-0000-0000-0000-000000000001''), + (''50000000-0000-0000-0000-000000000002'', N''#16A34A'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for SQL Server workloads.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Database Platform'', ''40000000-0000-0000-0000-000000000002''), + (''50000000-0000-0000-0000-000000000003'', N''#0F766E'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for SharePoint Server farms.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Collaboration Farm'', ''40000000-0000-0000-0000-000000000003''), + (''50000000-0000-0000-0000-000000000004'', N''#7C3AED'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for Teams policy configuration.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Teams Policies'', ''40000000-0000-0000-0000-000000000004'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Color', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[TemplateCategories]')) + SET IDENTITY_INSERT [TemplateCategories] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DomainID', N'ExternalId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[VirtualMachines]')) + SET IDENTITY_INSERT [VirtualMachines] ON; + EXEC(N'INSERT INTO [VirtualMachines] ([Id], [Created], [CreatedBy], [DomainID], [ExternalId], [MetadataJson], [Modified], [ModifiedBy], [Name]) + VALUES (''30000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"DomainController","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-DC-01''), + (''30000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"DomainController","environment":"Production"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-DC-02''), + (''30000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"SqlServer","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-SQL-01''), + (''30000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"SharePoint","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-SHP-01''), + (''30000000-0000-0000-0000-000000000005'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"SharePoint","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-SHP-02'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DomainID', N'ExternalId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[VirtualMachines]')) + SET IDENTITY_INSERT [VirtualMachines] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Description', N'JSONData', N'Modified', N'ModifiedBy', N'Name', N'TemplateCategoryId', N'Version') AND [object_id] = OBJECT_ID(N'[Templates]')) + SET IDENTITY_INSERT [Templates] ON; + EXEC(N'INSERT INTO [Templates] ([Id], [Created], [CreatedBy], [DeploymentRuleId], [Description], [JSONData], [Modified], [ModifiedBy], [Name], [TemplateCategoryId], [Version]) + VALUES (''70000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a reusable Active Directory domain baseline.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DomainName": { "type": "string", "defaultValue": "corp.contoso.com" },'', nchar(10), N'' "NetBIOSName": { "type": "string", "defaultValue": "CONTOSO" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "DefaultSiteName": "[concat(parameters(''''DomainName''''), ''''-DefaultSite'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "AllNodes": ['', nchar(10), N'' { "NodeName": "*", "PSDscAllowPlainTextPassword": true }'', nchar(10), N'' ],'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "ActiveDirectory": {'', nchar(10), N'' "DomainName": "[parameters(''''DomainName'''')]",'', nchar(10), N'' "NetBIOSName": "[parameters(''''NetBIOSName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Active Directory Domain'', ''50000000-0000-0000-0000-000000000001'', N''1.0.0''), + (''70000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a SQL Server baseline for application workloads.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "InstanceName": { "type": "string", "defaultValue": "MSSQLSERVER" },'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "Contoso" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDatabase": "[concat(parameters(''''DatabasePrefix''''), ''''_Config'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SqlServer": {'', nchar(10), N'' "InstanceName": "[parameters(''''InstanceName'''')]",'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDatabase'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso SQL Server'', ''50000000-0000-0000-0000-000000000002'', N''1.0.0''), + (''70000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a SharePoint Server farm baseline.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "SharePoint_Contoso_Test" },'', nchar(10), N'' "FarmAccount": { "type": "credential", "metadata": { "description": "Farm account resolved by the credential provider." } }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_Farm_Config'''')]",'', nchar(10), N'' "AdminContentDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_AdminContent'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SharePoint": {'', nchar(10), N'' "Farm": {'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDbName'''')]",'', nchar(10), N'' "AdminContentDatabase": "[variables(''''AdminContentDbName'''')]",'', nchar(10), N'' "ManagedAccounts": {'', nchar(10), N'' "FarmAccount": "[parameters(''''FarmAccount'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso SharePoint Server'', ''50000000-0000-0000-0000-000000000003'', N''1.0.0''), + (''70000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a Microsoft Teams policy baseline.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "CallingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Calling" },'', nchar(10), N'' "MeetingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Meetings" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {},'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "Teams": {'', nchar(10), N'' "CallingPolicy": "[parameters(''''CallingPolicyName'''')]",'', nchar(10), N'' "MeetingPolicy": "[parameters(''''MeetingPolicyName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Teams Policies'', ''50000000-0000-0000-0000-000000000004'', N''1.0.0'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Description', N'JSONData', N'Modified', N'ModifiedBy', N'Name', N'TemplateCategoryId', N'Version') AND [object_id] = OBJECT_ID(N'[Templates]')) + SET IDENTITY_INSERT [Templates] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Modified', N'ModifiedBy', N'Status', N'TemplateId') AND [object_id] = OBJECT_ID(N'[DeploymentBatches]')) + SET IDENTITY_INSERT [DeploymentBatches] ON; + EXEC(N'INSERT INTO [DeploymentBatches] ([Id], [Created], [CreatedBy], [DeploymentRuleId], [Modified], [ModifiedBy], [Status], [TemplateId]) + VALUES (''80000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Pending'', ''70000000-0000-0000-0000-000000000003'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Modified', N'ModifiedBy', N'Status', N'TemplateId') AND [object_id] = OBJECT_ID(N'[DeploymentBatches]')) + SET IDENTITY_INSERT [DeploymentBatches] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'IsPublished', N'JsonData', N'JsonHash', N'Modified', N'ModifiedBy', N'PublishedAt', N'PublishedBy', N'SchemaVersion', N'TemplateId', N'Version') AND [object_id] = OBJECT_ID(N'[TemplateVersions]')) + SET IDENTITY_INSERT [TemplateVersions] ON; + EXEC(N'INSERT INTO [TemplateVersions] ([Id], [Created], [CreatedBy], [IsPublished], [JsonData], [JsonHash], [Modified], [ModifiedBy], [PublishedAt], [PublishedBy], [SchemaVersion], [TemplateId], [Version]) + VALUES (''71000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DomainName": { "type": "string", "defaultValue": "corp.contoso.com" },'', nchar(10), N'' "NetBIOSName": { "type": "string", "defaultValue": "CONTOSO" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "DefaultSiteName": "[concat(parameters(''''DomainName''''), ''''-DefaultSite'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "AllNodes": ['', nchar(10), N'' { "NodeName": "*", "PSDscAllowPlainTextPassword": true }'', nchar(10), N'' ],'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "ActiveDirectory": {'', nchar(10), N'' "DomainName": "[parameters(''''DomainName'''')]",'', nchar(10), N'' "NetBIOSName": "[parameters(''''NetBIOSName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''C05CBEF91131C75DE53B9609D9C2709D680AFC9559EE8D998318A132490F79A7'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000001'', N''1.0.0''), + (''71000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "InstanceName": { "type": "string", "defaultValue": "MSSQLSERVER" },'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "Contoso" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDatabase": "[concat(parameters(''''DatabasePrefix''''), ''''_Config'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SqlServer": {'', nchar(10), N'' "InstanceName": "[parameters(''''InstanceName'''')]",'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDatabase'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''F376737E82CB6B729F7B9960CB9988897C16D90A1C454ED2F594B28EB86ECA11'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000002'', N''1.0.0''), + (''71000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "SharePoint_Contoso_Test" },'', nchar(10), N'' "FarmAccount": { "type": "credential", "metadata": { "description": "Farm account resolved by the credential provider." } }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_Farm_Config'''')]",'', nchar(10), N'' "AdminContentDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_AdminContent'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SharePoint": {'', nchar(10), N'' "Farm": {'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDbName'''')]",'', nchar(10), N'' "AdminContentDatabase": "[variables(''''AdminContentDbName'''')]",'', nchar(10), N'' "ManagedAccounts": {'', nchar(10), N'' "FarmAccount": "[parameters(''''FarmAccount'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''FD5F0FD3C13538FAC70646972DC364DFCEAAF85BBE91B0F50FDFF9FD3A3748B4'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000003'', N''1.0.0''), + (''71000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "CallingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Calling" },'', nchar(10), N'' "MeetingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Meetings" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {},'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "Teams": {'', nchar(10), N'' "CallingPolicy": "[parameters(''''CallingPolicyName'''')]",'', nchar(10), N'' "MeetingPolicy": "[parameters(''''MeetingPolicyName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''32A902FE1A871D4CE2C877EBC5542F7562856532F09BA7F53597B21270586241'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000004'', N''1.0.0'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'IsPublished', N'JsonData', N'JsonHash', N'Modified', N'ModifiedBy', N'PublishedAt', N'PublishedBy', N'SchemaVersion', N'TemplateId', N'Version') AND [object_id] = OBJECT_ID(N'[TemplateVersions]')) + SET IDENTITY_INSERT [TemplateVersions] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DeploymentBatchId', N'VirtualMachineId', N'Created', N'CreatedBy', N'Id', N'JSONData', N'Modified', N'ModifiedBy', N'Status') AND [object_id] = OBJECT_ID(N'[DeploymentExecutions]')) + SET IDENTITY_INSERT [DeploymentExecutions] ON; + EXEC(N'INSERT INTO [DeploymentExecutions] ([DeploymentBatchId], [VirtualMachineId], [Created], [CreatedBy], [Id], [JSONData], [Modified], [ModifiedBy], [Status]) + VALUES (''80000000-0000-0000-0000-000000000001'', ''30000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''81000000-0000-0000-0000-000000000001'', N''{"role":"WebFrontEnd"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Pending''), + (''80000000-0000-0000-0000-000000000001'', ''30000000-0000-0000-0000-000000000005'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''81000000-0000-0000-0000-000000000002'', N''{"role":"Application"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Pending'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DeploymentBatchId', N'VirtualMachineId', N'Created', N'CreatedBy', N'Id', N'JSONData', N'Modified', N'ModifiedBy', N'Status') AND [object_id] = OBJECT_ID(N'[DeploymentExecutions]')) + SET IDENTITY_INSERT [DeploymentExecutions] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260707203222_ResetAndSeedDemoData', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707204104_RemoveSmaRunbooks' +) +BEGIN + DROP TABLE [Events]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707204104_RemoveSmaRunbooks' +) +BEGIN + DROP TABLE [Jobs]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707204104_RemoveSmaRunbooks' +) +BEGIN + DROP TABLE [Runbooks]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707204104_RemoveSmaRunbooks' +) +BEGIN + ALTER TABLE [DeploymentExecutions] DROP CONSTRAINT [AK_DeploymentExecutions_Id]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707204104_RemoveSmaRunbooks' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260707204104_RemoveSmaRunbooks', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + CREATE TABLE [DeploymentTargetAssignments] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentGroupId] uniqueidentifier NOT NULL, + [VirtualMachineId] uniqueidentifier NOT NULL, + [RoleKey] nvarchar(450) NOT NULL, + [SortOrder] int NOT NULL, + [NodeDataJson] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentTargetAssignments] PRIMARY KEY ([Id]), + CONSTRAINT [CK_DeploymentTargetAssignments_NodeDataJson_IsJson] CHECK (ISJSON([NodeDataJson]) = 1), + CONSTRAINT [FK_DeploymentTargetAssignments_DeploymentBatches_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_DeploymentTargetAssignments_VirtualMachines_VirtualMachineId] FOREIGN KEY ([VirtualMachineId]) REFERENCES [VirtualMachines] ([Id]) ON DELETE NO ACTION + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + CREATE TABLE [DeploymentTemplateSelections] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentGroupId] uniqueidentifier NOT NULL, + [TemplateVersionId] uniqueidentifier NOT NULL, + [TemplateRole] nvarchar(max) NOT NULL, + [SortOrder] int NOT NULL, + [Alias] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentTemplateSelections] PRIMARY KEY ([Id]), + CONSTRAINT [FK_DeploymentTemplateSelections_DeploymentBatches_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_DeploymentTemplateSelections_TemplateVersions_TemplateVersionId] FOREIGN KEY ([TemplateVersionId]) REFERENCES [TemplateVersions] ([Id]) ON DELETE NO ACTION + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + CREATE TABLE [DeploymentParameterValues] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentGroupId] uniqueidentifier NOT NULL, + [DeploymentTemplateSelectionId] uniqueidentifier NULL, + [Name] nvarchar(450) NOT NULL, + [ValueJson] nvarchar(max) NOT NULL, + [IsSecretReference] bit NOT NULL, + [IsOverride] bit NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentParameterValues] PRIMARY KEY ([Id]), + CONSTRAINT [CK_DeploymentParameterValues_ValueJson_IsJson] CHECK (ISJSON([ValueJson]) = 1), + CONSTRAINT [FK_DeploymentParameterValues_DeploymentBatches_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_DeploymentParameterValues_DeploymentTemplateSelections_DeploymentTemplateSelectionId] FOREIGN KEY ([DeploymentTemplateSelectionId]) REFERENCES [DeploymentTemplateSelections] ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentGroupId', N'Modified', N'ModifiedBy', N'NodeDataJson', N'RoleKey', N'SortOrder', N'VirtualMachineId') AND [object_id] = OBJECT_ID(N'[DeploymentTargetAssignments]')) + SET IDENTITY_INSERT [DeploymentTargetAssignments] ON; + EXEC(N'INSERT INTO [DeploymentTargetAssignments] ([Id], [Created], [CreatedBy], [DeploymentGroupId], [Modified], [ModifiedBy], [NodeDataJson], [RoleKey], [SortOrder], [VirtualMachineId]) + VALUES (''84000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''80000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''{"nodeName":"CT-SHP-01"}'', N''WebFrontEnd'', 10, ''30000000-0000-0000-0000-000000000004''), + (''84000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''80000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''{"nodeName":"CT-SHP-02"}'', N''Application'', 20, ''30000000-0000-0000-0000-000000000005'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentGroupId', N'Modified', N'ModifiedBy', N'NodeDataJson', N'RoleKey', N'SortOrder', N'VirtualMachineId') AND [object_id] = OBJECT_ID(N'[DeploymentTargetAssignments]')) + SET IDENTITY_INSERT [DeploymentTargetAssignments] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Alias', N'Created', N'CreatedBy', N'DeploymentGroupId', N'Modified', N'ModifiedBy', N'SortOrder', N'TemplateRole', N'TemplateVersionId') AND [object_id] = OBJECT_ID(N'[DeploymentTemplateSelections]')) + SET IDENTITY_INSERT [DeploymentTemplateSelections] ON; + EXEC(N'INSERT INTO [DeploymentTemplateSelections] ([Id], [Alias], [Created], [CreatedBy], [DeploymentGroupId], [Modified], [ModifiedBy], [SortOrder], [TemplateRole], [TemplateVersionId]) + VALUES (''82000000-0000-0000-0000-000000000001'', N''SharePoint'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''80000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', 10, N''Service'', ''71000000-0000-0000-0000-000000000003'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Alias', N'Created', N'CreatedBy', N'DeploymentGroupId', N'Modified', N'ModifiedBy', N'SortOrder', N'TemplateRole', N'TemplateVersionId') AND [object_id] = OBJECT_ID(N'[DeploymentTemplateSelections]')) + SET IDENTITY_INSERT [DeploymentTemplateSelections] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentGroupId', N'DeploymentTemplateSelectionId', N'IsOverride', N'IsSecretReference', N'Modified', N'ModifiedBy', N'Name', N'ValueJson') AND [object_id] = OBJECT_ID(N'[DeploymentParameterValues]')) + SET IDENTITY_INSERT [DeploymentParameterValues] ON; + EXEC(N'INSERT INTO [DeploymentParameterValues] ([Id], [Created], [CreatedBy], [DeploymentGroupId], [DeploymentTemplateSelectionId], [IsOverride], [IsSecretReference], [Modified], [ModifiedBy], [Name], [ValueJson]) + VALUES (''83000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''80000000-0000-0000-0000-000000000001'', ''82000000-0000-0000-0000-000000000001'', CAST(1 AS bit), CAST(0 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''DatabasePrefix'', N''{"value":"SharePoint_Contoso_Test"}''), + (''83000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''80000000-0000-0000-0000-000000000001'', ''82000000-0000-0000-0000-000000000001'', CAST(1 AS bit), CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''FarmAccount'', N''{"provider":"SecretManagement","vault":"ContosoDemo","name":"Windows/SharePoint/FarmAccount"}'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentGroupId', N'DeploymentTemplateSelectionId', N'IsOverride', N'IsSecretReference', N'Modified', N'ModifiedBy', N'Name', N'ValueJson') AND [object_id] = OBJECT_ID(N'[DeploymentParameterValues]')) + SET IDENTITY_INSERT [DeploymentParameterValues] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + EXEC(N'CREATE UNIQUE INDEX [IX_DeploymentParameterValues_DeploymentGroupId_DeploymentTemplateSelectionId_Name] ON [DeploymentParameterValues] ([DeploymentGroupId], [DeploymentTemplateSelectionId], [Name]) WHERE [DeploymentTemplateSelectionId] IS NOT NULL'); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + EXEC(N'CREATE UNIQUE INDEX [IX_DeploymentParameterValues_DeploymentGroupId_Name] ON [DeploymentParameterValues] ([DeploymentGroupId], [Name]) WHERE [DeploymentTemplateSelectionId] IS NULL'); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + CREATE INDEX [IX_DeploymentParameterValues_DeploymentTemplateSelectionId] ON [DeploymentParameterValues] ([DeploymentTemplateSelectionId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + CREATE UNIQUE INDEX [IX_DeploymentTargetAssignments_DeploymentGroupId_VirtualMachineId_RoleKey] ON [DeploymentTargetAssignments] ([DeploymentGroupId], [VirtualMachineId], [RoleKey]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + CREATE INDEX [IX_DeploymentTargetAssignments_VirtualMachineId] ON [DeploymentTargetAssignments] ([VirtualMachineId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + CREATE UNIQUE INDEX [IX_DeploymentTemplateSelections_DeploymentGroupId_SortOrder] ON [DeploymentTemplateSelections] ([DeploymentGroupId], [SortOrder]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + CREATE INDEX [IX_DeploymentTemplateSelections_TemplateVersionId] ON [DeploymentTemplateSelections] ([TemplateVersionId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707210631_AddDeploymentComposition' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260707210631_AddDeploymentComposition', N'10.0.8'); +END; + +COMMIT; +GO + diff --git a/buildcheck/AddGenericTargetModel.sql b/buildcheck/AddGenericTargetModel.sql new file mode 100644 index 0000000..b906d54 --- /dev/null +++ b/buildcheck/AddGenericTargetModel.sql @@ -0,0 +1,49 @@ +BEGIN TRANSACTION; +ALTER TABLE [DeploymentExecutions] DROP CONSTRAINT [FK_DeploymentExecutions_VirtualMachines_VirtualMachineId]; + +ALTER TABLE [DeploymentTargetAssignments] DROP CONSTRAINT [FK_DeploymentTargetAssignments_VirtualMachines_VirtualMachineId]; + +ALTER TABLE [VirtualMachines] DROP CONSTRAINT [FK_VirtualMachines_Domains_DomainID]; + +ALTER TABLE [VirtualMachines] DROP CONSTRAINT [PK_VirtualMachines]; + +EXEC sp_rename N'[VirtualMachines]', N'Targets', 'OBJECT'; + +EXEC sp_rename N'[DeploymentTargetAssignments].[VirtualMachineId]', N'TargetId', 'COLUMN'; + +EXEC sp_rename N'[DeploymentTargetAssignments].[IX_DeploymentTargetAssignments_VirtualMachineId]', N'IX_DeploymentTargetAssignments_TargetId', 'INDEX'; + +EXEC sp_rename N'[DeploymentTargetAssignments].[IX_DeploymentTargetAssignments_DeploymentGroupId_VirtualMachineId_RoleKey]', N'IX_DeploymentTargetAssignments_DeploymentGroupId_TargetId_RoleKey', 'INDEX'; + +EXEC sp_rename N'[DeploymentJobTargets].[VirtualMachineId]', N'TargetId', 'COLUMN'; + +EXEC sp_rename N'[DeploymentExecutions].[VirtualMachineId]', N'TargetId', 'COLUMN'; + +EXEC sp_rename N'[Targets].[IX_VirtualMachines_DomainID]', N'IX_Targets_DomainID', 'INDEX'; + +ALTER TABLE [Targets] ADD [ProviderType] nvarchar(64) NOT NULL DEFAULT N'OnPrem'; + +ALTER TABLE [Targets] ADD [TargetType] nvarchar(64) NOT NULL DEFAULT N'VirtualMachine'; + +ALTER TABLE [Targets] ADD CONSTRAINT [PK_Targets] PRIMARY KEY ([Id]); + +IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DomainID', N'ExternalId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'ProviderType', N'TargetType') AND [object_id] = OBJECT_ID(N'[Targets]')) + SET IDENTITY_INSERT [Targets] ON; +INSERT INTO [Targets] ([Id], [Created], [CreatedBy], [DomainID], [ExternalId], [MetadataJson], [Modified], [ModifiedBy], [Name], [ProviderType], [TargetType]) +VALUES ('30000000-0000-0000-0000-000000000006', '2026-07-07T00:00:00.0000000Z', N'DemoSeed', NULL, N'11111111-1111-1111-1111-111111111111', N'{"environment":"Production","workload":"M365"}', '2026-07-07T00:00:00.0000000Z', N'DemoSeed', N'contoso.onmicrosoft.com', N'Microsoft365', N'Tenant'), +('30000000-0000-0000-0000-000000000007', '2026-07-07T00:00:00.0000000Z', N'DemoSeed', NULL, N'Teams.StandardUsers', N'{"workload":"Teams","scope":"StandardUsers"}', '2026-07-07T00:00:00.0000000Z', N'DemoSeed', N'Teams - Standard Users', N'Microsoft365', N'PolicyScope'); +IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DomainID', N'ExternalId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'ProviderType', N'TargetType') AND [object_id] = OBJECT_ID(N'[Targets]')) + SET IDENTITY_INSERT [Targets] OFF; + +ALTER TABLE [Targets] ADD CONSTRAINT [FK_Targets_Domains_DomainID] FOREIGN KEY ([DomainID]) REFERENCES [Domains] ([Id]); + +ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_Targets_TargetId] FOREIGN KEY ([TargetId]) REFERENCES [Targets] ([Id]) ON DELETE CASCADE; + +ALTER TABLE [DeploymentTargetAssignments] ADD CONSTRAINT [FK_DeploymentTargetAssignments_Targets_TargetId] FOREIGN KEY ([TargetId]) REFERENCES [Targets] ([Id]) ON DELETE NO ACTION; + +INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) +VALUES (N'20260707211957_AddGenericTargetModel', N'10.0.8'); + +COMMIT; +GO + diff --git a/buildcheck/AddTemplateVersions.sql b/buildcheck/AddTemplateVersions.sql new file mode 100644 index 0000000..b9a466e --- /dev/null +++ b/buildcheck/AddTemplateVersions.sql @@ -0,0 +1,1787 @@ +IF OBJECT_ID(N'[__EFMigrationsHistory]') IS NULL +BEGIN + CREATE TABLE [__EFMigrationsHistory] ( + [MigrationId] nvarchar(150) NOT NULL, + [ProductVersion] nvarchar(32) NOT NULL, + CONSTRAINT [PK___EFMigrationsHistory] PRIMARY KEY ([MigrationId]) + ); +END; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Domains] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [FQDN] nvarchar(max) NOT NULL, + [NetBIOS] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Domains] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Environments] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [CloudEnabled] bit NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Environments] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [OptionCategories] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [ParentCategoryName] nvarchar(max) NOT NULL, + [showOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_OptionCategories] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Runbooks] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Runbooks] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Services] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Services] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [VirtualMachines] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DomainID] uniqueidentifier NOT NULL, + [Name] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_VirtualMachines] PRIMARY KEY ([Id]), + CONSTRAINT [FK_VirtualMachines_Domains_DomainID] FOREIGN KEY ([DomainID]) REFERENCES [Domains] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [EnvironmentDomains] ( + [EnvironmentId] uniqueidentifier NOT NULL, + [DomainId] uniqueidentifier NOT NULL, + [Modified] datetime2 NOT NULL, + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL, + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_EnvironmentDomains] PRIMARY KEY ([EnvironmentId], [DomainId]), + CONSTRAINT [FK_EnvironmentDomains_Domains_DomainId] FOREIGN KEY ([DomainId]) REFERENCES [Domains] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_EnvironmentDomains_Environments_EnvironmentId] FOREIGN KEY ([EnvironmentId]) REFERENCES [Environments] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Options] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [OptionType] nvarchar(max) NOT NULL, + [OptionValue] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + [OptionCategoryId] uniqueidentifier NOT NULL, + CONSTRAINT [PK_Options] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Options_OptionCategories_OptionCategoryId] FOREIGN KEY ([OptionCategoryId]) REFERENCES [OptionCategories] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Events] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [RunbookId] uniqueidentifier NOT NULL, + [Class] nvarchar(max) NOT NULL, + [Method] nvarchar(max) NOT NULL, + [RestEndpointMethod] nvarchar(max) NOT NULL, + [RestEndpointOperation] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Events] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Events_Runbooks_RunbookId] FOREIGN KEY ([RunbookId]) REFERENCES [Runbooks] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [TemplateCategories] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [ServiceId] uniqueidentifier NOT NULL, + [Name] nvarchar(max) NOT NULL, + [ParentCategoryName] nvarchar(max) NOT NULL, + [showOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateCategories] PRIMARY KEY ([Id]), + CONSTRAINT [FK_TemplateCategories_Services_ServiceId] FOREIGN KEY ([ServiceId]) REFERENCES [Services] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Templates] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [CloudTemplate] bit NOT NULL, + [Version] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [JSONData] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + [TemplateCategoryId] uniqueidentifier NOT NULL, + CONSTRAINT [PK_Templates] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Templates_TemplateCategories_TemplateCategoryId] FOREIGN KEY ([TemplateCategoryId]) REFERENCES [TemplateCategories] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [DeploymentGroups] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [TemplateId] uniqueidentifier NOT NULL, + [Status] nvarchar(max) NOT NULL DEFAULT ('New'), + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentGroups] PRIMARY KEY ([Id]), + CONSTRAINT [FK_DeploymentGroups_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [TemplateOptions] ( + [TemplateId] uniqueidentifier NOT NULL, + [OptionId] uniqueidentifier NOT NULL, + [Value] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL, + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL, + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateOptions] PRIMARY KEY ([OptionId], [TemplateId]), + CONSTRAINT [FK_TemplateOptions_Options_OptionId] FOREIGN KEY ([OptionId]) REFERENCES [Options] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_TemplateOptions_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Deployments] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentGroupId] uniqueidentifier NOT NULL, + [VirtualMachineId] uniqueidentifier NOT NULL, + [Status] nvarchar(max) NOT NULL, + [JSONData] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Deployments] PRIMARY KEY ([VirtualMachineId], [DeploymentGroupId]), + CONSTRAINT [AK_Deployments_Id] UNIQUE ([Id]), + CONSTRAINT [FK_Deployments_DeploymentGroups_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentGroups] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_Deployments_VirtualMachines_VirtualMachineId] FOREIGN KEY ([VirtualMachineId]) REFERENCES [VirtualMachines] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Jobs] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentId] uniqueidentifier NOT NULL, + [RunbookId] uniqueidentifier NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Jobs] PRIMARY KEY ([RunbookId], [DeploymentId]), + CONSTRAINT [FK_Jobs_Deployments_DeploymentId] FOREIGN KEY ([DeploymentId]) REFERENCES [Deployments] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_Jobs_Runbooks_RunbookId] FOREIGN KEY ([RunbookId]) REFERENCES [Runbooks] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_DeploymentGroups_TemplateId] ON [DeploymentGroups] ([TemplateId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Deployments_DeploymentGroupId] ON [Deployments] ([DeploymentGroupId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_EnvironmentDomains_DomainId] ON [EnvironmentDomains] ([DomainId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Events_RunbookId] ON [Events] ([RunbookId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Jobs_DeploymentId] ON [Jobs] ([DeploymentId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Options_OptionCategoryId] ON [Options] ([OptionCategoryId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_TemplateCategories_ServiceId] ON [TemplateCategories] ([ServiceId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_TemplateOptions_TemplateId] ON [TemplateOptions] ([TemplateId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Templates_TemplateCategoryId] ON [Templates] ([TemplateCategoryId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_VirtualMachines_DomainID] ON [VirtualMachines] ([DomainID]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20231020093825_Initial', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260514210821_AddQueueJobs' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260514210821_AddQueueJobs', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260514210842_AddQueueJobModelSnapshotFix' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260514210842_AddQueueJobModelSnapshotFix', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [ExternalId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [TargetType] nvarchar(max) NOT NULL DEFAULT N''; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [EnvironmentType] nvarchar(max) NOT NULL DEFAULT N''; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515195005_AddEnvironmentAndTargetProviderModel', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var nvarchar(max); + SELECT @var = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'CloudEnabled'); + IF @var IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var + ';'); + ALTER TABLE [Environments] DROP COLUMN [CloudEnabled]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var1 nvarchar(max); + SELECT @var1 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'TenantId'); + IF @var1 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var1 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var2 nvarchar(max); + SELECT @var2 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'SubscriptionId'); + IF @var2 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var2 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var3 nvarchar(max); + SELECT @var3 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'ProviderType'); + IF @var3 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var3 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var4 nvarchar(max); + SELECT @var4 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'MetadataJson'); + IF @var4 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var4 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var5 nvarchar(max); + SELECT @var5 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'EnvironmentType'); + IF @var5 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var5 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [EnvironmentType] nvarchar(max) NOT NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515195742_RemoveCloudEnabledFromEnvironment', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var6 nvarchar(max); + SELECT @var6 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'ProviderType'); + IF @var6 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var6 + ';'); + ALTER TABLE [VirtualMachines] DROP COLUMN [ProviderType]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var7 nvarchar(max); + SELECT @var7 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'TargetType'); + IF @var7 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var7 + ';'); + ALTER TABLE [VirtualMachines] DROP COLUMN [TargetType]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var8 nvarchar(max); + SELECT @var8 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'MetadataJson'); + IF @var8 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var8 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var9 nvarchar(max); + SELECT @var9 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'ExternalId'); + IF @var9 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var9 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [ExternalId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515204426_RemoveVirtualMachineTargetAndProvider', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + ALTER TABLE [VirtualMachines] DROP CONSTRAINT [FK_VirtualMachines_Domains_DomainID]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + DECLARE @var10 nvarchar(max); + SELECT @var10 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'DomainID'); + IF @var10 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var10 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [DomainID] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD CONSTRAINT [FK_VirtualMachines_Domains_DomainID] FOREIGN KEY ([DomainID]) REFERENCES [Domains] ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + ALTER TABLE [Services] ADD [IsCloudService] bit NOT NULL DEFAULT CAST(0 AS bit); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + CREATE TABLE [ServiceRoleDefinitions] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [ServiceId] uniqueidentifier NOT NULL, + [Key] nvarchar(max) NOT NULL, + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NULL, + [MinCount] int NOT NULL, + [MaxCount] int NOT NULL, + [DefaultStageOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_ServiceRoleDefinitions] PRIMARY KEY ([Id]), + CONSTRAINT [FK_ServiceRoleDefinitions_Services_ServiceId] FOREIGN KEY ([ServiceId]) REFERENCES [Services] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + CREATE INDEX [IX_ServiceRoleDefinitions_ServiceId] ON [ServiceRoleDefinitions] ([ServiceId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var11 nvarchar(max); + SELECT @var11 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'DefaultStageOrder'); + IF @var11 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var11 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [DefaultStageOrder]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var12 nvarchar(max); + SELECT @var12 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'MaxCount'); + IF @var12 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var12 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [MaxCount]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var13 nvarchar(max); + SELECT @var13 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'MinCount'); + IF @var13 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var13 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [MinCount]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515221746_RemoveRoleDefinitionSizingFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + DECLARE @var14 nvarchar(max); + SELECT @var14 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'ParentCategoryName'); + IF @var14 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var14 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [ParentCategoryName]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + DECLARE @var15 nvarchar(max); + SELECT @var15 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'showOrder'); + IF @var15 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var15 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [showOrder]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516113515_RemoveTemplateCategoryLegacyFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [Color] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [Description] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [IconKey] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [IsActive] bit NOT NULL DEFAULT CAST(1 AS bit); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516114627_AddTemplateCategoryMetadataFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + DECLARE @var16 nvarchar(max); + SELECT @var16 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'IconKey'); + IF @var16 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var16 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [IconKey]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + ALTER TABLE [Services] ADD [IconKey] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516115934_MoveIconKeyFromTemplateCategoryToService', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516121222_RemoveTemplateCloudFlag' +) +BEGIN + DECLARE @var17 nvarchar(max); + SELECT @var17 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Templates]') AND [c].[name] = N'CloudTemplate'); + IF @var17 IS NOT NULL EXEC(N'ALTER TABLE [Templates] DROP CONSTRAINT ' + @var17 + ';'); + ALTER TABLE [Templates] DROP COLUMN [CloudTemplate]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516121222_RemoveTemplateCloudFlag' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516121222_RemoveTemplateCloudFlag', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [Templates] ADD [DeploymentRuleId] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [QueueJobs] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [QueueJobs] ADD [RuleSnapshotJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [DeploymentRules] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NULL, + [IsActive] bit NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentRules] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [QueueJobSteps] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [QueueJobId] uniqueidentifier NOT NULL, + [DependsOnQueueJobStepId] uniqueidentifier NULL, + [SortOrder] int NOT NULL, + [Name] nvarchar(max) NOT NULL, + [StepType] nvarchar(max) NOT NULL, + [Status] nvarchar(max) NOT NULL, + [MetadataJson] nvarchar(max) NULL, + [ApprovedAt] datetime2 NULL, + [ApprovedBy] nvarchar(max) NULL, + [ApprovalComment] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_QueueJobSteps] PRIMARY KEY ([Id]), + CONSTRAINT [FK_QueueJobSteps_QueueJobSteps_DependsOnQueueJobStepId] FOREIGN KEY ([DependsOnQueueJobStepId]) REFERENCES [QueueJobSteps] ([Id]) ON DELETE NO ACTION, + CONSTRAINT [FK_QueueJobSteps_QueueJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [QueueJobs] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [DeploymentRuleSteps] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentRuleId] uniqueidentifier NOT NULL, + [SortOrder] int NOT NULL, + [Name] nvarchar(max) NOT NULL, + [StepType] nvarchar(max) NOT NULL, + [RequiresApproval] bit NOT NULL, + [MetadataJson] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentRuleSteps] PRIMARY KEY ([Id]), + CONSTRAINT [FK_DeploymentRuleSteps_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_Templates_DeploymentRuleId] ON [Templates] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_DeploymentRuleSteps_DeploymentRuleId] ON [DeploymentRuleSteps] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_QueueJobSteps_DependsOnQueueJobStepId] ON [QueueJobSteps] ([DependsOnQueueJobStepId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_QueueJobSteps_QueueJobId] ON [QueueJobSteps] ([QueueJobId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [Templates] ADD CONSTRAINT [FK_Templates_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516140554_AddDeploymentRulesAndQueueJobSteps', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentGroups] DROP CONSTRAINT [FK_DeploymentGroups_Templates_TemplateId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [FK_Deployments_DeploymentGroups_DeploymentGroupId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [FK_Deployments_VirtualMachines_VirtualMachineId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Jobs] DROP CONSTRAINT [FK_Jobs_Deployments_DeploymentId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [FK_QueueJobSteps_QueueJobSteps_DependsOnQueueJobStepId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [FK_QueueJobSteps_QueueJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobTargets] DROP CONSTRAINT [FK_QueueJobTargets_QueueJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobTargets] DROP CONSTRAINT [PK_QueueJobTargets]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [PK_QueueJobSteps]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobs] DROP CONSTRAINT [PK_QueueJobs]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [AK_Deployments_Id]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [PK_Deployments]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentGroups] DROP CONSTRAINT [PK_DeploymentGroups]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobTargets]', N'DeploymentJobTargets', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobSteps]', N'DeploymentJobSteps', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobs]', N'DeploymentJobs', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[Deployments]', N'DeploymentExecutions', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentGroups]', N'DeploymentBatches', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[IX_QueueJobTargets_QueueJobId]', N'IX_DeploymentJobTargets_QueueJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_QueueJobSteps_QueueJobId]', N'IX_DeploymentJobSteps_QueueJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_QueueJobSteps_DependsOnQueueJobStepId]', N'IX_DeploymentJobSteps_DependsOnQueueJobStepId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[IX_Deployments_DeploymentGroupId]', N'IX_DeploymentExecutions_DeploymentGroupId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentBatches].[IX_DeploymentGroups_TemplateId]', N'IX_DeploymentBatches_TemplateId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [PK_DeploymentJobTargets] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [PK_DeploymentJobSteps] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobs] ADD CONSTRAINT [PK_DeploymentJobs] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [AK_DeploymentExecutions_Id] UNIQUE ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [PK_DeploymentExecutions] PRIMARY KEY ([VirtualMachineId], [DeploymentGroupId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [PK_DeploymentBatches] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [FK_DeploymentBatches_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_VirtualMachines_VirtualMachineId] FOREIGN KEY ([VirtualMachineId]) REFERENCES [VirtualMachines] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnQueueJobStepId] FOREIGN KEY ([DependsOnQueueJobStepId]) REFERENCES [DeploymentJobSteps] ([Id]) ON DELETE NO ACTION; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Jobs] ADD CONSTRAINT [FK_Jobs_DeploymentExecutions_DeploymentId] FOREIGN KEY ([DeploymentId]) REFERENCES [DeploymentExecutions] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516141653_RenameDeploymentAndJobTables', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentExecutions] DROP CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentGroupId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] DROP CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnQueueJobStepId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] DROP CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] DROP CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[QueueJobId]', N'DeploymentJobId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[DeploymentGroupId]', N'DeploymentBatchId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[IX_DeploymentJobTargets_QueueJobId]', N'IX_DeploymentJobTargets_DeploymentJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[QueueJobId]', N'DeploymentJobId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[DependsOnQueueJobStepId]', N'DependsOnDeploymentJobStepId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_DeploymentJobSteps_QueueJobId]', N'IX_DeploymentJobSteps_DeploymentJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_DeploymentJobSteps_DependsOnQueueJobStepId]', N'IX_DeploymentJobSteps_DependsOnDeploymentJobStepId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[DeploymentGroupId]', N'DeploymentBatchId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[IX_DeploymentExecutions_DeploymentGroupId]', N'IX_DeploymentExecutions_DeploymentBatchId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentBatchId] FOREIGN KEY ([DeploymentBatchId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnDeploymentJobStepId] FOREIGN KEY ([DependsOnDeploymentJobStepId]) REFERENCES [DeploymentJobSteps] ([Id]) ON DELETE NO ACTION; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_DeploymentJobId] FOREIGN KEY ([DeploymentJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_DeploymentJobId] FOREIGN KEY ([DeploymentJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516141719_RenameDeploymentAndJobColumns', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var18 nvarchar(max); + SELECT @var18 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'TenantId'); + IF @var18 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var18 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var19 nvarchar(max); + SELECT @var19 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'SubscriptionId'); + IF @var19 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var19 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var20 nvarchar(max); + SELECT @var20 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'ProviderType'); + IF @var20 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var20 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var21 nvarchar(max); + SELECT @var21 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'MetadataJson'); + IF @var21 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var21 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + ALTER TABLE [Environments] ADD [HostingType] nvarchar(max) NOT NULL DEFAULT N'OnPrem'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + + UPDATE [Environments] + SET [HostingType] = CASE + WHEN [EnvironmentType] IN ('OnPrem','AzureTenant','M365Tenant') THEN [EnvironmentType] + ELSE 'OnPrem' + END + +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + + UPDATE [Environments] + SET [EnvironmentType] = CASE + WHEN [EnvironmentType] IN ('Development','Test','QA','Production') THEN [EnvironmentType] + ELSE 'Test' + END + +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260517193537_SyncEnvironmentStageAndHostingType', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517205713_LinkDeploymentBatchToDeploymentRule' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260517205713_LinkDeploymentBatchToDeploymentRule', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD [DeploymentRuleId] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE TABLE [TemplateVersions] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [TemplateId] uniqueidentifier NOT NULL, + [Version] nvarchar(64) NOT NULL, + [JsonData] nvarchar(max) NOT NULL, + [JsonHash] nvarchar(64) NOT NULL, + [SchemaVersion] nvarchar(32) NOT NULL, + [IsPublished] bit NOT NULL, + [PublishedAt] datetime2 NULL, + [PublishedBy] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateVersions] PRIMARY KEY ([Id]), + CONSTRAINT [CK_TemplateVersions_JsonData_IsJson] CHECK (ISJSON([JsonData]) = 1), + CONSTRAINT [FK_TemplateVersions_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + INSERT INTO [TemplateVersions] + ([Id], [TemplateId], [Version], [JsonData], [JsonHash], [SchemaVersion], [IsPublished], [PublishedAt], [PublishedBy], [Modified], [ModifiedBy], [Created], [CreatedBy]) + SELECT + NEWID(), + [Id], + CASE + WHEN [Version] IS NULL OR LTRIM(RTRIM([Version])) = '' THEN '1.0.0' + ELSE [Version] + END, + CASE + WHEN ISJSON([JSONData]) = 1 THEN [JSONData] + ELSE '{}' + END, + CONVERT(varchar(64), HASHBYTES('SHA2_256', CONVERT(varbinary(max), CASE WHEN ISJSON([JSONData]) = 1 THEN [JSONData] ELSE '{}' END)), 2), + '1.0', + 1, + SYSUTCDATETIME(), + [CreatedBy], + [Modified], + [ModifiedBy], + [Created], + [CreatedBy] + FROM [Templates] + WHERE NOT EXISTS ( + SELECT 1 + FROM [TemplateVersions] + WHERE [TemplateVersions].[TemplateId] = [Templates].[Id] + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE INDEX [IX_DeploymentBatches_DeploymentRuleId] ON [DeploymentBatches] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + EXEC(N'CREATE UNIQUE INDEX [IX_TemplateVersions_TemplateId] ON [TemplateVersions] ([TemplateId]) WHERE [IsPublished] = 1'); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE UNIQUE INDEX [IX_TemplateVersions_TemplateId_Version] ON [TemplateVersions] ([TemplateId], [Version]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [FK_DeploymentBatches_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]) ON DELETE SET NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260707195927_AddTemplateVersions', N'10.0.8'); +END; + +COMMIT; +GO + diff --git a/buildcheck/RemoveSmaRunbooks.sql b/buildcheck/RemoveSmaRunbooks.sql new file mode 100644 index 0000000..3ced2b2 --- /dev/null +++ b/buildcheck/RemoveSmaRunbooks.sql @@ -0,0 +1,2069 @@ +IF OBJECT_ID(N'[__EFMigrationsHistory]') IS NULL +BEGIN + CREATE TABLE [__EFMigrationsHistory] ( + [MigrationId] nvarchar(150) NOT NULL, + [ProductVersion] nvarchar(32) NOT NULL, + CONSTRAINT [PK___EFMigrationsHistory] PRIMARY KEY ([MigrationId]) + ); +END; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Domains] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [FQDN] nvarchar(max) NOT NULL, + [NetBIOS] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Domains] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Environments] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [CloudEnabled] bit NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Environments] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [OptionCategories] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [ParentCategoryName] nvarchar(max) NOT NULL, + [showOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_OptionCategories] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Runbooks] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Runbooks] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Services] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Services] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [VirtualMachines] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DomainID] uniqueidentifier NOT NULL, + [Name] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_VirtualMachines] PRIMARY KEY ([Id]), + CONSTRAINT [FK_VirtualMachines_Domains_DomainID] FOREIGN KEY ([DomainID]) REFERENCES [Domains] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [EnvironmentDomains] ( + [EnvironmentId] uniqueidentifier NOT NULL, + [DomainId] uniqueidentifier NOT NULL, + [Modified] datetime2 NOT NULL, + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL, + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_EnvironmentDomains] PRIMARY KEY ([EnvironmentId], [DomainId]), + CONSTRAINT [FK_EnvironmentDomains_Domains_DomainId] FOREIGN KEY ([DomainId]) REFERENCES [Domains] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_EnvironmentDomains_Environments_EnvironmentId] FOREIGN KEY ([EnvironmentId]) REFERENCES [Environments] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Options] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [OptionType] nvarchar(max) NOT NULL, + [OptionValue] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + [OptionCategoryId] uniqueidentifier NOT NULL, + CONSTRAINT [PK_Options] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Options_OptionCategories_OptionCategoryId] FOREIGN KEY ([OptionCategoryId]) REFERENCES [OptionCategories] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Events] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [RunbookId] uniqueidentifier NOT NULL, + [Class] nvarchar(max) NOT NULL, + [Method] nvarchar(max) NOT NULL, + [RestEndpointMethod] nvarchar(max) NOT NULL, + [RestEndpointOperation] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Events] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Events_Runbooks_RunbookId] FOREIGN KEY ([RunbookId]) REFERENCES [Runbooks] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [TemplateCategories] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [ServiceId] uniqueidentifier NOT NULL, + [Name] nvarchar(max) NOT NULL, + [ParentCategoryName] nvarchar(max) NOT NULL, + [showOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateCategories] PRIMARY KEY ([Id]), + CONSTRAINT [FK_TemplateCategories_Services_ServiceId] FOREIGN KEY ([ServiceId]) REFERENCES [Services] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Templates] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [CloudTemplate] bit NOT NULL, + [Version] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [JSONData] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + [TemplateCategoryId] uniqueidentifier NOT NULL, + CONSTRAINT [PK_Templates] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Templates_TemplateCategories_TemplateCategoryId] FOREIGN KEY ([TemplateCategoryId]) REFERENCES [TemplateCategories] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [DeploymentGroups] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [TemplateId] uniqueidentifier NOT NULL, + [Status] nvarchar(max) NOT NULL DEFAULT ('New'), + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentGroups] PRIMARY KEY ([Id]), + CONSTRAINT [FK_DeploymentGroups_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [TemplateOptions] ( + [TemplateId] uniqueidentifier NOT NULL, + [OptionId] uniqueidentifier NOT NULL, + [Value] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL, + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL, + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateOptions] PRIMARY KEY ([OptionId], [TemplateId]), + CONSTRAINT [FK_TemplateOptions_Options_OptionId] FOREIGN KEY ([OptionId]) REFERENCES [Options] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_TemplateOptions_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Deployments] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentGroupId] uniqueidentifier NOT NULL, + [VirtualMachineId] uniqueidentifier NOT NULL, + [Status] nvarchar(max) NOT NULL, + [JSONData] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Deployments] PRIMARY KEY ([VirtualMachineId], [DeploymentGroupId]), + CONSTRAINT [AK_Deployments_Id] UNIQUE ([Id]), + CONSTRAINT [FK_Deployments_DeploymentGroups_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentGroups] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_Deployments_VirtualMachines_VirtualMachineId] FOREIGN KEY ([VirtualMachineId]) REFERENCES [VirtualMachines] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Jobs] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentId] uniqueidentifier NOT NULL, + [RunbookId] uniqueidentifier NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Jobs] PRIMARY KEY ([RunbookId], [DeploymentId]), + CONSTRAINT [FK_Jobs_Deployments_DeploymentId] FOREIGN KEY ([DeploymentId]) REFERENCES [Deployments] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_Jobs_Runbooks_RunbookId] FOREIGN KEY ([RunbookId]) REFERENCES [Runbooks] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_DeploymentGroups_TemplateId] ON [DeploymentGroups] ([TemplateId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Deployments_DeploymentGroupId] ON [Deployments] ([DeploymentGroupId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_EnvironmentDomains_DomainId] ON [EnvironmentDomains] ([DomainId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Events_RunbookId] ON [Events] ([RunbookId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Jobs_DeploymentId] ON [Jobs] ([DeploymentId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Options_OptionCategoryId] ON [Options] ([OptionCategoryId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_TemplateCategories_ServiceId] ON [TemplateCategories] ([ServiceId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_TemplateOptions_TemplateId] ON [TemplateOptions] ([TemplateId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Templates_TemplateCategoryId] ON [Templates] ([TemplateCategoryId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_VirtualMachines_DomainID] ON [VirtualMachines] ([DomainID]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20231020093825_Initial', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260514210821_AddQueueJobs' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260514210821_AddQueueJobs', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260514210842_AddQueueJobModelSnapshotFix' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260514210842_AddQueueJobModelSnapshotFix', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [ExternalId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [TargetType] nvarchar(max) NOT NULL DEFAULT N''; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [EnvironmentType] nvarchar(max) NOT NULL DEFAULT N''; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515195005_AddEnvironmentAndTargetProviderModel', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var nvarchar(max); + SELECT @var = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'CloudEnabled'); + IF @var IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var + ';'); + ALTER TABLE [Environments] DROP COLUMN [CloudEnabled]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var1 nvarchar(max); + SELECT @var1 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'TenantId'); + IF @var1 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var1 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var2 nvarchar(max); + SELECT @var2 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'SubscriptionId'); + IF @var2 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var2 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var3 nvarchar(max); + SELECT @var3 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'ProviderType'); + IF @var3 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var3 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var4 nvarchar(max); + SELECT @var4 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'MetadataJson'); + IF @var4 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var4 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var5 nvarchar(max); + SELECT @var5 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'EnvironmentType'); + IF @var5 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var5 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [EnvironmentType] nvarchar(max) NOT NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515195742_RemoveCloudEnabledFromEnvironment', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var6 nvarchar(max); + SELECT @var6 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'ProviderType'); + IF @var6 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var6 + ';'); + ALTER TABLE [VirtualMachines] DROP COLUMN [ProviderType]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var7 nvarchar(max); + SELECT @var7 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'TargetType'); + IF @var7 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var7 + ';'); + ALTER TABLE [VirtualMachines] DROP COLUMN [TargetType]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var8 nvarchar(max); + SELECT @var8 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'MetadataJson'); + IF @var8 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var8 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var9 nvarchar(max); + SELECT @var9 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'ExternalId'); + IF @var9 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var9 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [ExternalId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515204426_RemoveVirtualMachineTargetAndProvider', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + ALTER TABLE [VirtualMachines] DROP CONSTRAINT [FK_VirtualMachines_Domains_DomainID]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + DECLARE @var10 nvarchar(max); + SELECT @var10 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'DomainID'); + IF @var10 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var10 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [DomainID] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD CONSTRAINT [FK_VirtualMachines_Domains_DomainID] FOREIGN KEY ([DomainID]) REFERENCES [Domains] ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + ALTER TABLE [Services] ADD [IsCloudService] bit NOT NULL DEFAULT CAST(0 AS bit); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + CREATE TABLE [ServiceRoleDefinitions] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [ServiceId] uniqueidentifier NOT NULL, + [Key] nvarchar(max) NOT NULL, + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NULL, + [MinCount] int NOT NULL, + [MaxCount] int NOT NULL, + [DefaultStageOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_ServiceRoleDefinitions] PRIMARY KEY ([Id]), + CONSTRAINT [FK_ServiceRoleDefinitions_Services_ServiceId] FOREIGN KEY ([ServiceId]) REFERENCES [Services] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + CREATE INDEX [IX_ServiceRoleDefinitions_ServiceId] ON [ServiceRoleDefinitions] ([ServiceId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var11 nvarchar(max); + SELECT @var11 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'DefaultStageOrder'); + IF @var11 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var11 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [DefaultStageOrder]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var12 nvarchar(max); + SELECT @var12 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'MaxCount'); + IF @var12 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var12 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [MaxCount]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var13 nvarchar(max); + SELECT @var13 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'MinCount'); + IF @var13 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var13 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [MinCount]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515221746_RemoveRoleDefinitionSizingFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + DECLARE @var14 nvarchar(max); + SELECT @var14 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'ParentCategoryName'); + IF @var14 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var14 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [ParentCategoryName]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + DECLARE @var15 nvarchar(max); + SELECT @var15 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'showOrder'); + IF @var15 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var15 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [showOrder]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516113515_RemoveTemplateCategoryLegacyFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [Color] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [Description] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [IconKey] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [IsActive] bit NOT NULL DEFAULT CAST(1 AS bit); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516114627_AddTemplateCategoryMetadataFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + DECLARE @var16 nvarchar(max); + SELECT @var16 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'IconKey'); + IF @var16 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var16 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [IconKey]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + ALTER TABLE [Services] ADD [IconKey] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516115934_MoveIconKeyFromTemplateCategoryToService', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516121222_RemoveTemplateCloudFlag' +) +BEGIN + DECLARE @var17 nvarchar(max); + SELECT @var17 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Templates]') AND [c].[name] = N'CloudTemplate'); + IF @var17 IS NOT NULL EXEC(N'ALTER TABLE [Templates] DROP CONSTRAINT ' + @var17 + ';'); + ALTER TABLE [Templates] DROP COLUMN [CloudTemplate]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516121222_RemoveTemplateCloudFlag' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516121222_RemoveTemplateCloudFlag', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [Templates] ADD [DeploymentRuleId] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [QueueJobs] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [QueueJobs] ADD [RuleSnapshotJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [DeploymentRules] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NULL, + [IsActive] bit NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentRules] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [QueueJobSteps] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [QueueJobId] uniqueidentifier NOT NULL, + [DependsOnQueueJobStepId] uniqueidentifier NULL, + [SortOrder] int NOT NULL, + [Name] nvarchar(max) NOT NULL, + [StepType] nvarchar(max) NOT NULL, + [Status] nvarchar(max) NOT NULL, + [MetadataJson] nvarchar(max) NULL, + [ApprovedAt] datetime2 NULL, + [ApprovedBy] nvarchar(max) NULL, + [ApprovalComment] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_QueueJobSteps] PRIMARY KEY ([Id]), + CONSTRAINT [FK_QueueJobSteps_QueueJobSteps_DependsOnQueueJobStepId] FOREIGN KEY ([DependsOnQueueJobStepId]) REFERENCES [QueueJobSteps] ([Id]) ON DELETE NO ACTION, + CONSTRAINT [FK_QueueJobSteps_QueueJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [QueueJobs] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [DeploymentRuleSteps] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentRuleId] uniqueidentifier NOT NULL, + [SortOrder] int NOT NULL, + [Name] nvarchar(max) NOT NULL, + [StepType] nvarchar(max) NOT NULL, + [RequiresApproval] bit NOT NULL, + [MetadataJson] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentRuleSteps] PRIMARY KEY ([Id]), + CONSTRAINT [FK_DeploymentRuleSteps_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_Templates_DeploymentRuleId] ON [Templates] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_DeploymentRuleSteps_DeploymentRuleId] ON [DeploymentRuleSteps] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_QueueJobSteps_DependsOnQueueJobStepId] ON [QueueJobSteps] ([DependsOnQueueJobStepId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_QueueJobSteps_QueueJobId] ON [QueueJobSteps] ([QueueJobId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [Templates] ADD CONSTRAINT [FK_Templates_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516140554_AddDeploymentRulesAndQueueJobSteps', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentGroups] DROP CONSTRAINT [FK_DeploymentGroups_Templates_TemplateId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [FK_Deployments_DeploymentGroups_DeploymentGroupId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [FK_Deployments_VirtualMachines_VirtualMachineId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Jobs] DROP CONSTRAINT [FK_Jobs_Deployments_DeploymentId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [FK_QueueJobSteps_QueueJobSteps_DependsOnQueueJobStepId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [FK_QueueJobSteps_QueueJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobTargets] DROP CONSTRAINT [FK_QueueJobTargets_QueueJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobTargets] DROP CONSTRAINT [PK_QueueJobTargets]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [PK_QueueJobSteps]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobs] DROP CONSTRAINT [PK_QueueJobs]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [AK_Deployments_Id]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [PK_Deployments]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentGroups] DROP CONSTRAINT [PK_DeploymentGroups]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobTargets]', N'DeploymentJobTargets', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobSteps]', N'DeploymentJobSteps', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobs]', N'DeploymentJobs', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[Deployments]', N'DeploymentExecutions', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentGroups]', N'DeploymentBatches', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[IX_QueueJobTargets_QueueJobId]', N'IX_DeploymentJobTargets_QueueJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_QueueJobSteps_QueueJobId]', N'IX_DeploymentJobSteps_QueueJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_QueueJobSteps_DependsOnQueueJobStepId]', N'IX_DeploymentJobSteps_DependsOnQueueJobStepId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[IX_Deployments_DeploymentGroupId]', N'IX_DeploymentExecutions_DeploymentGroupId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentBatches].[IX_DeploymentGroups_TemplateId]', N'IX_DeploymentBatches_TemplateId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [PK_DeploymentJobTargets] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [PK_DeploymentJobSteps] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobs] ADD CONSTRAINT [PK_DeploymentJobs] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [AK_DeploymentExecutions_Id] UNIQUE ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [PK_DeploymentExecutions] PRIMARY KEY ([VirtualMachineId], [DeploymentGroupId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [PK_DeploymentBatches] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [FK_DeploymentBatches_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_VirtualMachines_VirtualMachineId] FOREIGN KEY ([VirtualMachineId]) REFERENCES [VirtualMachines] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnQueueJobStepId] FOREIGN KEY ([DependsOnQueueJobStepId]) REFERENCES [DeploymentJobSteps] ([Id]) ON DELETE NO ACTION; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Jobs] ADD CONSTRAINT [FK_Jobs_DeploymentExecutions_DeploymentId] FOREIGN KEY ([DeploymentId]) REFERENCES [DeploymentExecutions] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516141653_RenameDeploymentAndJobTables', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentExecutions] DROP CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentGroupId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] DROP CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnQueueJobStepId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] DROP CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] DROP CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[QueueJobId]', N'DeploymentJobId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[DeploymentGroupId]', N'DeploymentBatchId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[IX_DeploymentJobTargets_QueueJobId]', N'IX_DeploymentJobTargets_DeploymentJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[QueueJobId]', N'DeploymentJobId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[DependsOnQueueJobStepId]', N'DependsOnDeploymentJobStepId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_DeploymentJobSteps_QueueJobId]', N'IX_DeploymentJobSteps_DeploymentJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_DeploymentJobSteps_DependsOnQueueJobStepId]', N'IX_DeploymentJobSteps_DependsOnDeploymentJobStepId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[DeploymentGroupId]', N'DeploymentBatchId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[IX_DeploymentExecutions_DeploymentGroupId]', N'IX_DeploymentExecutions_DeploymentBatchId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentBatchId] FOREIGN KEY ([DeploymentBatchId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnDeploymentJobStepId] FOREIGN KEY ([DependsOnDeploymentJobStepId]) REFERENCES [DeploymentJobSteps] ([Id]) ON DELETE NO ACTION; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_DeploymentJobId] FOREIGN KEY ([DeploymentJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_DeploymentJobId] FOREIGN KEY ([DeploymentJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516141719_RenameDeploymentAndJobColumns', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var18 nvarchar(max); + SELECT @var18 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'TenantId'); + IF @var18 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var18 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var19 nvarchar(max); + SELECT @var19 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'SubscriptionId'); + IF @var19 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var19 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var20 nvarchar(max); + SELECT @var20 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'ProviderType'); + IF @var20 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var20 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var21 nvarchar(max); + SELECT @var21 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'MetadataJson'); + IF @var21 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var21 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + ALTER TABLE [Environments] ADD [HostingType] nvarchar(max) NOT NULL DEFAULT N'OnPrem'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + + UPDATE [Environments] + SET [HostingType] = CASE + WHEN [EnvironmentType] IN ('OnPrem','AzureTenant','M365Tenant') THEN [EnvironmentType] + ELSE 'OnPrem' + END + +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + + UPDATE [Environments] + SET [EnvironmentType] = CASE + WHEN [EnvironmentType] IN ('Development','Test','QA','Production') THEN [EnvironmentType] + ELSE 'Test' + END + +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260517193537_SyncEnvironmentStageAndHostingType', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517205713_LinkDeploymentBatchToDeploymentRule' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260517205713_LinkDeploymentBatchToDeploymentRule', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD [DeploymentRuleId] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE TABLE [TemplateVersions] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [TemplateId] uniqueidentifier NOT NULL, + [Version] nvarchar(64) NOT NULL, + [JsonData] nvarchar(max) NOT NULL, + [JsonHash] nvarchar(64) NOT NULL, + [SchemaVersion] nvarchar(32) NOT NULL, + [IsPublished] bit NOT NULL, + [PublishedAt] datetime2 NULL, + [PublishedBy] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateVersions] PRIMARY KEY ([Id]), + CONSTRAINT [CK_TemplateVersions_JsonData_IsJson] CHECK (ISJSON([JsonData]) = 1), + CONSTRAINT [FK_TemplateVersions_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + INSERT INTO [TemplateVersions] + ([Id], [TemplateId], [Version], [JsonData], [JsonHash], [SchemaVersion], [IsPublished], [PublishedAt], [PublishedBy], [Modified], [ModifiedBy], [Created], [CreatedBy]) + SELECT + NEWID(), + [Id], + CASE + WHEN [Version] IS NULL OR LTRIM(RTRIM([Version])) = '' THEN '1.0.0' + ELSE [Version] + END, + CASE + WHEN ISJSON([JSONData]) = 1 THEN [JSONData] + ELSE '{}' + END, + CONVERT(varchar(64), HASHBYTES('SHA2_256', CONVERT(varbinary(max), CASE WHEN ISJSON([JSONData]) = 1 THEN [JSONData] ELSE '{}' END)), 2), + '1.0', + 1, + SYSUTCDATETIME(), + [CreatedBy], + [Modified], + [ModifiedBy], + [Created], + [CreatedBy] + FROM [Templates] + WHERE NOT EXISTS ( + SELECT 1 + FROM [TemplateVersions] + WHERE [TemplateVersions].[TemplateId] = [Templates].[Id] + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE INDEX [IX_DeploymentBatches_DeploymentRuleId] ON [DeploymentBatches] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + EXEC(N'CREATE UNIQUE INDEX [IX_TemplateVersions_TemplateId] ON [TemplateVersions] ([TemplateId]) WHERE [IsPublished] = 1'); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE UNIQUE INDEX [IX_TemplateVersions_TemplateId_Version] ON [TemplateVersions] ([TemplateId], [Version]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [FK_DeploymentBatches_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]) ON DELETE SET NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260707195927_AddTemplateVersions', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + DELETE FROM [DeploymentJobTargets]; + DELETE FROM [DeploymentJobSteps]; + DELETE FROM [DeploymentJobs]; + DELETE FROM [Jobs]; + DELETE FROM [Events]; + DELETE FROM [DeploymentExecutions]; + DELETE FROM [DeploymentBatches]; + DELETE FROM [TemplateVersions]; + DELETE FROM [TemplateOptions]; + DELETE FROM [Templates]; + DELETE FROM [DeploymentRuleSteps]; + DELETE FROM [DeploymentRules]; + DELETE FROM [ServiceRoleDefinitions]; + DELETE FROM [TemplateCategories]; + DELETE FROM [Options]; + DELETE FROM [OptionCategories]; + DELETE FROM [Services]; + DELETE FROM [VirtualMachines]; + DELETE FROM [EnvironmentDomains]; + DELETE FROM [Domains]; + DELETE FROM [Environments]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[DeploymentRules]')) + SET IDENTITY_INSERT [DeploymentRules] ON; + EXEC(N'INSERT INTO [DeploymentRules] ([Id], [Created], [CreatedBy], [Description], [IsActive], [Modified], [ModifiedBy], [Name]) + VALUES (''60000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Validate input, wait for approval, then provision targets.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Standard Provisioning'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[DeploymentRules]')) + SET IDENTITY_INSERT [DeploymentRules] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'FQDN', N'Modified', N'ModifiedBy', N'Name', N'NetBIOS') AND [object_id] = OBJECT_ID(N'[Domains]')) + SET IDENTITY_INSERT [Domains] ON; + EXEC(N'INSERT INTO [Domains] ([Id], [Created], [CreatedBy], [FQDN], [Modified], [ModifiedBy], [Name], [NetBIOS]) + VALUES (''20000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''corp.contoso.com'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Central Management'', N''CONTOSO''), + (''20000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''resource.contoso.com'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Resource Domain'', N''RESOURCE'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'FQDN', N'Modified', N'ModifiedBy', N'Name', N'NetBIOS') AND [object_id] = OBJECT_ID(N'[Domains]')) + SET IDENTITY_INSERT [Domains] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'EnvironmentType', N'HostingType', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'ProviderType', N'SubscriptionId', N'TenantId') AND [object_id] = OBJECT_ID(N'[Environments]')) + SET IDENTITY_INSERT [Environments] ON; + EXEC(N'INSERT INTO [Environments] ([Id], [Created], [CreatedBy], [EnvironmentType], [HostingType], [MetadataJson], [Modified], [ModifiedBy], [Name], [ProviderType], [SubscriptionId], [TenantId]) + VALUES (''10000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Test'', N''OnPrem'', N''{"location":"Datacenter A"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Test'', NULL, NULL, NULL), + (''10000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Production'', N''OnPrem'', N''{"location":"Datacenter A"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Production'', NULL, NULL, NULL), + (''10000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Production'', N''M365Tenant'', N''{"tenant":"contoso.onmicrosoft.com"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso M365'', N''Microsoft365'', NULL, N''11111111-1111-1111-1111-111111111111'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'EnvironmentType', N'HostingType', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'ProviderType', N'SubscriptionId', N'TenantId') AND [object_id] = OBJECT_ID(N'[Environments]')) + SET IDENTITY_INSERT [Environments] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IconKey', N'IsCloudService', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[Services]')) + SET IDENTITY_INSERT [Services] ON; + EXEC(N'INSERT INTO [Services] ([Id], [Created], [CreatedBy], [Description], [IconKey], [IsCloudService], [Modified], [ModifiedBy], [Name]) + VALUES (''40000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''On-premises directory and identity service.'', N''network'', CAST(0 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Active Directory''), + (''40000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Database platform for application workloads.'', N''database'', CAST(0 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SQL Server''), + (''40000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Collaboration platform for on-premises workloads.'', N''sharepoint'', CAST(0 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint Server''), + (''40000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Cloud collaboration workload in Microsoft 365.'', N''messages-square'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Microsoft Teams'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IconKey', N'IsCloudService', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[Services]')) + SET IDENTITY_INSERT [Services] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'RequiresApproval', N'SortOrder', N'StepType') AND [object_id] = OBJECT_ID(N'[DeploymentRuleSteps]')) + SET IDENTITY_INSERT [DeploymentRuleSteps] ON; + EXEC(N'INSERT INTO [DeploymentRuleSteps] ([Id], [Created], [CreatedBy], [DeploymentRuleId], [MetadataJson], [Modified], [ModifiedBy], [Name], [RequiresApproval], [SortOrder], [StepType]) + VALUES (''60000000-0000-0000-0000-000000000101'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''{"action":"validate"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Validate configuration'', CAST(0 AS bit), 10, N''Provision''), + (''60000000-0000-0000-0000-000000000102'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''{"approverGroup":"Platform Owners"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Approve deployment'', CAST(1 AS bit), 20, N''Approval''), + (''60000000-0000-0000-0000-000000000103'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''{"action":"deploy"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Provision workload'', CAST(0 AS bit), 30, N''Provision'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'RequiresApproval', N'SortOrder', N'StepType') AND [object_id] = OBJECT_ID(N'[DeploymentRuleSteps]')) + SET IDENTITY_INSERT [DeploymentRuleSteps] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DomainId', N'EnvironmentId', N'Created', N'CreatedBy', N'Modified', N'ModifiedBy') AND [object_id] = OBJECT_ID(N'[EnvironmentDomains]')) + SET IDENTITY_INSERT [EnvironmentDomains] ON; + EXEC(N'INSERT INTO [EnvironmentDomains] ([DomainId], [EnvironmentId], [Created], [CreatedBy], [Modified], [ModifiedBy]) + VALUES (''20000000-0000-0000-0000-000000000001'', ''10000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed''), + (''20000000-0000-0000-0000-000000000001'', ''10000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed''), + (''20000000-0000-0000-0000-000000000002'', ''10000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DomainId', N'EnvironmentId', N'Created', N'CreatedBy', N'Modified', N'ModifiedBy') AND [object_id] = OBJECT_ID(N'[EnvironmentDomains]')) + SET IDENTITY_INSERT [EnvironmentDomains] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'Key', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]')) + SET IDENTITY_INSERT [ServiceRoleDefinitions] ON; + EXEC(N'INSERT INTO [ServiceRoleDefinitions] ([Id], [Created], [CreatedBy], [Description], [Key], [Modified], [ModifiedBy], [Name], [ServiceId]) + VALUES (''41000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint farm role.'', N''Farm'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Farm'', ''40000000-0000-0000-0000-000000000003''), + (''41000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint web front-end role.'', N''WebFrontEnd'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Web Front End'', ''40000000-0000-0000-0000-000000000003''), + (''41000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint service application role.'', N''Application'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Application'', ''40000000-0000-0000-0000-000000000003''), + (''41000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SQL Server database role.'', N''Database'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Database'', ''40000000-0000-0000-0000-000000000002'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'Key', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]')) + SET IDENTITY_INSERT [ServiceRoleDefinitions] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Color', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[TemplateCategories]')) + SET IDENTITY_INSERT [TemplateCategories] ON; + EXEC(N'INSERT INTO [TemplateCategories] ([Id], [Color], [Created], [CreatedBy], [Description], [IsActive], [Modified], [ModifiedBy], [Name], [ServiceId]) + VALUES (''50000000-0000-0000-0000-000000000001'', N''#2563EB'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for domain controller and domain configuration.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Domain Services'', ''40000000-0000-0000-0000-000000000001''), + (''50000000-0000-0000-0000-000000000002'', N''#16A34A'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for SQL Server workloads.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Database Platform'', ''40000000-0000-0000-0000-000000000002''), + (''50000000-0000-0000-0000-000000000003'', N''#0F766E'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for SharePoint Server farms.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Collaboration Farm'', ''40000000-0000-0000-0000-000000000003''), + (''50000000-0000-0000-0000-000000000004'', N''#7C3AED'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for Teams policy configuration.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Teams Policies'', ''40000000-0000-0000-0000-000000000004'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Color', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[TemplateCategories]')) + SET IDENTITY_INSERT [TemplateCategories] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DomainID', N'ExternalId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[VirtualMachines]')) + SET IDENTITY_INSERT [VirtualMachines] ON; + EXEC(N'INSERT INTO [VirtualMachines] ([Id], [Created], [CreatedBy], [DomainID], [ExternalId], [MetadataJson], [Modified], [ModifiedBy], [Name]) + VALUES (''30000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"DomainController","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-DC-01''), + (''30000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"DomainController","environment":"Production"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-DC-02''), + (''30000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"SqlServer","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-SQL-01''), + (''30000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"SharePoint","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-SHP-01''), + (''30000000-0000-0000-0000-000000000005'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"SharePoint","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-SHP-02'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DomainID', N'ExternalId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[VirtualMachines]')) + SET IDENTITY_INSERT [VirtualMachines] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Description', N'JSONData', N'Modified', N'ModifiedBy', N'Name', N'TemplateCategoryId', N'Version') AND [object_id] = OBJECT_ID(N'[Templates]')) + SET IDENTITY_INSERT [Templates] ON; + EXEC(N'INSERT INTO [Templates] ([Id], [Created], [CreatedBy], [DeploymentRuleId], [Description], [JSONData], [Modified], [ModifiedBy], [Name], [TemplateCategoryId], [Version]) + VALUES (''70000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a reusable Active Directory domain baseline.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DomainName": { "type": "string", "defaultValue": "corp.contoso.com" },'', nchar(10), N'' "NetBIOSName": { "type": "string", "defaultValue": "CONTOSO" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "DefaultSiteName": "[concat(parameters(''''DomainName''''), ''''-DefaultSite'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "AllNodes": ['', nchar(10), N'' { "NodeName": "*", "PSDscAllowPlainTextPassword": true }'', nchar(10), N'' ],'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "ActiveDirectory": {'', nchar(10), N'' "DomainName": "[parameters(''''DomainName'''')]",'', nchar(10), N'' "NetBIOSName": "[parameters(''''NetBIOSName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Active Directory Domain'', ''50000000-0000-0000-0000-000000000001'', N''1.0.0''), + (''70000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a SQL Server baseline for application workloads.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "InstanceName": { "type": "string", "defaultValue": "MSSQLSERVER" },'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "Contoso" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDatabase": "[concat(parameters(''''DatabasePrefix''''), ''''_Config'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SqlServer": {'', nchar(10), N'' "InstanceName": "[parameters(''''InstanceName'''')]",'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDatabase'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso SQL Server'', ''50000000-0000-0000-0000-000000000002'', N''1.0.0''), + (''70000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a SharePoint Server farm baseline.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "SharePoint_Contoso_Test" },'', nchar(10), N'' "FarmAccount": { "type": "credential", "metadata": { "description": "Farm account resolved by the credential provider." } }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_Farm_Config'''')]",'', nchar(10), N'' "AdminContentDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_AdminContent'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SharePoint": {'', nchar(10), N'' "Farm": {'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDbName'''')]",'', nchar(10), N'' "AdminContentDatabase": "[variables(''''AdminContentDbName'''')]",'', nchar(10), N'' "ManagedAccounts": {'', nchar(10), N'' "FarmAccount": "[parameters(''''FarmAccount'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso SharePoint Server'', ''50000000-0000-0000-0000-000000000003'', N''1.0.0''), + (''70000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a Microsoft Teams policy baseline.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "CallingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Calling" },'', nchar(10), N'' "MeetingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Meetings" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {},'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "Teams": {'', nchar(10), N'' "CallingPolicy": "[parameters(''''CallingPolicyName'''')]",'', nchar(10), N'' "MeetingPolicy": "[parameters(''''MeetingPolicyName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Teams Policies'', ''50000000-0000-0000-0000-000000000004'', N''1.0.0'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Description', N'JSONData', N'Modified', N'ModifiedBy', N'Name', N'TemplateCategoryId', N'Version') AND [object_id] = OBJECT_ID(N'[Templates]')) + SET IDENTITY_INSERT [Templates] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Modified', N'ModifiedBy', N'Status', N'TemplateId') AND [object_id] = OBJECT_ID(N'[DeploymentBatches]')) + SET IDENTITY_INSERT [DeploymentBatches] ON; + EXEC(N'INSERT INTO [DeploymentBatches] ([Id], [Created], [CreatedBy], [DeploymentRuleId], [Modified], [ModifiedBy], [Status], [TemplateId]) + VALUES (''80000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Pending'', ''70000000-0000-0000-0000-000000000003'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Modified', N'ModifiedBy', N'Status', N'TemplateId') AND [object_id] = OBJECT_ID(N'[DeploymentBatches]')) + SET IDENTITY_INSERT [DeploymentBatches] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'IsPublished', N'JsonData', N'JsonHash', N'Modified', N'ModifiedBy', N'PublishedAt', N'PublishedBy', N'SchemaVersion', N'TemplateId', N'Version') AND [object_id] = OBJECT_ID(N'[TemplateVersions]')) + SET IDENTITY_INSERT [TemplateVersions] ON; + EXEC(N'INSERT INTO [TemplateVersions] ([Id], [Created], [CreatedBy], [IsPublished], [JsonData], [JsonHash], [Modified], [ModifiedBy], [PublishedAt], [PublishedBy], [SchemaVersion], [TemplateId], [Version]) + VALUES (''71000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DomainName": { "type": "string", "defaultValue": "corp.contoso.com" },'', nchar(10), N'' "NetBIOSName": { "type": "string", "defaultValue": "CONTOSO" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "DefaultSiteName": "[concat(parameters(''''DomainName''''), ''''-DefaultSite'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "AllNodes": ['', nchar(10), N'' { "NodeName": "*", "PSDscAllowPlainTextPassword": true }'', nchar(10), N'' ],'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "ActiveDirectory": {'', nchar(10), N'' "DomainName": "[parameters(''''DomainName'''')]",'', nchar(10), N'' "NetBIOSName": "[parameters(''''NetBIOSName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''C05CBEF91131C75DE53B9609D9C2709D680AFC9559EE8D998318A132490F79A7'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000001'', N''1.0.0''), + (''71000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "InstanceName": { "type": "string", "defaultValue": "MSSQLSERVER" },'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "Contoso" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDatabase": "[concat(parameters(''''DatabasePrefix''''), ''''_Config'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SqlServer": {'', nchar(10), N'' "InstanceName": "[parameters(''''InstanceName'''')]",'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDatabase'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''F376737E82CB6B729F7B9960CB9988897C16D90A1C454ED2F594B28EB86ECA11'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000002'', N''1.0.0''), + (''71000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "SharePoint_Contoso_Test" },'', nchar(10), N'' "FarmAccount": { "type": "credential", "metadata": { "description": "Farm account resolved by the credential provider." } }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_Farm_Config'''')]",'', nchar(10), N'' "AdminContentDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_AdminContent'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SharePoint": {'', nchar(10), N'' "Farm": {'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDbName'''')]",'', nchar(10), N'' "AdminContentDatabase": "[variables(''''AdminContentDbName'''')]",'', nchar(10), N'' "ManagedAccounts": {'', nchar(10), N'' "FarmAccount": "[parameters(''''FarmAccount'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''FD5F0FD3C13538FAC70646972DC364DFCEAAF85BBE91B0F50FDFF9FD3A3748B4'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000003'', N''1.0.0''), + (''71000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "CallingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Calling" },'', nchar(10), N'' "MeetingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Meetings" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {},'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "Teams": {'', nchar(10), N'' "CallingPolicy": "[parameters(''''CallingPolicyName'''')]",'', nchar(10), N'' "MeetingPolicy": "[parameters(''''MeetingPolicyName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''32A902FE1A871D4CE2C877EBC5542F7562856532F09BA7F53597B21270586241'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000004'', N''1.0.0'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'IsPublished', N'JsonData', N'JsonHash', N'Modified', N'ModifiedBy', N'PublishedAt', N'PublishedBy', N'SchemaVersion', N'TemplateId', N'Version') AND [object_id] = OBJECT_ID(N'[TemplateVersions]')) + SET IDENTITY_INSERT [TemplateVersions] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DeploymentBatchId', N'VirtualMachineId', N'Created', N'CreatedBy', N'Id', N'JSONData', N'Modified', N'ModifiedBy', N'Status') AND [object_id] = OBJECT_ID(N'[DeploymentExecutions]')) + SET IDENTITY_INSERT [DeploymentExecutions] ON; + EXEC(N'INSERT INTO [DeploymentExecutions] ([DeploymentBatchId], [VirtualMachineId], [Created], [CreatedBy], [Id], [JSONData], [Modified], [ModifiedBy], [Status]) + VALUES (''80000000-0000-0000-0000-000000000001'', ''30000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''81000000-0000-0000-0000-000000000001'', N''{"role":"WebFrontEnd"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Pending''), + (''80000000-0000-0000-0000-000000000001'', ''30000000-0000-0000-0000-000000000005'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''81000000-0000-0000-0000-000000000002'', N''{"role":"Application"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Pending'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DeploymentBatchId', N'VirtualMachineId', N'Created', N'CreatedBy', N'Id', N'JSONData', N'Modified', N'ModifiedBy', N'Status') AND [object_id] = OBJECT_ID(N'[DeploymentExecutions]')) + SET IDENTITY_INSERT [DeploymentExecutions] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260707203222_ResetAndSeedDemoData', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707204104_RemoveSmaRunbooks' +) +BEGIN + DROP TABLE [Events]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707204104_RemoveSmaRunbooks' +) +BEGIN + DROP TABLE [Jobs]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707204104_RemoveSmaRunbooks' +) +BEGIN + DROP TABLE [Runbooks]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707204104_RemoveSmaRunbooks' +) +BEGIN + ALTER TABLE [DeploymentExecutions] DROP CONSTRAINT [AK_DeploymentExecutions_Id]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707204104_RemoveSmaRunbooks' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260707204104_RemoveSmaRunbooks', N'10.0.8'); +END; + +COMMIT; +GO + diff --git a/buildcheck/ResetAndSeedDemoData.sql b/buildcheck/ResetAndSeedDemoData.sql new file mode 100644 index 0000000..c8320b0 --- /dev/null +++ b/buildcheck/ResetAndSeedDemoData.sql @@ -0,0 +1,2024 @@ +IF OBJECT_ID(N'[__EFMigrationsHistory]') IS NULL +BEGIN + CREATE TABLE [__EFMigrationsHistory] ( + [MigrationId] nvarchar(150) NOT NULL, + [ProductVersion] nvarchar(32) NOT NULL, + CONSTRAINT [PK___EFMigrationsHistory] PRIMARY KEY ([MigrationId]) + ); +END; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Domains] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [FQDN] nvarchar(max) NOT NULL, + [NetBIOS] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Domains] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Environments] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [CloudEnabled] bit NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Environments] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [OptionCategories] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [ParentCategoryName] nvarchar(max) NOT NULL, + [showOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_OptionCategories] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Runbooks] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Runbooks] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Services] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Services] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [VirtualMachines] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DomainID] uniqueidentifier NOT NULL, + [Name] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_VirtualMachines] PRIMARY KEY ([Id]), + CONSTRAINT [FK_VirtualMachines_Domains_DomainID] FOREIGN KEY ([DomainID]) REFERENCES [Domains] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [EnvironmentDomains] ( + [EnvironmentId] uniqueidentifier NOT NULL, + [DomainId] uniqueidentifier NOT NULL, + [Modified] datetime2 NOT NULL, + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL, + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_EnvironmentDomains] PRIMARY KEY ([EnvironmentId], [DomainId]), + CONSTRAINT [FK_EnvironmentDomains_Domains_DomainId] FOREIGN KEY ([DomainId]) REFERENCES [Domains] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_EnvironmentDomains_Environments_EnvironmentId] FOREIGN KEY ([EnvironmentId]) REFERENCES [Environments] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Options] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [OptionType] nvarchar(max) NOT NULL, + [OptionValue] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + [OptionCategoryId] uniqueidentifier NOT NULL, + CONSTRAINT [PK_Options] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Options_OptionCategories_OptionCategoryId] FOREIGN KEY ([OptionCategoryId]) REFERENCES [OptionCategories] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Events] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [RunbookId] uniqueidentifier NOT NULL, + [Class] nvarchar(max) NOT NULL, + [Method] nvarchar(max) NOT NULL, + [RestEndpointMethod] nvarchar(max) NOT NULL, + [RestEndpointOperation] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Events] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Events_Runbooks_RunbookId] FOREIGN KEY ([RunbookId]) REFERENCES [Runbooks] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [TemplateCategories] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [ServiceId] uniqueidentifier NOT NULL, + [Name] nvarchar(max) NOT NULL, + [ParentCategoryName] nvarchar(max) NOT NULL, + [showOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateCategories] PRIMARY KEY ([Id]), + CONSTRAINT [FK_TemplateCategories_Services_ServiceId] FOREIGN KEY ([ServiceId]) REFERENCES [Services] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Templates] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [CloudTemplate] bit NOT NULL, + [Version] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NOT NULL, + [JSONData] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + [TemplateCategoryId] uniqueidentifier NOT NULL, + CONSTRAINT [PK_Templates] PRIMARY KEY ([Id]), + CONSTRAINT [FK_Templates_TemplateCategories_TemplateCategoryId] FOREIGN KEY ([TemplateCategoryId]) REFERENCES [TemplateCategories] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [DeploymentGroups] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [TemplateId] uniqueidentifier NOT NULL, + [Status] nvarchar(max) NOT NULL DEFAULT ('New'), + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentGroups] PRIMARY KEY ([Id]), + CONSTRAINT [FK_DeploymentGroups_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [TemplateOptions] ( + [TemplateId] uniqueidentifier NOT NULL, + [OptionId] uniqueidentifier NOT NULL, + [Value] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL, + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL, + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateOptions] PRIMARY KEY ([OptionId], [TemplateId]), + CONSTRAINT [FK_TemplateOptions_Options_OptionId] FOREIGN KEY ([OptionId]) REFERENCES [Options] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_TemplateOptions_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Deployments] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentGroupId] uniqueidentifier NOT NULL, + [VirtualMachineId] uniqueidentifier NOT NULL, + [Status] nvarchar(max) NOT NULL, + [JSONData] nvarchar(max) NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Deployments] PRIMARY KEY ([VirtualMachineId], [DeploymentGroupId]), + CONSTRAINT [AK_Deployments_Id] UNIQUE ([Id]), + CONSTRAINT [FK_Deployments_DeploymentGroups_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentGroups] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_Deployments_VirtualMachines_VirtualMachineId] FOREIGN KEY ([VirtualMachineId]) REFERENCES [VirtualMachines] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE TABLE [Jobs] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentId] uniqueidentifier NOT NULL, + [RunbookId] uniqueidentifier NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_Jobs] PRIMARY KEY ([RunbookId], [DeploymentId]), + CONSTRAINT [FK_Jobs_Deployments_DeploymentId] FOREIGN KEY ([DeploymentId]) REFERENCES [Deployments] ([Id]) ON DELETE CASCADE, + CONSTRAINT [FK_Jobs_Runbooks_RunbookId] FOREIGN KEY ([RunbookId]) REFERENCES [Runbooks] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_DeploymentGroups_TemplateId] ON [DeploymentGroups] ([TemplateId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Deployments_DeploymentGroupId] ON [Deployments] ([DeploymentGroupId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_EnvironmentDomains_DomainId] ON [EnvironmentDomains] ([DomainId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Events_RunbookId] ON [Events] ([RunbookId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Jobs_DeploymentId] ON [Jobs] ([DeploymentId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Options_OptionCategoryId] ON [Options] ([OptionCategoryId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_TemplateCategories_ServiceId] ON [TemplateCategories] ([ServiceId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_TemplateOptions_TemplateId] ON [TemplateOptions] ([TemplateId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_Templates_TemplateCategoryId] ON [Templates] ([TemplateCategoryId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + CREATE INDEX [IX_VirtualMachines_DomainID] ON [VirtualMachines] ([DomainID]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20231020093825_Initial' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20231020093825_Initial', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260514210821_AddQueueJobs' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260514210821_AddQueueJobs', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260514210842_AddQueueJobModelSnapshotFix' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260514210842_AddQueueJobModelSnapshotFix', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [ExternalId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD [TargetType] nvarchar(max) NOT NULL DEFAULT N''; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [EnvironmentType] nvarchar(max) NOT NULL DEFAULT N''; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + ALTER TABLE [Environments] ADD [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195005_AddEnvironmentAndTargetProviderModel' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515195005_AddEnvironmentAndTargetProviderModel', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var nvarchar(max); + SELECT @var = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'CloudEnabled'); + IF @var IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var + ';'); + ALTER TABLE [Environments] DROP COLUMN [CloudEnabled]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var1 nvarchar(max); + SELECT @var1 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'TenantId'); + IF @var1 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var1 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var2 nvarchar(max); + SELECT @var2 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'SubscriptionId'); + IF @var2 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var2 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var3 nvarchar(max); + SELECT @var3 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'ProviderType'); + IF @var3 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var3 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var4 nvarchar(max); + SELECT @var4 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'MetadataJson'); + IF @var4 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var4 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + DECLARE @var5 nvarchar(max); + SELECT @var5 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'EnvironmentType'); + IF @var5 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var5 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [EnvironmentType] nvarchar(max) NOT NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515195742_RemoveCloudEnabledFromEnvironment' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515195742_RemoveCloudEnabledFromEnvironment', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var6 nvarchar(max); + SELECT @var6 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'ProviderType'); + IF @var6 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var6 + ';'); + ALTER TABLE [VirtualMachines] DROP COLUMN [ProviderType]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var7 nvarchar(max); + SELECT @var7 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'TargetType'); + IF @var7 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var7 + ';'); + ALTER TABLE [VirtualMachines] DROP COLUMN [TargetType]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var8 nvarchar(max); + SELECT @var8 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'MetadataJson'); + IF @var8 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var8 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + DECLARE @var9 nvarchar(max); + SELECT @var9 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'ExternalId'); + IF @var9 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var9 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [ExternalId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515204426_RemoveVirtualMachineTargetAndProvider' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515204426_RemoveVirtualMachineTargetAndProvider', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + ALTER TABLE [VirtualMachines] DROP CONSTRAINT [FK_VirtualMachines_Domains_DomainID]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + DECLARE @var10 nvarchar(max); + SELECT @var10 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[VirtualMachines]') AND [c].[name] = N'DomainID'); + IF @var10 IS NOT NULL EXEC(N'ALTER TABLE [VirtualMachines] DROP CONSTRAINT ' + @var10 + ';'); + ALTER TABLE [VirtualMachines] ALTER COLUMN [DomainID] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + ALTER TABLE [VirtualMachines] ADD CONSTRAINT [FK_VirtualMachines_Domains_DomainID] FOREIGN KEY ([DomainID]) REFERENCES [Domains] ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515205512_MakeVirtualMachineDomainOptionalAndAddLinkUnlinkFlow', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + ALTER TABLE [Services] ADD [IsCloudService] bit NOT NULL DEFAULT CAST(0 AS bit); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + CREATE TABLE [ServiceRoleDefinitions] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [ServiceId] uniqueidentifier NOT NULL, + [Key] nvarchar(max) NOT NULL, + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NULL, + [MinCount] int NOT NULL, + [MaxCount] int NOT NULL, + [DefaultStageOrder] int NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_ServiceRoleDefinitions] PRIMARY KEY ([Id]), + CONSTRAINT [FK_ServiceRoleDefinitions_Services_ServiceId] FOREIGN KEY ([ServiceId]) REFERENCES [Services] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + CREATE INDEX [IX_ServiceRoleDefinitions_ServiceId] ON [ServiceRoleDefinitions] ([ServiceId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515215206_AddServiceCloudFlagAndRoleDefinitionsV2', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var11 nvarchar(max); + SELECT @var11 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'DefaultStageOrder'); + IF @var11 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var11 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [DefaultStageOrder]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var12 nvarchar(max); + SELECT @var12 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'MaxCount'); + IF @var12 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var12 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [MaxCount]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + DECLARE @var13 nvarchar(max); + SELECT @var13 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]') AND [c].[name] = N'MinCount'); + IF @var13 IS NOT NULL EXEC(N'ALTER TABLE [ServiceRoleDefinitions] DROP CONSTRAINT ' + @var13 + ';'); + ALTER TABLE [ServiceRoleDefinitions] DROP COLUMN [MinCount]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260515221746_RemoveRoleDefinitionSizingFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260515221746_RemoveRoleDefinitionSizingFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + DECLARE @var14 nvarchar(max); + SELECT @var14 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'ParentCategoryName'); + IF @var14 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var14 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [ParentCategoryName]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + DECLARE @var15 nvarchar(max); + SELECT @var15 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'showOrder'); + IF @var15 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var15 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [showOrder]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516113515_RemoveTemplateCategoryLegacyFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516113515_RemoveTemplateCategoryLegacyFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [Color] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [Description] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [IconKey] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + ALTER TABLE [TemplateCategories] ADD [IsActive] bit NOT NULL DEFAULT CAST(1 AS bit); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516114627_AddTemplateCategoryMetadataFields' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516114627_AddTemplateCategoryMetadataFields', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + DECLARE @var16 nvarchar(max); + SELECT @var16 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[TemplateCategories]') AND [c].[name] = N'IconKey'); + IF @var16 IS NOT NULL EXEC(N'ALTER TABLE [TemplateCategories] DROP CONSTRAINT ' + @var16 + ';'); + ALTER TABLE [TemplateCategories] DROP COLUMN [IconKey]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + ALTER TABLE [Services] ADD [IconKey] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516115934_MoveIconKeyFromTemplateCategoryToService' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516115934_MoveIconKeyFromTemplateCategoryToService', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516121222_RemoveTemplateCloudFlag' +) +BEGIN + DECLARE @var17 nvarchar(max); + SELECT @var17 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Templates]') AND [c].[name] = N'CloudTemplate'); + IF @var17 IS NOT NULL EXEC(N'ALTER TABLE [Templates] DROP CONSTRAINT ' + @var17 + ';'); + ALTER TABLE [Templates] DROP COLUMN [CloudTemplate]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516121222_RemoveTemplateCloudFlag' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516121222_RemoveTemplateCloudFlag', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [Templates] ADD [DeploymentRuleId] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [QueueJobs] ADD [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [QueueJobs] ADD [RuleSnapshotJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [DeploymentRules] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [Name] nvarchar(max) NOT NULL, + [Description] nvarchar(max) NULL, + [IsActive] bit NOT NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentRules] PRIMARY KEY ([Id]) + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [QueueJobSteps] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [QueueJobId] uniqueidentifier NOT NULL, + [DependsOnQueueJobStepId] uniqueidentifier NULL, + [SortOrder] int NOT NULL, + [Name] nvarchar(max) NOT NULL, + [StepType] nvarchar(max) NOT NULL, + [Status] nvarchar(max) NOT NULL, + [MetadataJson] nvarchar(max) NULL, + [ApprovedAt] datetime2 NULL, + [ApprovedBy] nvarchar(max) NULL, + [ApprovalComment] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_QueueJobSteps] PRIMARY KEY ([Id]), + CONSTRAINT [FK_QueueJobSteps_QueueJobSteps_DependsOnQueueJobStepId] FOREIGN KEY ([DependsOnQueueJobStepId]) REFERENCES [QueueJobSteps] ([Id]) ON DELETE NO ACTION, + CONSTRAINT [FK_QueueJobSteps_QueueJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [QueueJobs] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE TABLE [DeploymentRuleSteps] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [DeploymentRuleId] uniqueidentifier NOT NULL, + [SortOrder] int NOT NULL, + [Name] nvarchar(max) NOT NULL, + [StepType] nvarchar(max) NOT NULL, + [RequiresApproval] bit NOT NULL, + [MetadataJson] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_DeploymentRuleSteps] PRIMARY KEY ([Id]), + CONSTRAINT [FK_DeploymentRuleSteps_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_Templates_DeploymentRuleId] ON [Templates] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_DeploymentRuleSteps_DeploymentRuleId] ON [DeploymentRuleSteps] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_QueueJobSteps_DependsOnQueueJobStepId] ON [QueueJobSteps] ([DependsOnQueueJobStepId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + CREATE INDEX [IX_QueueJobSteps_QueueJobId] ON [QueueJobSteps] ([QueueJobId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + ALTER TABLE [Templates] ADD CONSTRAINT [FK_Templates_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516140554_AddDeploymentRulesAndQueueJobSteps' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516140554_AddDeploymentRulesAndQueueJobSteps', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentGroups] DROP CONSTRAINT [FK_DeploymentGroups_Templates_TemplateId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [FK_Deployments_DeploymentGroups_DeploymentGroupId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [FK_Deployments_VirtualMachines_VirtualMachineId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Jobs] DROP CONSTRAINT [FK_Jobs_Deployments_DeploymentId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [FK_QueueJobSteps_QueueJobSteps_DependsOnQueueJobStepId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [FK_QueueJobSteps_QueueJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobTargets] DROP CONSTRAINT [FK_QueueJobTargets_QueueJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobTargets] DROP CONSTRAINT [PK_QueueJobTargets]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobSteps] DROP CONSTRAINT [PK_QueueJobSteps]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [QueueJobs] DROP CONSTRAINT [PK_QueueJobs]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [AK_Deployments_Id]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Deployments] DROP CONSTRAINT [PK_Deployments]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentGroups] DROP CONSTRAINT [PK_DeploymentGroups]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobTargets]', N'DeploymentJobTargets', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobSteps]', N'DeploymentJobSteps', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[QueueJobs]', N'DeploymentJobs', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[Deployments]', N'DeploymentExecutions', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentGroups]', N'DeploymentBatches', 'OBJECT'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[IX_QueueJobTargets_QueueJobId]', N'IX_DeploymentJobTargets_QueueJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_QueueJobSteps_QueueJobId]', N'IX_DeploymentJobSteps_QueueJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_QueueJobSteps_DependsOnQueueJobStepId]', N'IX_DeploymentJobSteps_DependsOnQueueJobStepId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[IX_Deployments_DeploymentGroupId]', N'IX_DeploymentExecutions_DeploymentGroupId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + EXEC sp_rename N'[DeploymentBatches].[IX_DeploymentGroups_TemplateId]', N'IX_DeploymentBatches_TemplateId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [PK_DeploymentJobTargets] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [PK_DeploymentJobSteps] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobs] ADD CONSTRAINT [PK_DeploymentJobs] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [AK_DeploymentExecutions_Id] UNIQUE ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [PK_DeploymentExecutions] PRIMARY KEY ([VirtualMachineId], [DeploymentGroupId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [PK_DeploymentBatches] PRIMARY KEY ([Id]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [FK_DeploymentBatches_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentGroupId] FOREIGN KEY ([DeploymentGroupId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_VirtualMachines_VirtualMachineId] FOREIGN KEY ([VirtualMachineId]) REFERENCES [VirtualMachines] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnQueueJobStepId] FOREIGN KEY ([DependsOnQueueJobStepId]) REFERENCES [DeploymentJobSteps] ([Id]) ON DELETE NO ACTION; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_QueueJobId] FOREIGN KEY ([QueueJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + ALTER TABLE [Jobs] ADD CONSTRAINT [FK_Jobs_DeploymentExecutions_DeploymentId] FOREIGN KEY ([DeploymentId]) REFERENCES [DeploymentExecutions] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141653_RenameDeploymentAndJobTables' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516141653_RenameDeploymentAndJobTables', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentExecutions] DROP CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentGroupId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] DROP CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnQueueJobStepId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] DROP CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] DROP CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_QueueJobId]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[QueueJobId]', N'DeploymentJobId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[DeploymentGroupId]', N'DeploymentBatchId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobTargets].[IX_DeploymentJobTargets_QueueJobId]', N'IX_DeploymentJobTargets_DeploymentJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[QueueJobId]', N'DeploymentJobId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[DependsOnQueueJobStepId]', N'DependsOnDeploymentJobStepId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_DeploymentJobSteps_QueueJobId]', N'IX_DeploymentJobSteps_DeploymentJobId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentJobSteps].[IX_DeploymentJobSteps_DependsOnQueueJobStepId]', N'IX_DeploymentJobSteps_DependsOnDeploymentJobStepId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[DeploymentGroupId]', N'DeploymentBatchId', 'COLUMN'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + EXEC sp_rename N'[DeploymentExecutions].[IX_DeploymentExecutions_DeploymentGroupId]', N'IX_DeploymentExecutions_DeploymentBatchId', 'INDEX'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentExecutions] ADD CONSTRAINT [FK_DeploymentExecutions_DeploymentBatches_DeploymentBatchId] FOREIGN KEY ([DeploymentBatchId]) REFERENCES [DeploymentBatches] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobSteps_DependsOnDeploymentJobStepId] FOREIGN KEY ([DependsOnDeploymentJobStepId]) REFERENCES [DeploymentJobSteps] ([Id]) ON DELETE NO ACTION; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobSteps] ADD CONSTRAINT [FK_DeploymentJobSteps_DeploymentJobs_DeploymentJobId] FOREIGN KEY ([DeploymentJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + ALTER TABLE [DeploymentJobTargets] ADD CONSTRAINT [FK_DeploymentJobTargets_DeploymentJobs_DeploymentJobId] FOREIGN KEY ([DeploymentJobId]) REFERENCES [DeploymentJobs] ([Id]) ON DELETE CASCADE; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260516141719_RenameDeploymentAndJobColumns' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260516141719_RenameDeploymentAndJobColumns', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var18 nvarchar(max); + SELECT @var18 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'TenantId'); + IF @var18 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var18 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [TenantId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var19 nvarchar(max); + SELECT @var19 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'SubscriptionId'); + IF @var19 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var19 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [SubscriptionId] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var20 nvarchar(max); + SELECT @var20 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'ProviderType'); + IF @var20 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var20 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [ProviderType] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + DECLARE @var21 nvarchar(max); + SELECT @var21 = QUOTENAME([d].[name]) + FROM [sys].[default_constraints] [d] + INNER JOIN [sys].[columns] [c] ON [d].[parent_column_id] = [c].[column_id] AND [d].[parent_object_id] = [c].[object_id] + WHERE ([d].[parent_object_id] = OBJECT_ID(N'[Environments]') AND [c].[name] = N'MetadataJson'); + IF @var21 IS NOT NULL EXEC(N'ALTER TABLE [Environments] DROP CONSTRAINT ' + @var21 + ';'); + ALTER TABLE [Environments] ALTER COLUMN [MetadataJson] nvarchar(max) NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + ALTER TABLE [Environments] ADD [HostingType] nvarchar(max) NOT NULL DEFAULT N'OnPrem'; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + + UPDATE [Environments] + SET [HostingType] = CASE + WHEN [EnvironmentType] IN ('OnPrem','AzureTenant','M365Tenant') THEN [EnvironmentType] + ELSE 'OnPrem' + END + +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + + UPDATE [Environments] + SET [EnvironmentType] = CASE + WHEN [EnvironmentType] IN ('Development','Test','QA','Production') THEN [EnvironmentType] + ELSE 'Test' + END + +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517193537_SyncEnvironmentStageAndHostingType' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260517193537_SyncEnvironmentStageAndHostingType', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260517205713_LinkDeploymentBatchToDeploymentRule' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260517205713_LinkDeploymentBatchToDeploymentRule', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD [DeploymentRuleId] uniqueidentifier NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE TABLE [TemplateVersions] ( + [Id] uniqueidentifier NOT NULL DEFAULT (NEWID()), + [TemplateId] uniqueidentifier NOT NULL, + [Version] nvarchar(64) NOT NULL, + [JsonData] nvarchar(max) NOT NULL, + [JsonHash] nvarchar(64) NOT NULL, + [SchemaVersion] nvarchar(32) NOT NULL, + [IsPublished] bit NOT NULL, + [PublishedAt] datetime2 NULL, + [PublishedBy] nvarchar(max) NULL, + [Modified] datetime2 NOT NULL DEFAULT (GETDATE()), + [ModifiedBy] nvarchar(max) NOT NULL, + [Created] datetime2 NOT NULL DEFAULT (GETDATE()), + [CreatedBy] nvarchar(max) NOT NULL, + CONSTRAINT [PK_TemplateVersions] PRIMARY KEY ([Id]), + CONSTRAINT [CK_TemplateVersions_JsonData_IsJson] CHECK (ISJSON([JsonData]) = 1), + CONSTRAINT [FK_TemplateVersions_Templates_TemplateId] FOREIGN KEY ([TemplateId]) REFERENCES [Templates] ([Id]) ON DELETE CASCADE + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + INSERT INTO [TemplateVersions] + ([Id], [TemplateId], [Version], [JsonData], [JsonHash], [SchemaVersion], [IsPublished], [PublishedAt], [PublishedBy], [Modified], [ModifiedBy], [Created], [CreatedBy]) + SELECT + NEWID(), + [Id], + CASE + WHEN [Version] IS NULL OR LTRIM(RTRIM([Version])) = '' THEN '1.0.0' + ELSE [Version] + END, + CASE + WHEN ISJSON([JSONData]) = 1 THEN [JSONData] + ELSE '{}' + END, + CONVERT(varchar(64), HASHBYTES('SHA2_256', CONVERT(varbinary(max), CASE WHEN ISJSON([JSONData]) = 1 THEN [JSONData] ELSE '{}' END)), 2), + '1.0', + 1, + SYSUTCDATETIME(), + [CreatedBy], + [Modified], + [ModifiedBy], + [Created], + [CreatedBy] + FROM [Templates] + WHERE NOT EXISTS ( + SELECT 1 + FROM [TemplateVersions] + WHERE [TemplateVersions].[TemplateId] = [Templates].[Id] + ); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE INDEX [IX_DeploymentBatches_DeploymentRuleId] ON [DeploymentBatches] ([DeploymentRuleId]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + EXEC(N'CREATE UNIQUE INDEX [IX_TemplateVersions_TemplateId] ON [TemplateVersions] ([TemplateId]) WHERE [IsPublished] = 1'); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + CREATE UNIQUE INDEX [IX_TemplateVersions_TemplateId_Version] ON [TemplateVersions] ([TemplateId], [Version]); +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + ALTER TABLE [DeploymentBatches] ADD CONSTRAINT [FK_DeploymentBatches_DeploymentRules_DeploymentRuleId] FOREIGN KEY ([DeploymentRuleId]) REFERENCES [DeploymentRules] ([Id]) ON DELETE SET NULL; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707195927_AddTemplateVersions' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260707195927_AddTemplateVersions', N'10.0.8'); +END; + +COMMIT; +GO + +BEGIN TRANSACTION; +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + DELETE FROM [DeploymentJobTargets]; + DELETE FROM [DeploymentJobSteps]; + DELETE FROM [DeploymentJobs]; + DELETE FROM [Jobs]; + DELETE FROM [Events]; + DELETE FROM [DeploymentExecutions]; + DELETE FROM [DeploymentBatches]; + DELETE FROM [TemplateVersions]; + DELETE FROM [TemplateOptions]; + DELETE FROM [Templates]; + DELETE FROM [DeploymentRuleSteps]; + DELETE FROM [DeploymentRules]; + DELETE FROM [ServiceRoleDefinitions]; + DELETE FROM [TemplateCategories]; + DELETE FROM [Options]; + DELETE FROM [OptionCategories]; + DELETE FROM [Services]; + DELETE FROM [VirtualMachines]; + DELETE FROM [EnvironmentDomains]; + DELETE FROM [Domains]; + DELETE FROM [Environments]; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[DeploymentRules]')) + SET IDENTITY_INSERT [DeploymentRules] ON; + EXEC(N'INSERT INTO [DeploymentRules] ([Id], [Created], [CreatedBy], [Description], [IsActive], [Modified], [ModifiedBy], [Name]) + VALUES (''60000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Validate input, wait for approval, then provision targets.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Standard Provisioning'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[DeploymentRules]')) + SET IDENTITY_INSERT [DeploymentRules] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'FQDN', N'Modified', N'ModifiedBy', N'Name', N'NetBIOS') AND [object_id] = OBJECT_ID(N'[Domains]')) + SET IDENTITY_INSERT [Domains] ON; + EXEC(N'INSERT INTO [Domains] ([Id], [Created], [CreatedBy], [FQDN], [Modified], [ModifiedBy], [Name], [NetBIOS]) + VALUES (''20000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''corp.contoso.com'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Central Management'', N''CONTOSO''), + (''20000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''resource.contoso.com'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Resource Domain'', N''RESOURCE'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'FQDN', N'Modified', N'ModifiedBy', N'Name', N'NetBIOS') AND [object_id] = OBJECT_ID(N'[Domains]')) + SET IDENTITY_INSERT [Domains] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'EnvironmentType', N'HostingType', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'ProviderType', N'SubscriptionId', N'TenantId') AND [object_id] = OBJECT_ID(N'[Environments]')) + SET IDENTITY_INSERT [Environments] ON; + EXEC(N'INSERT INTO [Environments] ([Id], [Created], [CreatedBy], [EnvironmentType], [HostingType], [MetadataJson], [Modified], [ModifiedBy], [Name], [ProviderType], [SubscriptionId], [TenantId]) + VALUES (''10000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Test'', N''OnPrem'', N''{"location":"Datacenter A"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Test'', NULL, NULL, NULL), + (''10000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Production'', N''OnPrem'', N''{"location":"Datacenter A"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Production'', NULL, NULL, NULL), + (''10000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Production'', N''M365Tenant'', N''{"tenant":"contoso.onmicrosoft.com"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso M365'', N''Microsoft365'', NULL, N''11111111-1111-1111-1111-111111111111'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'EnvironmentType', N'HostingType', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'ProviderType', N'SubscriptionId', N'TenantId') AND [object_id] = OBJECT_ID(N'[Environments]')) + SET IDENTITY_INSERT [Environments] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IconKey', N'IsCloudService', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[Services]')) + SET IDENTITY_INSERT [Services] ON; + EXEC(N'INSERT INTO [Services] ([Id], [Created], [CreatedBy], [Description], [IconKey], [IsCloudService], [Modified], [ModifiedBy], [Name]) + VALUES (''40000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''On-premises directory and identity service.'', N''network'', CAST(0 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Active Directory''), + (''40000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Database platform for application workloads.'', N''database'', CAST(0 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SQL Server''), + (''40000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Collaboration platform for on-premises workloads.'', N''sharepoint'', CAST(0 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint Server''), + (''40000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Cloud collaboration workload in Microsoft 365.'', N''messages-square'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Microsoft Teams'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'IconKey', N'IsCloudService', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[Services]')) + SET IDENTITY_INSERT [Services] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'RequiresApproval', N'SortOrder', N'StepType') AND [object_id] = OBJECT_ID(N'[DeploymentRuleSteps]')) + SET IDENTITY_INSERT [DeploymentRuleSteps] ON; + EXEC(N'INSERT INTO [DeploymentRuleSteps] ([Id], [Created], [CreatedBy], [DeploymentRuleId], [MetadataJson], [Modified], [ModifiedBy], [Name], [RequiresApproval], [SortOrder], [StepType]) + VALUES (''60000000-0000-0000-0000-000000000101'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''{"action":"validate"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Validate configuration'', CAST(0 AS bit), 10, N''Provision''), + (''60000000-0000-0000-0000-000000000102'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''{"approverGroup":"Platform Owners"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Approve deployment'', CAST(1 AS bit), 20, N''Approval''), + (''60000000-0000-0000-0000-000000000103'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''{"action":"deploy"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Provision workload'', CAST(0 AS bit), 30, N''Provision'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name', N'RequiresApproval', N'SortOrder', N'StepType') AND [object_id] = OBJECT_ID(N'[DeploymentRuleSteps]')) + SET IDENTITY_INSERT [DeploymentRuleSteps] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DomainId', N'EnvironmentId', N'Created', N'CreatedBy', N'Modified', N'ModifiedBy') AND [object_id] = OBJECT_ID(N'[EnvironmentDomains]')) + SET IDENTITY_INSERT [EnvironmentDomains] ON; + EXEC(N'INSERT INTO [EnvironmentDomains] ([DomainId], [EnvironmentId], [Created], [CreatedBy], [Modified], [ModifiedBy]) + VALUES (''20000000-0000-0000-0000-000000000001'', ''10000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed''), + (''20000000-0000-0000-0000-000000000001'', ''10000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed''), + (''20000000-0000-0000-0000-000000000002'', ''10000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DomainId', N'EnvironmentId', N'Created', N'CreatedBy', N'Modified', N'ModifiedBy') AND [object_id] = OBJECT_ID(N'[EnvironmentDomains]')) + SET IDENTITY_INSERT [EnvironmentDomains] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'Key', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]')) + SET IDENTITY_INSERT [ServiceRoleDefinitions] ON; + EXEC(N'INSERT INTO [ServiceRoleDefinitions] ([Id], [Created], [CreatedBy], [Description], [Key], [Modified], [ModifiedBy], [Name], [ServiceId]) + VALUES (''41000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint farm role.'', N''Farm'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Farm'', ''40000000-0000-0000-0000-000000000003''), + (''41000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint web front-end role.'', N''WebFrontEnd'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Web Front End'', ''40000000-0000-0000-0000-000000000003''), + (''41000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SharePoint service application role.'', N''Application'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Application'', ''40000000-0000-0000-0000-000000000003''), + (''41000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''SQL Server database role.'', N''Database'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Database'', ''40000000-0000-0000-0000-000000000002'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'Description', N'Key', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[ServiceRoleDefinitions]')) + SET IDENTITY_INSERT [ServiceRoleDefinitions] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Color', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[TemplateCategories]')) + SET IDENTITY_INSERT [TemplateCategories] ON; + EXEC(N'INSERT INTO [TemplateCategories] ([Id], [Color], [Created], [CreatedBy], [Description], [IsActive], [Modified], [ModifiedBy], [Name], [ServiceId]) + VALUES (''50000000-0000-0000-0000-000000000001'', N''#2563EB'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for domain controller and domain configuration.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Domain Services'', ''40000000-0000-0000-0000-000000000001''), + (''50000000-0000-0000-0000-000000000002'', N''#16A34A'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for SQL Server workloads.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Database Platform'', ''40000000-0000-0000-0000-000000000002''), + (''50000000-0000-0000-0000-000000000003'', N''#0F766E'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for SharePoint Server farms.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Collaboration Farm'', ''40000000-0000-0000-0000-000000000003''), + (''50000000-0000-0000-0000-000000000004'', N''#7C3AED'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Templates for Teams policy configuration.'', CAST(1 AS bit), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Teams Policies'', ''40000000-0000-0000-0000-000000000004'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Color', N'Created', N'CreatedBy', N'Description', N'IsActive', N'Modified', N'ModifiedBy', N'Name', N'ServiceId') AND [object_id] = OBJECT_ID(N'[TemplateCategories]')) + SET IDENTITY_INSERT [TemplateCategories] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DomainID', N'ExternalId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[VirtualMachines]')) + SET IDENTITY_INSERT [VirtualMachines] ON; + EXEC(N'INSERT INTO [VirtualMachines] ([Id], [Created], [CreatedBy], [DomainID], [ExternalId], [MetadataJson], [Modified], [ModifiedBy], [Name]) + VALUES (''30000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"DomainController","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-DC-01''), + (''30000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"DomainController","environment":"Production"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-DC-02''), + (''30000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"SqlServer","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-SQL-01''), + (''30000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"SharePoint","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-SHP-01''), + (''30000000-0000-0000-0000-000000000005'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''20000000-0000-0000-0000-000000000001'', NULL, N''{"role":"SharePoint","environment":"Test"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''CT-SHP-02'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DomainID', N'ExternalId', N'MetadataJson', N'Modified', N'ModifiedBy', N'Name') AND [object_id] = OBJECT_ID(N'[VirtualMachines]')) + SET IDENTITY_INSERT [VirtualMachines] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Description', N'JSONData', N'Modified', N'ModifiedBy', N'Name', N'TemplateCategoryId', N'Version') AND [object_id] = OBJECT_ID(N'[Templates]')) + SET IDENTITY_INSERT [Templates] ON; + EXEC(N'INSERT INTO [Templates] ([Id], [Created], [CreatedBy], [DeploymentRuleId], [Description], [JSONData], [Modified], [ModifiedBy], [Name], [TemplateCategoryId], [Version]) + VALUES (''70000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a reusable Active Directory domain baseline.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DomainName": { "type": "string", "defaultValue": "corp.contoso.com" },'', nchar(10), N'' "NetBIOSName": { "type": "string", "defaultValue": "CONTOSO" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "DefaultSiteName": "[concat(parameters(''''DomainName''''), ''''-DefaultSite'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "AllNodes": ['', nchar(10), N'' { "NodeName": "*", "PSDscAllowPlainTextPassword": true }'', nchar(10), N'' ],'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "ActiveDirectory": {'', nchar(10), N'' "DomainName": "[parameters(''''DomainName'''')]",'', nchar(10), N'' "NetBIOSName": "[parameters(''''NetBIOSName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Active Directory Domain'', ''50000000-0000-0000-0000-000000000001'', N''1.0.0''), + (''70000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a SQL Server baseline for application workloads.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "InstanceName": { "type": "string", "defaultValue": "MSSQLSERVER" },'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "Contoso" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDatabase": "[concat(parameters(''''DatabasePrefix''''), ''''_Config'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SqlServer": {'', nchar(10), N'' "InstanceName": "[parameters(''''InstanceName'''')]",'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDatabase'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso SQL Server'', ''50000000-0000-0000-0000-000000000002'', N''1.0.0''), + (''70000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a SharePoint Server farm baseline.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "SharePoint_Contoso_Test" },'', nchar(10), N'' "FarmAccount": { "type": "credential", "metadata": { "description": "Farm account resolved by the credential provider." } }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_Farm_Config'''')]",'', nchar(10), N'' "AdminContentDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_AdminContent'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SharePoint": {'', nchar(10), N'' "Farm": {'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDbName'''')]",'', nchar(10), N'' "AdminContentDatabase": "[variables(''''AdminContentDbName'''')]",'', nchar(10), N'' "ManagedAccounts": {'', nchar(10), N'' "FarmAccount": "[parameters(''''FarmAccount'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso SharePoint Server'', ''50000000-0000-0000-0000-000000000003'', N''1.0.0''), + (''70000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', N''Creates a Microsoft Teams policy baseline.'', CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "CallingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Calling" },'', nchar(10), N'' "MeetingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Meetings" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {},'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "Teams": {'', nchar(10), N'' "CallingPolicy": "[parameters(''''CallingPolicyName'''')]",'', nchar(10), N'' "MeetingPolicy": "[parameters(''''MeetingPolicyName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Contoso Teams Policies'', ''50000000-0000-0000-0000-000000000004'', N''1.0.0'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Description', N'JSONData', N'Modified', N'ModifiedBy', N'Name', N'TemplateCategoryId', N'Version') AND [object_id] = OBJECT_ID(N'[Templates]')) + SET IDENTITY_INSERT [Templates] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Modified', N'ModifiedBy', N'Status', N'TemplateId') AND [object_id] = OBJECT_ID(N'[DeploymentBatches]')) + SET IDENTITY_INSERT [DeploymentBatches] ON; + EXEC(N'INSERT INTO [DeploymentBatches] ([Id], [Created], [CreatedBy], [DeploymentRuleId], [Modified], [ModifiedBy], [Status], [TemplateId]) + VALUES (''80000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''60000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Pending'', ''70000000-0000-0000-0000-000000000003'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'DeploymentRuleId', N'Modified', N'ModifiedBy', N'Status', N'TemplateId') AND [object_id] = OBJECT_ID(N'[DeploymentBatches]')) + SET IDENTITY_INSERT [DeploymentBatches] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'IsPublished', N'JsonData', N'JsonHash', N'Modified', N'ModifiedBy', N'PublishedAt', N'PublishedBy', N'SchemaVersion', N'TemplateId', N'Version') AND [object_id] = OBJECT_ID(N'[TemplateVersions]')) + SET IDENTITY_INSERT [TemplateVersions] ON; + EXEC(N'INSERT INTO [TemplateVersions] ([Id], [Created], [CreatedBy], [IsPublished], [JsonData], [JsonHash], [Modified], [ModifiedBy], [PublishedAt], [PublishedBy], [SchemaVersion], [TemplateId], [Version]) + VALUES (''71000000-0000-0000-0000-000000000001'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DomainName": { "type": "string", "defaultValue": "corp.contoso.com" },'', nchar(10), N'' "NetBIOSName": { "type": "string", "defaultValue": "CONTOSO" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "DefaultSiteName": "[concat(parameters(''''DomainName''''), ''''-DefaultSite'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "AllNodes": ['', nchar(10), N'' { "NodeName": "*", "PSDscAllowPlainTextPassword": true }'', nchar(10), N'' ],'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "ActiveDirectory": {'', nchar(10), N'' "DomainName": "[parameters(''''DomainName'''')]",'', nchar(10), N'' "NetBIOSName": "[parameters(''''NetBIOSName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''C05CBEF91131C75DE53B9609D9C2709D680AFC9559EE8D998318A132490F79A7'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000001'', N''1.0.0''), + (''71000000-0000-0000-0000-000000000002'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "InstanceName": { "type": "string", "defaultValue": "MSSQLSERVER" },'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "Contoso" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDatabase": "[concat(parameters(''''DatabasePrefix''''), ''''_Config'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SqlServer": {'', nchar(10), N'' "InstanceName": "[parameters(''''InstanceName'''')]",'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDatabase'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''F376737E82CB6B729F7B9960CB9988897C16D90A1C454ED2F594B28EB86ECA11'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000002'', N''1.0.0''), + (''71000000-0000-0000-0000-000000000003'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "DatabasePrefix": { "type": "string", "defaultValue": "SharePoint_Contoso_Test" },'', nchar(10), N'' "FarmAccount": { "type": "credential", "metadata": { "description": "Farm account resolved by the credential provider." } }'', nchar(10), N'' },'', nchar(10), N'' "variables": {'', nchar(10), N'' "ConfigDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_Farm_Config'''')]",'', nchar(10), N'' "AdminContentDbName": "[concat(parameters(''''DatabasePrefix''''), ''''_AdminContent'''')]"'', nchar(10), N'' },'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "SharePoint": {'', nchar(10), N'' "Farm": {'', nchar(10), N'' "ConfigDatabase": "[variables(''''ConfigDbName'''')]",'', nchar(10), N'' "AdminContentDatabase": "[variables(''''AdminContentDbName'''')]",'', nchar(10), N'' "ManagedAccounts": {'', nchar(10), N'' "FarmAccount": "[parameters(''''FarmAccount'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''FD5F0FD3C13538FAC70646972DC364DFCEAAF85BBE91B0F50FDFF9FD3A3748B4'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000003'', N''1.0.0''), + (''71000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', CAST(1 AS bit), CONCAT(CAST(N''{'' AS nvarchar(max)), nchar(10), N'' "schemaVersion": "1.0",'', nchar(10), N'' "templateType": "Service",'', nchar(10), N'' "parameters": {'', nchar(10), N'' "CallingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Calling" },'', nchar(10), N'' "MeetingPolicyName": { "type": "string", "defaultValue": "Contoso-Standard-Meetings" }'', nchar(10), N'' },'', nchar(10), N'' "variables": {},'', nchar(10), N'' "resources": {'', nchar(10), N'' "NonNodeData": {'', nchar(10), N'' "Services": {'', nchar(10), N'' "Teams": {'', nchar(10), N'' "CallingPolicy": "[parameters(''''CallingPolicyName'''')]",'', nchar(10), N'' "MeetingPolicy": "[parameters(''''MeetingPolicyName'''')]"'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N'' }'', nchar(10), N''}''), N''32A902FE1A871D4CE2C877EBC5542F7562856532F09BA7F53597B21270586241'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''1.0'', ''70000000-0000-0000-0000-000000000004'', N''1.0.0'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'Id', N'Created', N'CreatedBy', N'IsPublished', N'JsonData', N'JsonHash', N'Modified', N'ModifiedBy', N'PublishedAt', N'PublishedBy', N'SchemaVersion', N'TemplateId', N'Version') AND [object_id] = OBJECT_ID(N'[TemplateVersions]')) + SET IDENTITY_INSERT [TemplateVersions] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DeploymentBatchId', N'VirtualMachineId', N'Created', N'CreatedBy', N'Id', N'JSONData', N'Modified', N'ModifiedBy', N'Status') AND [object_id] = OBJECT_ID(N'[DeploymentExecutions]')) + SET IDENTITY_INSERT [DeploymentExecutions] ON; + EXEC(N'INSERT INTO [DeploymentExecutions] ([DeploymentBatchId], [VirtualMachineId], [Created], [CreatedBy], [Id], [JSONData], [Modified], [ModifiedBy], [Status]) + VALUES (''80000000-0000-0000-0000-000000000001'', ''30000000-0000-0000-0000-000000000004'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''81000000-0000-0000-0000-000000000001'', N''{"role":"WebFrontEnd"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Pending''), + (''80000000-0000-0000-0000-000000000001'', ''30000000-0000-0000-0000-000000000005'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', ''81000000-0000-0000-0000-000000000002'', N''{"role":"Application"}'', ''2026-07-07T00:00:00.0000000Z'', N''DemoSeed'', N''Pending'')'); + IF EXISTS (SELECT * FROM [sys].[identity_columns] WHERE [name] IN (N'DeploymentBatchId', N'VirtualMachineId', N'Created', N'CreatedBy', N'Id', N'JSONData', N'Modified', N'ModifiedBy', N'Status') AND [object_id] = OBJECT_ID(N'[DeploymentExecutions]')) + SET IDENTITY_INSERT [DeploymentExecutions] OFF; +END; + +IF NOT EXISTS ( + SELECT * FROM [__EFMigrationsHistory] + WHERE [MigrationId] = N'20260707203222_ResetAndSeedDemoData' +) +BEGIN + INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) + VALUES (N'20260707203222_ResetAndSeedDemoData', N'10.0.8'); +END; + +COMMIT; +GO + diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs index aff7c6c..e4abb05 100644 --- a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs +++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft.SelfService.Portal.Core.API")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+14f856fdb3bbe0393af160721522e9c4348a847f")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+96a3e9810936b27ca007077bcf74abb502475635")] [assembly: System.Reflection.AssemblyProductAttribute("Microsoft.SelfService.Portal.Core.API")] [assembly: System.Reflection.AssemblyTitleAttribute("Microsoft.SelfService.Portal.Core.API")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache index 8bb196b..d875386 100644 --- a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache +++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache @@ -1 +1 @@ -568efb6d1a0d5bdac365ff11d9dc7c547c650de64852cefceef73593ea874e26 +0fc868d716600d022f1ceef6597a1f9d6d85d1eaade1ee05dbe01b4e2690c6ad diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.assets.cache b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.assets.cache index 58f2197..2be5ce2 100644 Binary files a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.assets.cache and b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.assets.cache differ diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache index 7cae828..8e58789 100644 --- a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache +++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -85508ea1aec9e22c17a7f5433465f94bb5d2202717078051591802fa17aa9a3c +e6d93761138aa5e56e9aa342a1381ffc12105e136fe8753079012d465b342813 diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt index bb1cbfd..3d9d8ef 100644 --- a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt +++ b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt @@ -1,14 +1,12 @@ -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rpswa.dswa.cache.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\appsettings.Development.json F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\appsettings.json +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck\appsettings.Development.json +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck\appsettings.json +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck\Microsoft.SelfService.Portal.Core.API.deps.json +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.exe F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.deps.json F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.dll @@ -23,10 +21,13 @@ F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.AspNetCore.OpenApi.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Bcl.AsyncInterfaces.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Bcl.Cryptography.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Build.Framework.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.CSharp.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.Workspaces.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Data.SqlClient.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Abstractions.dll @@ -44,6 +45,7 @@ F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Tokens.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.OpenApi.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SqlServer.Server.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.VisualStudio.SolutionPersistence.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Mono.TextTemplating.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Newtonsoft.Json.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Newtonsoft.Json.Bson.dll @@ -114,6 +116,19 @@ F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.Data.SqlClient.resources.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.Data.SqlClient.resources.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.Data.SqlClient.resources.dll @@ -135,6 +150,14 @@ F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\linux\lib\net10.0\System.DirectoryServices.Protocols.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\osx\lib\net10.0\System.DirectoryServices.Protocols.dll F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win\lib\net10.0\System.DirectoryServices.Protocols.dll +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rpswa.dswa.cache.json +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs +F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rjimswa.dswa.cache.json F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rjsmrazor.dswa.cache.json F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rjsmcshtml.dswa.cache.json @@ -150,516 +173,3 @@ F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\ F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.pdb F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\ref\Microsoft.SelfService.Portal.Core.API.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Build.Framework.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.VisualStudio.SolutionPersistence.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\appsettings.Development.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\appsettings.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.SelfService.Portal.Core.API.exe -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.SelfService.Portal.Core.API.deps.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.SelfService.Portal.Core.API.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.SelfService.Portal.Core.API.pdb -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\AutoMapper.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Azure.Core.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Azure.Identity.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Humanizer.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.AspNetCore.Authentication.Negotiate.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.AspNetCore.JsonPatch.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.AspNetCore.OpenApi.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.Bcl.AsyncInterfaces.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.Bcl.Cryptography.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.Build.Framework.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.CodeAnalysis.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.CodeAnalysis.CSharp.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.CodeAnalysis.Workspaces.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.Data.SqlClient.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.EntityFrameworkCore.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.EntityFrameworkCore.Abstractions.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.EntityFrameworkCore.Design.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.EntityFrameworkCore.Relational.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.EntityFrameworkCore.SqlServer.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.Extensions.DependencyModel.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.Identity.Client.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.Identity.Client.Extensions.Msal.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.IdentityModel.Abstractions.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.IdentityModel.JsonWebTokens.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.IdentityModel.Logging.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.IdentityModel.Protocols.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.IdentityModel.Tokens.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.OpenApi.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.SqlServer.Server.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Microsoft.VisualStudio.SolutionPersistence.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Mono.TextTemplating.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Newtonsoft.Json.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Newtonsoft.Json.Bson.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Swashbuckle.AspNetCore.Swagger.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Swashbuckle.AspNetCore.SwaggerGen.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\Swashbuckle.AspNetCore.SwaggerUI.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.ClientModel.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.CodeDom.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.Composition.AttributedModel.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.Composition.Convention.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.Composition.Hosting.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.Composition.Runtime.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.Composition.TypedParts.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.Configuration.ConfigurationManager.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.DirectoryServices.Protocols.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.IdentityModel.Tokens.Jwt.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.Memory.Data.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\System.Security.Cryptography.ProtectedData.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\cs\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\de\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\es\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\fr\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\it\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ja\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ko\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pl\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pt-BR\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ru\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\tr\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hans\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hant\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\de\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\es\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\it\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\cs\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\de\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\es\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\fr\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\it\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ja\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ko\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pl\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\pt-BR\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\ru\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\tr\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hans\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\zh-Hant\Microsoft.Data.SqlClient.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\runtimes\unix\lib\net9.0\Microsoft.Data.SqlClient.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\runtimes\win\lib\net9.0\Microsoft.Data.SqlClient.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\runtimes\linux\lib\net10.0\System.DirectoryServices.Protocols.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\runtimes\osx\lib\net10.0\System.DirectoryServices.Protocols.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\buildcheck\runtimes\win\lib\net10.0\System.DirectoryServices.Protocols.dll -F:\Projekte\Coding\.Net\buildcheck\appsettings.Development.json -F:\Projekte\Coding\.Net\buildcheck\appsettings.json -F:\Projekte\Coding\.Net\buildcheck\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json -F:\Projekte\Coding\.Net\buildcheck\Microsoft.SelfService.Portal.Core.API.exe -F:\Projekte\Coding\.Net\buildcheck\Microsoft.SelfService.Portal.Core.API.deps.json -F:\Projekte\Coding\.Net\buildcheck\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -F:\Projekte\Coding\.Net\buildcheck\Microsoft.SelfService.Portal.Core.API.dll -F:\Projekte\Coding\.Net\buildcheck\Microsoft.SelfService.Portal.Core.API.pdb -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\appsettings.Development.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\appsettings.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.deps.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\AutoMapper.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Azure.Core.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Azure.Identity.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Humanizer.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.AspNetCore.Authentication.Negotiate.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.AspNetCore.OpenApi.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Bcl.Cryptography.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Build.Framework.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Data.SqlClient.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Design.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Extensions.DependencyModel.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Identity.Client.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Abstractions.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Logging.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Protocols.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.IdentityModel.Tokens.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.OpenApi.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.SqlServer.Server.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Microsoft.VisualStudio.SolutionPersistence.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Mono.TextTemplating.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Newtonsoft.Json.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Newtonsoft.Json.Bson.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.ClientModel.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.CodeDom.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Composition.AttributedModel.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Composition.Convention.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Composition.Hosting.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Composition.Runtime.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Composition.TypedParts.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Configuration.ConfigurationManager.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.DirectoryServices.Protocols.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.IdentityModel.Tokens.Jwt.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Memory.Data.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\cs\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\de\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\es\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\fr\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\it\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ja\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ko\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pl\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\pt-BR\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\ru\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\tr\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\unix\lib\net9.0\Microsoft.Data.SqlClient.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win\lib\net9.0\Microsoft.Data.SqlClient.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\linux\lib\net10.0\System.DirectoryServices.Protocols.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\osx\lib\net10.0\System.DirectoryServices.Protocols.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\runtimes\win\lib\net10.0\System.DirectoryServices.Protocols.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rpswa.dswa.cache.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rjimswa.dswa.cache.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rjsmrazor.dswa.cache.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\rjsmcshtml.dswa.cache.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\scopedcss\bundle\Microsoft.SelfService.Portal.Core.API.styles.css -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\staticwebassets.build.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\staticwebassets.build.json.cache -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\staticwebassets.development.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\staticwebassets.build.endpoints.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\swae.build.ex.cache -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsof.CC767D45.Up2Date -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\refint\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net10.0\ref\Microsoft.SelfService.Portal.Core.API.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck\appsettings.Development.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck\appsettings.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck\Microsoft.SelfService.Portal.Core.API.deps.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\appsettings.Development.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\appsettings.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\buildcheck\appsettings.Development.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\buildcheck\appsettings.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\buildcheck\Microsoft.SelfService.Portal.Core.API.deps.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\buildcheck\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\buildcheck\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.SelfService.Portal.Core.API.deps.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\AutoMapper.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Azure.Core.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Azure.Identity.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Humanizer.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.AspNetCore.Authentication.Negotiate.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.AspNetCore.OpenApi.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.Bcl.Cryptography.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.Build.Framework.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.CodeAnalysis.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.Data.SqlClient.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.EntityFrameworkCore.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.EntityFrameworkCore.Design.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.Extensions.DependencyModel.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.Identity.Client.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.IdentityModel.Abstractions.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.IdentityModel.Logging.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.IdentityModel.Protocols.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.IdentityModel.Tokens.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.OpenApi.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.SqlServer.Server.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Microsoft.VisualStudio.SolutionPersistence.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Mono.TextTemplating.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Newtonsoft.Json.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Newtonsoft.Json.Bson.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.ClientModel.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.CodeDom.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.Composition.AttributedModel.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.Composition.Convention.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.Composition.Hosting.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.Composition.Runtime.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.Composition.TypedParts.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.Configuration.ConfigurationManager.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.DirectoryServices.Protocols.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.IdentityModel.Tokens.Jwt.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.Memory.Data.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\System.Security.Cryptography.ProtectedData.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\cs\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\de\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\es\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\fr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\it\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ja\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ko\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pl\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pt-BR\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ru\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\tr\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hans\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hant\Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\cs\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\de\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\es\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\fr\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\it\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ja\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ko\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pl\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\pt-BR\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\ru\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\tr\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hans\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\zh-Hant\Microsoft.Data.SqlClient.resources.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\runtimes\unix\lib\net9.0\Microsoft.Data.SqlClient.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\runtimes\win\lib\net9.0\Microsoft.Data.SqlClient.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\runtimes\linux\lib\net10.0\System.DirectoryServices.Protocols.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\runtimes\osx\lib\net10.0\System.DirectoryServices.Protocols.dll -C:\Users\CodexSandboxOffline\.codex\.sandbox\cwd\c85dc9d4b6e088fe\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net10.0\buildcheck3\runtimes\win\lib\net10.0\System.DirectoryServices.Protocols.dll -f:\Projekte\Coding\_build_api_tmp\appsettings.Development.json -f:\Projekte\Coding\_build_api_tmp\appsettings.json -f:\Projekte\Coding\_build_api_tmp\buildcheck\appsettings.Development.json -f:\Projekte\Coding\_build_api_tmp\buildcheck\appsettings.json -f:\Projekte\Coding\_build_api_tmp\buildcheck\Microsoft.SelfService.Portal.Core.API.deps.json -f:\Projekte\Coding\_build_api_tmp\buildcheck\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -f:\Projekte\Coding\_build_api_tmp\buildcheck\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json -f:\Projekte\Coding\_build_api_tmp\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json -f:\Projekte\Coding\_build_api_tmp\Microsoft.SelfService.Portal.Core.API.exe -f:\Projekte\Coding\_build_api_tmp\Microsoft.SelfService.Portal.Core.API.deps.json -f:\Projekte\Coding\_build_api_tmp\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -f:\Projekte\Coding\_build_api_tmp\Microsoft.SelfService.Portal.Core.API.dll -f:\Projekte\Coding\_build_api_tmp\Microsoft.SelfService.Portal.Core.API.pdb diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll index 266cd81..d0571c7 100644 Binary files a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll and b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.dll differ diff --git a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb index e65ce7c..883d2b2 100644 Binary files a/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb and b/obj/Debug/net10.0/Microsoft.SelfService.Portal.Core.API.pdb differ diff --git a/obj/Debug/net10.0/apphost.exe b/obj/Debug/net10.0/apphost.exe index 86ae051..6292682 100644 Binary files a/obj/Debug/net10.0/apphost.exe and b/obj/Debug/net10.0/apphost.exe differ diff --git a/obj/Debug/net10.0/ref/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net10.0/ref/Microsoft.SelfService.Portal.Core.API.dll index 81fa00c..ea5918a 100644 Binary files a/obj/Debug/net10.0/ref/Microsoft.SelfService.Portal.Core.API.dll and b/obj/Debug/net10.0/ref/Microsoft.SelfService.Portal.Core.API.dll differ diff --git a/obj/Debug/net10.0/refint/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net10.0/refint/Microsoft.SelfService.Portal.Core.API.dll index 81fa00c..ea5918a 100644 Binary files a/obj/Debug/net10.0/refint/Microsoft.SelfService.Portal.Core.API.dll and b/obj/Debug/net10.0/refint/Microsoft.SelfService.Portal.Core.API.dll differ diff --git a/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json index 292889f..a3f2940 100644 --- a/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +++ b/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"ILSx+4dCyQzML0PLL1+iAfuwi4o6nolNPq04aGa56YY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vdtHh/zOSUzIXLsY12md/hRdo1uZ8G/3wAHBzgfEumw=","Dk3jsy\u002BHNDsFnpDAXEvqr0DE5QzMsv07/7VUXD3w9W8=","Wg33Et8yFcu2zn6Pa6EbqJ4Wd9Ylvtny/w98VI1JWIU=","KbuoQ4jDMnsw4hJVn9i6DmW2Nz5CxEDJvwwKd4TxCJk=","Z4r6\u002BGVAPN4NDXk4KvDa6997WlSoz\u002B6H0kpZ3q0V31A=","/m60RmZz2fhgc1KOpLbKpGCSUB4kqYElc3KzVbKE2lg=","m7w7W8zTzxeeZFyPitiWIFjpblzXTPJDz6o\u002BHZK7CVU=","phsbo\u002BKjgk3WcMMAvJVBJyGlWoH1MNwBGaLeIlvRGrk=","ZqdGPeUo2iPpvof5MH6FkcnChkz6C9GSzHezqBS9/10=","LGn\u002BTs2AlBPTvjNwZ7k8Aq0m3gI5AGZbn6HD/H0bR1c=","vEKhpAYE\u002BzMd3RKVoVccKQiaF5iCkNnB5t2ISTovDhk=","bsqFDF2DGBah6dbUGbY6mc5S32so0O3frTrEXrDBidk=","Bx0REq5xuplRN8RWJtDcBJ8qwVa\u002B3RprzPVh1gn2QKo=","e9YJzJs3bC5IxyaJieTq8\u002Buchd3vMMHgZR4QyapyaF4=","X8da3N3GLR2OXFzpxibmFCdKvwM0f5k2SwK3qPrrCmU=","s\u002BnzHzh6UKBOESaLQiq5UrkABYvP55C0PeG4596YAeo=","Zn4P4tCDx2xQ\u002BW4Punev1c0e14KnGEFZoaM3coU9Oyw=","2J5nW1mHMcQQ7BCXERoyT9EUT74CLIeUFBxqiEvQ0\u002B0=","lsayflr7ePSw3nn5pzsWXcSDcHCt3v\u002B8d2EXn0n3hoU=","TT9IUobP/5FnZYKfRiuNjT40XhIuJvEt38c32/FOATI=","ubM3BdmdyRAjd6pk\u002BHclJ/7Amy7akudm5A10gL1gjWw=","o3g2jNh9WOAqOF1O1J/QXxNFEs7vzSCPc7vl2W2Eg5Y=","sVmkbfD6xp4OTJU/LaUA6P/uxG65mCYXMW6xIV6MN48=","4IauJF4oeE1Noflm6hfom3iWIU96zXcG3Y4jwbQd7LI=","atk208TT1Wna3CCZSQ2EhkO2tU\u002BLB1SuqxSQs8MgUt4=","91fYA5enOmHQuf1tX9oXb2HCELocONh0MRud0V7SRpg=","rrVLzPx2cjWgcilaF2eqL44JkL6c26quM\u002B9vMiXjJgU=","AwjwFpokBzy/E/hxSPMuLUFONk4Jwn/qQXlyLDZpalw=","yzeU43IYP/wkf/R\u002BAxPtD3ObkRV\u002Bi3wCqwRcdug1nqE=","eHhaDYbCiAVjvLZ7jX6KaLVrZuB652l6WU\u002Bj097Q/KM=","pRJnsSJXRlM6YTPVxgIyzL\u002BGHSkbS31//OKkSyw\u002Ba3k=","Pd2QcrYRM6PoaZy00Ut9oSombDHplR6NcBFdU3v9x3M=","q8ajtc/4veJd5VcIVoEj1P8KpQFjKbezXZJHKsJsJ58=","H7w7IVHV1blGB66YKjJjYOqr8L4hQUAlmWdXTvMCkE0=","p7ZzL0tA6X7hgdesmkPzC\u002BMpsKyxzAYPehKHPZpUUTk=","zUW9Z3rxL6ZnerUdf0NBDKa94RJXN7z2NV6CjiD8muU=","L1v/GbPaWkITIzaEKWp3UCr607opQVx2qA6naw/L6N8=","msmngHYRHJkuXsjRP0XljcPE93hmxtRNGr5ZwTsctd4=","DELXdaQdlPtNXr\u002BrabQjiVJAeqo9LjU2xmrtahy8mKo=","rWIVl8epbka81lIcO3AKQy4w33ceOwQT2QeMk\u002B6ij98=","Hqi4yNphcLPLrj58hjCfXdWzu8dxabXZjQPFo\u002B\u002BP4JI=","ApYnA/j38MrMv4T\u002B2ADNAPT0JraxMDh8RP6i2qIPFBA=","SAL\u002BYrSupSDTm0Zz5fv7XdQz7d2NQ6jz\u002BvuJRl1wIXs=","YVvfWQtzbjO0LKeoqqyRhgkzZsbTp4DEFvRb3OoavdM=","iN1Ih97am65koTUFe0\u002BczXZBA9qF/bsq07lNVxPIJJ0=","q1OrWBqLfMRp7HP0hZCNWgfRaKA6Qw4\u002BkygV75N/G0U=","BPDzHamGTP15tIilvwiguLMJiERSBeQXUlUPf5TNJdg=","Y6VjYVU1BuBF2nL3Wo0h0KofFd\u002B/PROMNutY/HeHfG0=","HAGnG0vAUkQoVpj3KmmyWaeqGvX5raZzkTg4lgJl1EA=","SUz\u002B39TzMnrIGs4iRsMUSjY/reCZIvWEQ4L2KgOgV8U=","Ru0JjtUetcVWj/sLUi96WG8SR9BZ3o1b39SWpgI\u002BrgU=","h1qZW31sNXwbQSLK\u002Be091il6T52u1IeAaVdEFgWurU8=","YA03W6C9vGyQAnQsb5sTsrbZ57H7qdMmk4hOi6HNMlI=","nslXCM6T1fD/m3MdfqareFDcf9yuWj8yXmFfhTZIUso=","KQw13/e3x9B8wwrECqg1FJVMHuGkg4X0zzRZ1Ft//wk=","oZZ9gw8Xu0ImrWYLWisekRrt8pj70CzUEsXir3ToPUg=","vEgQrDpbnaEEqlRr9cVHvermY6Ufys56CNcGKFHqA/E=","HRo96sJdprS/DQuCohFj2Dg688/MNGGg4XselS1HlXs=","gW66luebHgv7ZGJKWOpcyg7VqZykwx\u002BNPg2fJAcN6PA=","j/lDqeyFuI4\u002BIIfYhTQTY5eXoatVII0JZ2XzFSf5eqg=","8plOue6cCDL7IYKvCOa/70ES3mKgmgwu8D/ptvCQ\u002Bp8=","mXLvrNI3BLdeGoOfgYetjU5dE6p/KFYR/I/OIdX\u002Bqd4=","ry4\u002BRYKOZclrBMw3LcqkJ6CY90OM0v1AXlw49vmkAmM=","gFwyh4HVsVXcOzYLuxSGSZVIMDd\u002BsDZc2v2LClngkcc=","ddNOamm5\u002BkCo8XARDYqMgwaRMR3rQJBH2L7RYewh3\u002B8=","vOA8raIIqshcvMSq0DQp4u\u002BrQARfVFUuoDBnY3S0AlQ=","5\u002BJCDEp2ZY7VYwhjuaiCz3EJ0PdqjDBNdnIOJqolgGs=","ppDPoYW5PkIatn38a8kFIAmq5V25R/jMgaPvLifwR4k=","XEqP4NjPk9NMApOEnFNcAiH0QEb8cE1nrlOC9uKsICk=","V8f4xVCIpB1\u002Bn7KlKv9JBE/I4O0kyj\u002BDyl17UjCww7o=","qFUjEXtXGV7LlbFqGJcMpw8DUGVbp4PSKpYwAt8t1Og=","wSqcBylLry7z72LKJlElMvLFlukX1HhbMaYXq0uODtc=","08qVljQjjo7A8HMuCI6klHx4rrZXLy4jaicEsq8KBu0=","pgivgEFvzRRcVAe\u002B7Yo6T/T\u002BLwjJPygNX1D20CTi1gU=","FP/lZPAriWn\u002Bl/31TtvzdAeiVl7d4nmNeycrrEuDeh4=","P\u002B3eTkBqrjO0umcCYpJJAmgYask4fkM9b8uCPU8tqvM=","ysE7XwKMb9OiWXdjq6MFzQZQ4bvAdj6R4LQISa9JO2c=","\u002BZ5OwDIqmznZPoMmxIkST7RqdQvCI91M2qNGQvN2fuM=","uojdN41adPpaYPwL1yTvftYF\u002BedskvUhsDru7sZsZnE=","m4d76Fdxk5seFCbzdLoTq9yORCMly7FJDnydkQDcPDo=","JpOMe7CWIFFojKrebfKGUCWVUoPoDUC4dkV8vYr\u002BzW0=","jPTiCvAZ/oi0GTmCyu8Br4O2AZ2GMkCDF6lyc5frBJA=","FQ0gyXEk/xdJ\u002B/1anr7ru\u002BP5Bg0WKIi0BZL4uVaBFuQ=","an6GQb7UdbYyEBqlE8J2XCu44C3\u002B7JBSvwizV8l0Xnw=","Bnn9gVT9BFj/en5frkJtTGjatFRNBqZdM85teDbUpp0=","mWcReXh\u002BYPUaDLQSZw7XM\u002BY9Pl1xGVFbbJc0mOWF2yA=","p2uT6mCzPrreCub3aRtRS83zXGtC47cAlswZ/fu4fSM=","hjPncBEzLcq\u002BWwL5r\u002B3buoSjr9CSlpMUaRHZQrh1A6U=","SS44288xoupJ92CceY5EYJTmnRGWJ4mtS/y40lQ1QTc=","dB91N/2kOPdxGh3PIlTgJMTtGNSOvNXtFjFQxn8CHiM=","Ip551/U2XR5bZznmjPDii0SCmaZ67u5rT0oDIYCY5ls=","gz47MkvqbZWcBshLKJeuvyoCslvtnoIucpRiHSFEPyk=","Y483Ph7YAAsbUMAOs15d6MowtryAUV3VC4OLKnEVNkE=","BGoo0OiISiJcp\u002BI8Yp5EEUqtC7N81D\u002BfSSwhPC\u002BJ9eY=","N/0XqSsgY55UQHWxqE/I9G/8SxjO\u002BASHdq2KkEVgqLY=","KkQYAPrIxSqhg68zAXCkBZMVhbwsZ\u002BuD0TT4/luUV8M=","veKHkWTx4AH6DaLc7p0gEYvNhgRn23vfUwXOkbV/pf4=","hW8fxvmRC0qpBORpoge2/xEHDo6aLP49\u002BRr8D0Qk3XY=","cwwZhswCN7GbS0MGN47WoKwXiYAFUxygIFL/LizK1Q4=","SjWBohOw85bhkuZUG3XzckEjFPLur2\u002BKfJu3oNF4ZXM=","jipY0QNqoS5cixuUHAuKCmkYxXd\u002B/78PxgYZ9fRKBoE=","T4NMN4f00LjL/5m8u\u002BbCum2w5poqUbG0uj\u002BRO3yc07g=","lxihuOX1rC0Ql5h4wUTkfQRh8NpjXgZOTRjBysv66h4=","VAW5s9v7eXp8T8/6284wCvrvCd2NdJDrUydZ5GpoB7g=","qmoVxo3esH9E0GquZyxZP\u002B9Spb9m2m1V53m05p5uPpg=","F7sA7swBgNhttpyXMWvIHSrRFqD0HjlcHq30PiYy1q4=","1V8cNUwsg1BiMf6GpO2VNLiZxwxOcIhRtq/saTloTqk=","jngCSqdr/xgbb4VbX5HmJyHyrfF0GrSnrpIjb7Ckd00=","d5hPvNpdZ20OoM0Cwl0MJhFRB5I/nPLNz82TWig6f/k=","iXqQj8kc8tEMWZmhfOJyJut0KQYyj5d0uAnmKghuHrw=","dlTcgFLe8qXysiFvIpDEZuCHuRqxpPgddzVkLnwQicI=","fS2iYNE9SA4uHphzAtEsUUFXepDFypQ0Ril3t2Hoh7g=","AT/blW2cJbt\u002BfiWcPQMQpJcqNFXQa0bGfP\u002BHUM1kL54=","ok7QFVhd70t4isjrHEelH\u002B1BY37AmWP7qA7EAwG/PPk=","A/twxiiHrtlWaEJFuPBJKZDfXZ5wpRDT/pO3EL5LNy8=","KVtRjT33BPrAyj4Fw2fLOcuj1aJCr4dL1ZWnjDdFSlM=","Lom\u002BVziOiO42zMxUpawwZRQbcN/xSMGDWLfDNVTfpSw=","sgG04T0HMM9i\u002BMRB8valL5bR4EmYWP9HgV/bfqepo9s=","vtfx1MaXWB\u002Bv1HAAX2WzcWLv9QyvWrZJW1A2055/dk8=","kefD5EeyxCZZAcl6folD\u002B7u2rT2kkISue4CSoF6J9C4=","rYkJKsc0T2JOCQLnt8GPUYhzzfqwkRYDEAyPjkL46U8=","w/XozXUd5qMPqtMuCaBeh1k2typVlerzjJ9kb9CKybs=","uy4J0ZhwP7dH\u002Bkp68VBu/40eBGY1p7ad4CgbQ9Kvhhw=","kFRhnNu1\u002BVBeZhi\u002BF8Y4W0d1FHh8kBlTcug3Ga9\u002BoW0=","MLAMzXpxhgeI5JdySDYk9YntsypjBIa1m\u002BI/2MmMSMU=","dx/MdyE5BjPEsQU2Z75bgQQCK7PrmhwdeBJ4jfkegKs=","h\u002BAad/KYhehtlzQ96ZdFTw97viCUiaA7g1MVb\u002BNFsCE=","AwTSfROG7ZZUCPpFhIRCsFHK\u002BkwMjCFunY3243b07i0=","flOxnn1OQqD5l28M2rKBqT8rUneszl18190EqM1mVkg=","zwU3NguVcHCLFI4yiWySAvIcAiBxpjRYHMpMILogxAM=","H9aq4S97Gok0pMpudZjkv7wVKHU/sS6TyWHCnkjJOL4=","Dc2QSV4OTIajvIG6pe2qYZyVJ1WQcPHrPtN9TcDgQmo=","uO0sQpKDo5uH09SM7VjYLUUat0BWOsxli2jsuGZghD8=","D585tyD233J9UwRzFkysWiZxetSuSyji1M\u002B6X\u002Bn0mzc=","T3eYdQDumwCK/5WCqaDU4D/Ez\u002BPrtf\u002BjuR1HykqL4Ho=","2NYAwrCF\u002BjeLZHpnDY8IQ7N1QEwz\u002BR1De5dONGP4br0=","5s8rj0rWToL6bPbCtxIRjik2YDEZmgk8gis8HgSyGR4=","rBf6sCW0rs2bzf75K884XM8fYA9orFDutH5H2XVHk2E=","UxhyMsp038jyjrGK1kB7l5WIQg\u002B3SzU0KSZqF1HCsYI=","ROUjpkACO1uAEhKqo5MlX7/DvfX3fzcn7zMBE9iosG8=","MosrLDJLpdQDPSbGd8AkXahdf0t9S0HE7HYpjXI6NdI=","y9yiw6st3Lke\u002BJLypvU7vaBcMGmfkjMdfaa3tQD\u002BnEk=","2w6nOBTN9GYt5py71xBdKchbrkf5YHk9phehe21wtag=","Vq852Ou648JNjTWzdEWMkX4u/CbYNxyP0Vl/kiXxsS0=","AfrBCqpUzJhv2AEB9nAy9r0\u002BnL9K7lB/a8Aud1Gv5sc=","7EkZdAkTmxzGjykK9c\u002BpEib9PgGeDo1s/jVxK65M1P8=","2bFEVHPiWcCWya9reNO\u002BAqncAW3WERS6JmnxU3BOZYo=","CGX\u002B1NvbvxNidkOH8fkujNvTV6egIwWvwy6ZDGStCj8=","H/E7DPwTV93r9rdZNCAHQjnNSTt9yJr5fZzu6lQhWAA=","rxOidqyfVnu8y9OvBYwDM8gVZ3\u002BIEsKkbJzECHplLsk=","QMLTZhagzDwrj1b/P5MTYqmUJU\u002Bq6cc7kaQWBB1KBYk=","Un9Nk3yrPgQHFRoXy5jLTJ7R7mYAyX2GeSrtCIqXC5E=","flFnk3fYwEdbwRmYL\u002B06cYqoQFaRNzZ\u002B9NORBgPlFHw=","bDQSIh/\u002BHKU/QTxM1ElrhOG6x8shfui/6WM3uWqaE6E=","MfaPbAIS9u6sTP2Adk\u002BW\u002BFd80F9BfuxNr35q1UPN2cQ=","rhOnnZ3n30PtdoMQFgkLTVqGnw7hMZyp/CitqWiX4S4=","ajMShBp5HduSGdv9Y9f77ICJA4pPpAVjjZvTe0aurXI="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"ILSx+4dCyQzML0PLL1+iAfuwi4o6nolNPq04aGa56YY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vdtHh/zOSUzIXLsY12md/hRdo1uZ8G/3wAHBzgfEumw=","Dk3jsy\u002BHNDsFnpDAXEvqr0DE5QzMsv07/7VUXD3w9W8=","Wg33Et8yFcu2zn6Pa6EbqJ4Wd9Ylvtny/w98VI1JWIU=","KbuoQ4jDMnsw4hJVn9i6DmW2Nz5CxEDJvwwKd4TxCJk=","Z4r6\u002BGVAPN4NDXk4KvDa6997WlSoz\u002B6H0kpZ3q0V31A=","/m60RmZz2fhgc1KOpLbKpGCSUB4kqYElc3KzVbKE2lg=","m7w7W8zTzxeeZFyPitiWIFjpblzXTPJDz6o\u002BHZK7CVU=","nK\u002B04lADm1tnmhfAsICjcWCSfwvpuC/IHJsbZc3bIp4=","nUClS7oFrZLvLNwhbsqJACYqlO3yHfIMloPT65jBSog=","MwSsw1CNRND/o1//2ixHM/m9Piww\u002B7/CH7QSR759iWc=","phsbo\u002BKjgk3WcMMAvJVBJyGlWoH1MNwBGaLeIlvRGrk=","ZqdGPeUo2iPpvof5MH6FkcnChkz6C9GSzHezqBS9/10=","LGn\u002BTs2AlBPTvjNwZ7k8Aq0m3gI5AGZbn6HD/H0bR1c=","vEKhpAYE\u002BzMd3RKVoVccKQiaF5iCkNnB5t2ISTovDhk=","bsqFDF2DGBah6dbUGbY6mc5S32so0O3frTrEXrDBidk=","Bx0REq5xuplRN8RWJtDcBJ8qwVa\u002B3RprzPVh1gn2QKo=","e9YJzJs3bC5IxyaJieTq8\u002Buchd3vMMHgZR4QyapyaF4=","X8da3N3GLR2OXFzpxibmFCdKvwM0f5k2SwK3qPrrCmU=","s\u002BnzHzh6UKBOESaLQiq5UrkABYvP55C0PeG4596YAeo=","Zn4P4tCDx2xQ\u002BW4Punev1c0e14KnGEFZoaM3coU9Oyw=","2J5nW1mHMcQQ7BCXERoyT9EUT74CLIeUFBxqiEvQ0\u002B0=","lsayflr7ePSw3nn5pzsWXcSDcHCt3v\u002B8d2EXn0n3hoU=","TT9IUobP/5FnZYKfRiuNjT40XhIuJvEt38c32/FOATI=","ubM3BdmdyRAjd6pk\u002BHclJ/7Amy7akudm5A10gL1gjWw=","o3g2jNh9WOAqOF1O1J/QXxNFEs7vzSCPc7vl2W2Eg5Y=","sVmkbfD6xp4OTJU/LaUA6P/uxG65mCYXMW6xIV6MN48=","4IauJF4oeE1Noflm6hfom3iWIU96zXcG3Y4jwbQd7LI=","atk208TT1Wna3CCZSQ2EhkO2tU\u002BLB1SuqxSQs8MgUt4=","91fYA5enOmHQuf1tX9oXb2HCELocONh0MRud0V7SRpg=","rrVLzPx2cjWgcilaF2eqL44JkL6c26quM\u002B9vMiXjJgU=","AwjwFpokBzy/E/hxSPMuLUFONk4Jwn/qQXlyLDZpalw=","yzeU43IYP/wkf/R\u002BAxPtD3ObkRV\u002Bi3wCqwRcdug1nqE=","eHhaDYbCiAVjvLZ7jX6KaLVrZuB652l6WU\u002Bj097Q/KM=","pRJnsSJXRlM6YTPVxgIyzL\u002BGHSkbS31//OKkSyw\u002Ba3k=","Pd2QcrYRM6PoaZy00Ut9oSombDHplR6NcBFdU3v9x3M=","q8ajtc/4veJd5VcIVoEj1P8KpQFjKbezXZJHKsJsJ58=","H7w7IVHV1blGB66YKjJjYOqr8L4hQUAlmWdXTvMCkE0=","p7ZzL0tA6X7hgdesmkPzC\u002BMpsKyxzAYPehKHPZpUUTk=","zUW9Z3rxL6ZnerUdf0NBDKa94RJXN7z2NV6CjiD8muU=","L1v/GbPaWkITIzaEKWp3UCr607opQVx2qA6naw/L6N8=","msmngHYRHJkuXsjRP0XljcPE93hmxtRNGr5ZwTsctd4=","DELXdaQdlPtNXr\u002BrabQjiVJAeqo9LjU2xmrtahy8mKo=","rWIVl8epbka81lIcO3AKQy4w33ceOwQT2QeMk\u002B6ij98=","Hqi4yNphcLPLrj58hjCfXdWzu8dxabXZjQPFo\u002B\u002BP4JI=","ApYnA/j38MrMv4T\u002B2ADNAPT0JraxMDh8RP6i2qIPFBA=","SAL\u002BYrSupSDTm0Zz5fv7XdQz7d2NQ6jz\u002BvuJRl1wIXs=","YVvfWQtzbjO0LKeoqqyRhgkzZsbTp4DEFvRb3OoavdM=","iN1Ih97am65koTUFe0\u002BczXZBA9qF/bsq07lNVxPIJJ0=","q1OrWBqLfMRp7HP0hZCNWgfRaKA6Qw4\u002BkygV75N/G0U=","BPDzHamGTP15tIilvwiguLMJiERSBeQXUlUPf5TNJdg=","Y6VjYVU1BuBF2nL3Wo0h0KofFd\u002B/PROMNutY/HeHfG0=","HAGnG0vAUkQoVpj3KmmyWaeqGvX5raZzkTg4lgJl1EA=","SUz\u002B39TzMnrIGs4iRsMUSjY/reCZIvWEQ4L2KgOgV8U=","Ru0JjtUetcVWj/sLUi96WG8SR9BZ3o1b39SWpgI\u002BrgU=","h1qZW31sNXwbQSLK\u002Be091il6T52u1IeAaVdEFgWurU8=","YA03W6C9vGyQAnQsb5sTsrbZ57H7qdMmk4hOi6HNMlI=","nslXCM6T1fD/m3MdfqareFDcf9yuWj8yXmFfhTZIUso=","KQw13/e3x9B8wwrECqg1FJVMHuGkg4X0zzRZ1Ft//wk=","oZZ9gw8Xu0ImrWYLWisekRrt8pj70CzUEsXir3ToPUg=","vEgQrDpbnaEEqlRr9cVHvermY6Ufys56CNcGKFHqA/E=","HRo96sJdprS/DQuCohFj2Dg688/MNGGg4XselS1HlXs=","gW66luebHgv7ZGJKWOpcyg7VqZykwx\u002BNPg2fJAcN6PA=","j/lDqeyFuI4\u002BIIfYhTQTY5eXoatVII0JZ2XzFSf5eqg=","8plOue6cCDL7IYKvCOa/70ES3mKgmgwu8D/ptvCQ\u002Bp8=","mXLvrNI3BLdeGoOfgYetjU5dE6p/KFYR/I/OIdX\u002Bqd4=","ry4\u002BRYKOZclrBMw3LcqkJ6CY90OM0v1AXlw49vmkAmM=","gFwyh4HVsVXcOzYLuxSGSZVIMDd\u002BsDZc2v2LClngkcc=","ddNOamm5\u002BkCo8XARDYqMgwaRMR3rQJBH2L7RYewh3\u002B8=","vOA8raIIqshcvMSq0DQp4u\u002BrQARfVFUuoDBnY3S0AlQ=","5\u002BJCDEp2ZY7VYwhjuaiCz3EJ0PdqjDBNdnIOJqolgGs=","ppDPoYW5PkIatn38a8kFIAmq5V25R/jMgaPvLifwR4k=","XEqP4NjPk9NMApOEnFNcAiH0QEb8cE1nrlOC9uKsICk=","V8f4xVCIpB1\u002Bn7KlKv9JBE/I4O0kyj\u002BDyl17UjCww7o=","qFUjEXtXGV7LlbFqGJcMpw8DUGVbp4PSKpYwAt8t1Og=","wSqcBylLry7z72LKJlElMvLFlukX1HhbMaYXq0uODtc=","08qVljQjjo7A8HMuCI6klHx4rrZXLy4jaicEsq8KBu0=","pgivgEFvzRRcVAe\u002B7Yo6T/T\u002BLwjJPygNX1D20CTi1gU=","FP/lZPAriWn\u002Bl/31TtvzdAeiVl7d4nmNeycrrEuDeh4=","P\u002B3eTkBqrjO0umcCYpJJAmgYask4fkM9b8uCPU8tqvM=","ysE7XwKMb9OiWXdjq6MFzQZQ4bvAdj6R4LQISa9JO2c=","\u002BZ5OwDIqmznZPoMmxIkST7RqdQvCI91M2qNGQvN2fuM=","uojdN41adPpaYPwL1yTvftYF\u002BedskvUhsDru7sZsZnE=","m4d76Fdxk5seFCbzdLoTq9yORCMly7FJDnydkQDcPDo=","JpOMe7CWIFFojKrebfKGUCWVUoPoDUC4dkV8vYr\u002BzW0=","jPTiCvAZ/oi0GTmCyu8Br4O2AZ2GMkCDF6lyc5frBJA=","FQ0gyXEk/xdJ\u002B/1anr7ru\u002BP5Bg0WKIi0BZL4uVaBFuQ=","an6GQb7UdbYyEBqlE8J2XCu44C3\u002B7JBSvwizV8l0Xnw=","Bnn9gVT9BFj/en5frkJtTGjatFRNBqZdM85teDbUpp0=","mWcReXh\u002BYPUaDLQSZw7XM\u002BY9Pl1xGVFbbJc0mOWF2yA=","p2uT6mCzPrreCub3aRtRS83zXGtC47cAlswZ/fu4fSM=","hjPncBEzLcq\u002BWwL5r\u002B3buoSjr9CSlpMUaRHZQrh1A6U=","SS44288xoupJ92CceY5EYJTmnRGWJ4mtS/y40lQ1QTc=","dB91N/2kOPdxGh3PIlTgJMTtGNSOvNXtFjFQxn8CHiM=","Ip551/U2XR5bZznmjPDii0SCmaZ67u5rT0oDIYCY5ls=","gz47MkvqbZWcBshLKJeuvyoCslvtnoIucpRiHSFEPyk=","Y483Ph7YAAsbUMAOs15d6MowtryAUV3VC4OLKnEVNkE=","BGoo0OiISiJcp\u002BI8Yp5EEUqtC7N81D\u002BfSSwhPC\u002BJ9eY=","N/0XqSsgY55UQHWxqE/I9G/8SxjO\u002BASHdq2KkEVgqLY=","KkQYAPrIxSqhg68zAXCkBZMVhbwsZ\u002BuD0TT4/luUV8M=","veKHkWTx4AH6DaLc7p0gEYvNhgRn23vfUwXOkbV/pf4=","hW8fxvmRC0qpBORpoge2/xEHDo6aLP49\u002BRr8D0Qk3XY=","cwwZhswCN7GbS0MGN47WoKwXiYAFUxygIFL/LizK1Q4=","SjWBohOw85bhkuZUG3XzckEjFPLur2\u002BKfJu3oNF4ZXM=","jipY0QNqoS5cixuUHAuKCmkYxXd\u002B/78PxgYZ9fRKBoE=","T4NMN4f00LjL/5m8u\u002BbCum2w5poqUbG0uj\u002BRO3yc07g=","Y2yO7FFoGIfVYwiUcj0J6j0swZ4qDr\u002BZtDz/Q7WzO7w=","rOhByTY1VZvcXCH2sUGtVss0XIEKfTXurCcVhZI\u002BiUU=","lxihuOX1rC0Ql5h4wUTkfQRh8NpjXgZOTRjBysv66h4=","VAW5s9v7eXp8T8/6284wCvrvCd2NdJDrUydZ5GpoB7g=","qmoVxo3esH9E0GquZyxZP\u002B9Spb9m2m1V53m05p5uPpg=","F7sA7swBgNhttpyXMWvIHSrRFqD0HjlcHq30PiYy1q4=","1V8cNUwsg1BiMf6GpO2VNLiZxwxOcIhRtq/saTloTqk=","jngCSqdr/xgbb4VbX5HmJyHyrfF0GrSnrpIjb7Ckd00=","d5hPvNpdZ20OoM0Cwl0MJhFRB5I/nPLNz82TWig6f/k=","iXqQj8kc8tEMWZmhfOJyJut0KQYyj5d0uAnmKghuHrw=","dlTcgFLe8qXysiFvIpDEZuCHuRqxpPgddzVkLnwQicI=","fS2iYNE9SA4uHphzAtEsUUFXepDFypQ0Ril3t2Hoh7g=","AT/blW2cJbt\u002BfiWcPQMQpJcqNFXQa0bGfP\u002BHUM1kL54=","ok7QFVhd70t4isjrHEelH\u002B1BY37AmWP7qA7EAwG/PPk=","A/twxiiHrtlWaEJFuPBJKZDfXZ5wpRDT/pO3EL5LNy8=","KVtRjT33BPrAyj4Fw2fLOcuj1aJCr4dL1ZWnjDdFSlM=","Lom\u002BVziOiO42zMxUpawwZRQbcN/xSMGDWLfDNVTfpSw=","sgG04T0HMM9i\u002BMRB8valL5bR4EmYWP9HgV/bfqepo9s=","vtfx1MaXWB\u002Bv1HAAX2WzcWLv9QyvWrZJW1A2055/dk8=","kefD5EeyxCZZAcl6folD\u002B7u2rT2kkISue4CSoF6J9C4=","rYkJKsc0T2JOCQLnt8GPUYhzzfqwkRYDEAyPjkL46U8=","w/XozXUd5qMPqtMuCaBeh1k2typVlerzjJ9kb9CKybs=","uy4J0ZhwP7dH\u002Bkp68VBu/40eBGY1p7ad4CgbQ9Kvhhw=","kFRhnNu1\u002BVBeZhi\u002BF8Y4W0d1FHh8kBlTcug3Ga9\u002BoW0=","MLAMzXpxhgeI5JdySDYk9YntsypjBIa1m\u002BI/2MmMSMU=","dx/MdyE5BjPEsQU2Z75bgQQCK7PrmhwdeBJ4jfkegKs=","h\u002BAad/KYhehtlzQ96ZdFTw97viCUiaA7g1MVb\u002BNFsCE=","AwTSfROG7ZZUCPpFhIRCsFHK\u002BkwMjCFunY3243b07i0=","flOxnn1OQqD5l28M2rKBqT8rUneszl18190EqM1mVkg=","zwU3NguVcHCLFI4yiWySAvIcAiBxpjRYHMpMILogxAM=","H9aq4S97Gok0pMpudZjkv7wVKHU/sS6TyWHCnkjJOL4=","Dc2QSV4OTIajvIG6pe2qYZyVJ1WQcPHrPtN9TcDgQmo=","uO0sQpKDo5uH09SM7VjYLUUat0BWOsxli2jsuGZghD8=","D585tyD233J9UwRzFkysWiZxetSuSyji1M\u002B6X\u002Bn0mzc=","T3eYdQDumwCK/5WCqaDU4D/Ez\u002BPrtf\u002BjuR1HykqL4Ho=","2NYAwrCF\u002BjeLZHpnDY8IQ7N1QEwz\u002BR1De5dONGP4br0=","5s8rj0rWToL6bPbCtxIRjik2YDEZmgk8gis8HgSyGR4=","rBf6sCW0rs2bzf75K884XM8fYA9orFDutH5H2XVHk2E=","UxhyMsp038jyjrGK1kB7l5WIQg\u002B3SzU0KSZqF1HCsYI=","ROUjpkACO1uAEhKqo5MlX7/DvfX3fzcn7zMBE9iosG8=","MosrLDJLpdQDPSbGd8AkXahdf0t9S0HE7HYpjXI6NdI=","y9yiw6st3Lke\u002BJLypvU7vaBcMGmfkjMdfaa3tQD\u002BnEk=","2w6nOBTN9GYt5py71xBdKchbrkf5YHk9phehe21wtag=","Vq852Ou648JNjTWzdEWMkX4u/CbYNxyP0Vl/kiXxsS0=","AfrBCqpUzJhv2AEB9nAy9r0\u002BnL9K7lB/a8Aud1Gv5sc=","7EkZdAkTmxzGjykK9c\u002BpEib9PgGeDo1s/jVxK65M1P8=","2bFEVHPiWcCWya9reNO\u002BAqncAW3WERS6JmnxU3BOZYo=","CGX\u002B1NvbvxNidkOH8fkujNvTV6egIwWvwy6ZDGStCj8=","H/E7DPwTV93r9rdZNCAHQjnNSTt9yJr5fZzu6lQhWAA=","9ptxttHrSWr8PrMBiCQF1TBSXzsBJCLSlf13kBKKSdg=","ldBX\u002B6Xl3NqSX/SRvpRuaKQi3SzjOWSajitoKvfsrNQ=","rxOidqyfVnu8y9OvBYwDM8gVZ3\u002BIEsKkbJzECHplLsk=","QMLTZhagzDwrj1b/P5MTYqmUJU\u002Bq6cc7kaQWBB1KBYk=","YrxhWdrWFiLi3I/JU7BS0uBBdx6k7icRsEGHy8FsqJY=","Un9Nk3yrPgQHFRoXy5jLTJ7R7mYAyX2GeSrtCIqXC5E=","flFnk3fYwEdbwRmYL\u002B06cYqoQFaRNzZ\u002B9NORBgPlFHw=","bDQSIh/\u002BHKU/QTxM1ElrhOG6x8shfui/6WM3uWqaE6E=","MfaPbAIS9u6sTP2Adk\u002BW\u002BFd80F9BfuxNr35q1UPN2cQ=","rhOnnZ3n30PtdoMQFgkLTVqGnw7hMZyp/CitqWiX4S4=","J5mPx5xTFH1wy7CX2FCv39V2\u002BiNX7Hq9rNV9GkpT45Q="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json index df9ae0b..63e1a34 100644 --- a/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +++ b/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -1 +1 @@ -{"GlobalPropertiesHash":"oEWZHnagBW83RxQSHOHII+WmGDIpscet4eQQc08gJ10=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vdtHh/zOSUzIXLsY12md/hRdo1uZ8G/3wAHBzgfEumw=","Dk3jsy\u002BHNDsFnpDAXEvqr0DE5QzMsv07/7VUXD3w9W8=","Wg33Et8yFcu2zn6Pa6EbqJ4Wd9Ylvtny/w98VI1JWIU=","KbuoQ4jDMnsw4hJVn9i6DmW2Nz5CxEDJvwwKd4TxCJk=","Z4r6\u002BGVAPN4NDXk4KvDa6997WlSoz\u002B6H0kpZ3q0V31A=","/m60RmZz2fhgc1KOpLbKpGCSUB4kqYElc3KzVbKE2lg=","m7w7W8zTzxeeZFyPitiWIFjpblzXTPJDz6o\u002BHZK7CVU=","phsbo\u002BKjgk3WcMMAvJVBJyGlWoH1MNwBGaLeIlvRGrk=","ZqdGPeUo2iPpvof5MH6FkcnChkz6C9GSzHezqBS9/10=","LGn\u002BTs2AlBPTvjNwZ7k8Aq0m3gI5AGZbn6HD/H0bR1c=","vEKhpAYE\u002BzMd3RKVoVccKQiaF5iCkNnB5t2ISTovDhk=","bsqFDF2DGBah6dbUGbY6mc5S32so0O3frTrEXrDBidk=","Bx0REq5xuplRN8RWJtDcBJ8qwVa\u002B3RprzPVh1gn2QKo=","e9YJzJs3bC5IxyaJieTq8\u002Buchd3vMMHgZR4QyapyaF4=","X8da3N3GLR2OXFzpxibmFCdKvwM0f5k2SwK3qPrrCmU=","s\u002BnzHzh6UKBOESaLQiq5UrkABYvP55C0PeG4596YAeo=","Zn4P4tCDx2xQ\u002BW4Punev1c0e14KnGEFZoaM3coU9Oyw=","2J5nW1mHMcQQ7BCXERoyT9EUT74CLIeUFBxqiEvQ0\u002B0=","lsayflr7ePSw3nn5pzsWXcSDcHCt3v\u002B8d2EXn0n3hoU=","TT9IUobP/5FnZYKfRiuNjT40XhIuJvEt38c32/FOATI=","ubM3BdmdyRAjd6pk\u002BHclJ/7Amy7akudm5A10gL1gjWw=","o3g2jNh9WOAqOF1O1J/QXxNFEs7vzSCPc7vl2W2Eg5Y=","sVmkbfD6xp4OTJU/LaUA6P/uxG65mCYXMW6xIV6MN48=","4IauJF4oeE1Noflm6hfom3iWIU96zXcG3Y4jwbQd7LI=","atk208TT1Wna3CCZSQ2EhkO2tU\u002BLB1SuqxSQs8MgUt4=","91fYA5enOmHQuf1tX9oXb2HCELocONh0MRud0V7SRpg=","rrVLzPx2cjWgcilaF2eqL44JkL6c26quM\u002B9vMiXjJgU=","AwjwFpokBzy/E/hxSPMuLUFONk4Jwn/qQXlyLDZpalw=","yzeU43IYP/wkf/R\u002BAxPtD3ObkRV\u002Bi3wCqwRcdug1nqE=","eHhaDYbCiAVjvLZ7jX6KaLVrZuB652l6WU\u002Bj097Q/KM=","pRJnsSJXRlM6YTPVxgIyzL\u002BGHSkbS31//OKkSyw\u002Ba3k=","Pd2QcrYRM6PoaZy00Ut9oSombDHplR6NcBFdU3v9x3M=","q8ajtc/4veJd5VcIVoEj1P8KpQFjKbezXZJHKsJsJ58=","H7w7IVHV1blGB66YKjJjYOqr8L4hQUAlmWdXTvMCkE0=","p7ZzL0tA6X7hgdesmkPzC\u002BMpsKyxzAYPehKHPZpUUTk=","zUW9Z3rxL6ZnerUdf0NBDKa94RJXN7z2NV6CjiD8muU=","L1v/GbPaWkITIzaEKWp3UCr607opQVx2qA6naw/L6N8=","msmngHYRHJkuXsjRP0XljcPE93hmxtRNGr5ZwTsctd4=","DELXdaQdlPtNXr\u002BrabQjiVJAeqo9LjU2xmrtahy8mKo=","rWIVl8epbka81lIcO3AKQy4w33ceOwQT2QeMk\u002B6ij98=","Hqi4yNphcLPLrj58hjCfXdWzu8dxabXZjQPFo\u002B\u002BP4JI=","ApYnA/j38MrMv4T\u002B2ADNAPT0JraxMDh8RP6i2qIPFBA=","SAL\u002BYrSupSDTm0Zz5fv7XdQz7d2NQ6jz\u002BvuJRl1wIXs=","YVvfWQtzbjO0LKeoqqyRhgkzZsbTp4DEFvRb3OoavdM=","iN1Ih97am65koTUFe0\u002BczXZBA9qF/bsq07lNVxPIJJ0=","q1OrWBqLfMRp7HP0hZCNWgfRaKA6Qw4\u002BkygV75N/G0U=","BPDzHamGTP15tIilvwiguLMJiERSBeQXUlUPf5TNJdg=","Y6VjYVU1BuBF2nL3Wo0h0KofFd\u002B/PROMNutY/HeHfG0=","HAGnG0vAUkQoVpj3KmmyWaeqGvX5raZzkTg4lgJl1EA=","SUz\u002B39TzMnrIGs4iRsMUSjY/reCZIvWEQ4L2KgOgV8U=","Ru0JjtUetcVWj/sLUi96WG8SR9BZ3o1b39SWpgI\u002BrgU=","h1qZW31sNXwbQSLK\u002Be091il6T52u1IeAaVdEFgWurU8=","YA03W6C9vGyQAnQsb5sTsrbZ57H7qdMmk4hOi6HNMlI=","nslXCM6T1fD/m3MdfqareFDcf9yuWj8yXmFfhTZIUso=","KQw13/e3x9B8wwrECqg1FJVMHuGkg4X0zzRZ1Ft//wk=","oZZ9gw8Xu0ImrWYLWisekRrt8pj70CzUEsXir3ToPUg=","vEgQrDpbnaEEqlRr9cVHvermY6Ufys56CNcGKFHqA/E=","HRo96sJdprS/DQuCohFj2Dg688/MNGGg4XselS1HlXs=","gW66luebHgv7ZGJKWOpcyg7VqZykwx\u002BNPg2fJAcN6PA=","j/lDqeyFuI4\u002BIIfYhTQTY5eXoatVII0JZ2XzFSf5eqg=","8plOue6cCDL7IYKvCOa/70ES3mKgmgwu8D/ptvCQ\u002Bp8=","mXLvrNI3BLdeGoOfgYetjU5dE6p/KFYR/I/OIdX\u002Bqd4=","ry4\u002BRYKOZclrBMw3LcqkJ6CY90OM0v1AXlw49vmkAmM=","gFwyh4HVsVXcOzYLuxSGSZVIMDd\u002BsDZc2v2LClngkcc=","ddNOamm5\u002BkCo8XARDYqMgwaRMR3rQJBH2L7RYewh3\u002B8=","vOA8raIIqshcvMSq0DQp4u\u002BrQARfVFUuoDBnY3S0AlQ=","5\u002BJCDEp2ZY7VYwhjuaiCz3EJ0PdqjDBNdnIOJqolgGs=","ppDPoYW5PkIatn38a8kFIAmq5V25R/jMgaPvLifwR4k=","XEqP4NjPk9NMApOEnFNcAiH0QEb8cE1nrlOC9uKsICk=","V8f4xVCIpB1\u002Bn7KlKv9JBE/I4O0kyj\u002BDyl17UjCww7o=","qFUjEXtXGV7LlbFqGJcMpw8DUGVbp4PSKpYwAt8t1Og=","wSqcBylLry7z72LKJlElMvLFlukX1HhbMaYXq0uODtc=","08qVljQjjo7A8HMuCI6klHx4rrZXLy4jaicEsq8KBu0=","pgivgEFvzRRcVAe\u002B7Yo6T/T\u002BLwjJPygNX1D20CTi1gU=","FP/lZPAriWn\u002Bl/31TtvzdAeiVl7d4nmNeycrrEuDeh4=","P\u002B3eTkBqrjO0umcCYpJJAmgYask4fkM9b8uCPU8tqvM=","ysE7XwKMb9OiWXdjq6MFzQZQ4bvAdj6R4LQISa9JO2c=","\u002BZ5OwDIqmznZPoMmxIkST7RqdQvCI91M2qNGQvN2fuM=","uojdN41adPpaYPwL1yTvftYF\u002BedskvUhsDru7sZsZnE=","m4d76Fdxk5seFCbzdLoTq9yORCMly7FJDnydkQDcPDo=","JpOMe7CWIFFojKrebfKGUCWVUoPoDUC4dkV8vYr\u002BzW0=","jPTiCvAZ/oi0GTmCyu8Br4O2AZ2GMkCDF6lyc5frBJA=","FQ0gyXEk/xdJ\u002B/1anr7ru\u002BP5Bg0WKIi0BZL4uVaBFuQ=","an6GQb7UdbYyEBqlE8J2XCu44C3\u002B7JBSvwizV8l0Xnw=","Bnn9gVT9BFj/en5frkJtTGjatFRNBqZdM85teDbUpp0=","mWcReXh\u002BYPUaDLQSZw7XM\u002BY9Pl1xGVFbbJc0mOWF2yA=","p2uT6mCzPrreCub3aRtRS83zXGtC47cAlswZ/fu4fSM=","hjPncBEzLcq\u002BWwL5r\u002B3buoSjr9CSlpMUaRHZQrh1A6U=","SS44288xoupJ92CceY5EYJTmnRGWJ4mtS/y40lQ1QTc=","dB91N/2kOPdxGh3PIlTgJMTtGNSOvNXtFjFQxn8CHiM=","Ip551/U2XR5bZznmjPDii0SCmaZ67u5rT0oDIYCY5ls=","gz47MkvqbZWcBshLKJeuvyoCslvtnoIucpRiHSFEPyk=","Y483Ph7YAAsbUMAOs15d6MowtryAUV3VC4OLKnEVNkE=","BGoo0OiISiJcp\u002BI8Yp5EEUqtC7N81D\u002BfSSwhPC\u002BJ9eY=","N/0XqSsgY55UQHWxqE/I9G/8SxjO\u002BASHdq2KkEVgqLY=","KkQYAPrIxSqhg68zAXCkBZMVhbwsZ\u002BuD0TT4/luUV8M=","veKHkWTx4AH6DaLc7p0gEYvNhgRn23vfUwXOkbV/pf4=","hW8fxvmRC0qpBORpoge2/xEHDo6aLP49\u002BRr8D0Qk3XY=","cwwZhswCN7GbS0MGN47WoKwXiYAFUxygIFL/LizK1Q4=","SjWBohOw85bhkuZUG3XzckEjFPLur2\u002BKfJu3oNF4ZXM=","jipY0QNqoS5cixuUHAuKCmkYxXd\u002B/78PxgYZ9fRKBoE=","T4NMN4f00LjL/5m8u\u002BbCum2w5poqUbG0uj\u002BRO3yc07g=","lxihuOX1rC0Ql5h4wUTkfQRh8NpjXgZOTRjBysv66h4=","VAW5s9v7eXp8T8/6284wCvrvCd2NdJDrUydZ5GpoB7g=","qmoVxo3esH9E0GquZyxZP\u002B9Spb9m2m1V53m05p5uPpg=","F7sA7swBgNhttpyXMWvIHSrRFqD0HjlcHq30PiYy1q4=","1V8cNUwsg1BiMf6GpO2VNLiZxwxOcIhRtq/saTloTqk=","jngCSqdr/xgbb4VbX5HmJyHyrfF0GrSnrpIjb7Ckd00=","d5hPvNpdZ20OoM0Cwl0MJhFRB5I/nPLNz82TWig6f/k=","iXqQj8kc8tEMWZmhfOJyJut0KQYyj5d0uAnmKghuHrw=","dlTcgFLe8qXysiFvIpDEZuCHuRqxpPgddzVkLnwQicI=","fS2iYNE9SA4uHphzAtEsUUFXepDFypQ0Ril3t2Hoh7g=","AT/blW2cJbt\u002BfiWcPQMQpJcqNFXQa0bGfP\u002BHUM1kL54=","ok7QFVhd70t4isjrHEelH\u002B1BY37AmWP7qA7EAwG/PPk=","A/twxiiHrtlWaEJFuPBJKZDfXZ5wpRDT/pO3EL5LNy8=","KVtRjT33BPrAyj4Fw2fLOcuj1aJCr4dL1ZWnjDdFSlM=","Lom\u002BVziOiO42zMxUpawwZRQbcN/xSMGDWLfDNVTfpSw=","sgG04T0HMM9i\u002BMRB8valL5bR4EmYWP9HgV/bfqepo9s=","vtfx1MaXWB\u002Bv1HAAX2WzcWLv9QyvWrZJW1A2055/dk8=","kefD5EeyxCZZAcl6folD\u002B7u2rT2kkISue4CSoF6J9C4=","rYkJKsc0T2JOCQLnt8GPUYhzzfqwkRYDEAyPjkL46U8=","w/XozXUd5qMPqtMuCaBeh1k2typVlerzjJ9kb9CKybs=","uy4J0ZhwP7dH\u002Bkp68VBu/40eBGY1p7ad4CgbQ9Kvhhw=","kFRhnNu1\u002BVBeZhi\u002BF8Y4W0d1FHh8kBlTcug3Ga9\u002BoW0=","MLAMzXpxhgeI5JdySDYk9YntsypjBIa1m\u002BI/2MmMSMU=","dx/MdyE5BjPEsQU2Z75bgQQCK7PrmhwdeBJ4jfkegKs=","h\u002BAad/KYhehtlzQ96ZdFTw97viCUiaA7g1MVb\u002BNFsCE=","AwTSfROG7ZZUCPpFhIRCsFHK\u002BkwMjCFunY3243b07i0=","flOxnn1OQqD5l28M2rKBqT8rUneszl18190EqM1mVkg=","zwU3NguVcHCLFI4yiWySAvIcAiBxpjRYHMpMILogxAM=","H9aq4S97Gok0pMpudZjkv7wVKHU/sS6TyWHCnkjJOL4=","Dc2QSV4OTIajvIG6pe2qYZyVJ1WQcPHrPtN9TcDgQmo=","uO0sQpKDo5uH09SM7VjYLUUat0BWOsxli2jsuGZghD8=","D585tyD233J9UwRzFkysWiZxetSuSyji1M\u002B6X\u002Bn0mzc=","T3eYdQDumwCK/5WCqaDU4D/Ez\u002BPrtf\u002BjuR1HykqL4Ho=","2NYAwrCF\u002BjeLZHpnDY8IQ7N1QEwz\u002BR1De5dONGP4br0=","5s8rj0rWToL6bPbCtxIRjik2YDEZmgk8gis8HgSyGR4=","rBf6sCW0rs2bzf75K884XM8fYA9orFDutH5H2XVHk2E=","UxhyMsp038jyjrGK1kB7l5WIQg\u002B3SzU0KSZqF1HCsYI=","ROUjpkACO1uAEhKqo5MlX7/DvfX3fzcn7zMBE9iosG8=","MosrLDJLpdQDPSbGd8AkXahdf0t9S0HE7HYpjXI6NdI=","y9yiw6st3Lke\u002BJLypvU7vaBcMGmfkjMdfaa3tQD\u002BnEk=","2w6nOBTN9GYt5py71xBdKchbrkf5YHk9phehe21wtag=","Vq852Ou648JNjTWzdEWMkX4u/CbYNxyP0Vl/kiXxsS0=","AfrBCqpUzJhv2AEB9nAy9r0\u002BnL9K7lB/a8Aud1Gv5sc=","7EkZdAkTmxzGjykK9c\u002BpEib9PgGeDo1s/jVxK65M1P8=","2bFEVHPiWcCWya9reNO\u002BAqncAW3WERS6JmnxU3BOZYo=","CGX\u002B1NvbvxNidkOH8fkujNvTV6egIwWvwy6ZDGStCj8=","H/E7DPwTV93r9rdZNCAHQjnNSTt9yJr5fZzu6lQhWAA=","rxOidqyfVnu8y9OvBYwDM8gVZ3\u002BIEsKkbJzECHplLsk=","QMLTZhagzDwrj1b/P5MTYqmUJU\u002Bq6cc7kaQWBB1KBYk=","Un9Nk3yrPgQHFRoXy5jLTJ7R7mYAyX2GeSrtCIqXC5E=","flFnk3fYwEdbwRmYL\u002B06cYqoQFaRNzZ\u002B9NORBgPlFHw=","bDQSIh/\u002BHKU/QTxM1ElrhOG6x8shfui/6WM3uWqaE6E=","MfaPbAIS9u6sTP2Adk\u002BW\u002BFd80F9BfuxNr35q1UPN2cQ=","rhOnnZ3n30PtdoMQFgkLTVqGnw7hMZyp/CitqWiX4S4=","ajMShBp5HduSGdv9Y9f77ICJA4pPpAVjjZvTe0aurXI="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file +{"GlobalPropertiesHash":"oEWZHnagBW83RxQSHOHII+WmGDIpscet4eQQc08gJ10=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["vdtHh/zOSUzIXLsY12md/hRdo1uZ8G/3wAHBzgfEumw=","Dk3jsy\u002BHNDsFnpDAXEvqr0DE5QzMsv07/7VUXD3w9W8=","Wg33Et8yFcu2zn6Pa6EbqJ4Wd9Ylvtny/w98VI1JWIU=","KbuoQ4jDMnsw4hJVn9i6DmW2Nz5CxEDJvwwKd4TxCJk=","Z4r6\u002BGVAPN4NDXk4KvDa6997WlSoz\u002B6H0kpZ3q0V31A=","/m60RmZz2fhgc1KOpLbKpGCSUB4kqYElc3KzVbKE2lg=","m7w7W8zTzxeeZFyPitiWIFjpblzXTPJDz6o\u002BHZK7CVU=","nK\u002B04lADm1tnmhfAsICjcWCSfwvpuC/IHJsbZc3bIp4=","nUClS7oFrZLvLNwhbsqJACYqlO3yHfIMloPT65jBSog=","MwSsw1CNRND/o1//2ixHM/m9Piww\u002B7/CH7QSR759iWc=","phsbo\u002BKjgk3WcMMAvJVBJyGlWoH1MNwBGaLeIlvRGrk=","ZqdGPeUo2iPpvof5MH6FkcnChkz6C9GSzHezqBS9/10=","LGn\u002BTs2AlBPTvjNwZ7k8Aq0m3gI5AGZbn6HD/H0bR1c=","vEKhpAYE\u002BzMd3RKVoVccKQiaF5iCkNnB5t2ISTovDhk=","bsqFDF2DGBah6dbUGbY6mc5S32so0O3frTrEXrDBidk=","Bx0REq5xuplRN8RWJtDcBJ8qwVa\u002B3RprzPVh1gn2QKo=","e9YJzJs3bC5IxyaJieTq8\u002Buchd3vMMHgZR4QyapyaF4=","X8da3N3GLR2OXFzpxibmFCdKvwM0f5k2SwK3qPrrCmU=","s\u002BnzHzh6UKBOESaLQiq5UrkABYvP55C0PeG4596YAeo=","Zn4P4tCDx2xQ\u002BW4Punev1c0e14KnGEFZoaM3coU9Oyw=","2J5nW1mHMcQQ7BCXERoyT9EUT74CLIeUFBxqiEvQ0\u002B0=","lsayflr7ePSw3nn5pzsWXcSDcHCt3v\u002B8d2EXn0n3hoU=","TT9IUobP/5FnZYKfRiuNjT40XhIuJvEt38c32/FOATI=","ubM3BdmdyRAjd6pk\u002BHclJ/7Amy7akudm5A10gL1gjWw=","o3g2jNh9WOAqOF1O1J/QXxNFEs7vzSCPc7vl2W2Eg5Y=","sVmkbfD6xp4OTJU/LaUA6P/uxG65mCYXMW6xIV6MN48=","4IauJF4oeE1Noflm6hfom3iWIU96zXcG3Y4jwbQd7LI=","atk208TT1Wna3CCZSQ2EhkO2tU\u002BLB1SuqxSQs8MgUt4=","91fYA5enOmHQuf1tX9oXb2HCELocONh0MRud0V7SRpg=","rrVLzPx2cjWgcilaF2eqL44JkL6c26quM\u002B9vMiXjJgU=","AwjwFpokBzy/E/hxSPMuLUFONk4Jwn/qQXlyLDZpalw=","yzeU43IYP/wkf/R\u002BAxPtD3ObkRV\u002Bi3wCqwRcdug1nqE=","eHhaDYbCiAVjvLZ7jX6KaLVrZuB652l6WU\u002Bj097Q/KM=","pRJnsSJXRlM6YTPVxgIyzL\u002BGHSkbS31//OKkSyw\u002Ba3k=","Pd2QcrYRM6PoaZy00Ut9oSombDHplR6NcBFdU3v9x3M=","q8ajtc/4veJd5VcIVoEj1P8KpQFjKbezXZJHKsJsJ58=","H7w7IVHV1blGB66YKjJjYOqr8L4hQUAlmWdXTvMCkE0=","p7ZzL0tA6X7hgdesmkPzC\u002BMpsKyxzAYPehKHPZpUUTk=","zUW9Z3rxL6ZnerUdf0NBDKa94RJXN7z2NV6CjiD8muU=","L1v/GbPaWkITIzaEKWp3UCr607opQVx2qA6naw/L6N8=","msmngHYRHJkuXsjRP0XljcPE93hmxtRNGr5ZwTsctd4=","DELXdaQdlPtNXr\u002BrabQjiVJAeqo9LjU2xmrtahy8mKo=","rWIVl8epbka81lIcO3AKQy4w33ceOwQT2QeMk\u002B6ij98=","Hqi4yNphcLPLrj58hjCfXdWzu8dxabXZjQPFo\u002B\u002BP4JI=","ApYnA/j38MrMv4T\u002B2ADNAPT0JraxMDh8RP6i2qIPFBA=","SAL\u002BYrSupSDTm0Zz5fv7XdQz7d2NQ6jz\u002BvuJRl1wIXs=","YVvfWQtzbjO0LKeoqqyRhgkzZsbTp4DEFvRb3OoavdM=","iN1Ih97am65koTUFe0\u002BczXZBA9qF/bsq07lNVxPIJJ0=","q1OrWBqLfMRp7HP0hZCNWgfRaKA6Qw4\u002BkygV75N/G0U=","BPDzHamGTP15tIilvwiguLMJiERSBeQXUlUPf5TNJdg=","Y6VjYVU1BuBF2nL3Wo0h0KofFd\u002B/PROMNutY/HeHfG0=","HAGnG0vAUkQoVpj3KmmyWaeqGvX5raZzkTg4lgJl1EA=","SUz\u002B39TzMnrIGs4iRsMUSjY/reCZIvWEQ4L2KgOgV8U=","Ru0JjtUetcVWj/sLUi96WG8SR9BZ3o1b39SWpgI\u002BrgU=","h1qZW31sNXwbQSLK\u002Be091il6T52u1IeAaVdEFgWurU8=","YA03W6C9vGyQAnQsb5sTsrbZ57H7qdMmk4hOi6HNMlI=","nslXCM6T1fD/m3MdfqareFDcf9yuWj8yXmFfhTZIUso=","KQw13/e3x9B8wwrECqg1FJVMHuGkg4X0zzRZ1Ft//wk=","oZZ9gw8Xu0ImrWYLWisekRrt8pj70CzUEsXir3ToPUg=","vEgQrDpbnaEEqlRr9cVHvermY6Ufys56CNcGKFHqA/E=","HRo96sJdprS/DQuCohFj2Dg688/MNGGg4XselS1HlXs=","gW66luebHgv7ZGJKWOpcyg7VqZykwx\u002BNPg2fJAcN6PA=","j/lDqeyFuI4\u002BIIfYhTQTY5eXoatVII0JZ2XzFSf5eqg=","8plOue6cCDL7IYKvCOa/70ES3mKgmgwu8D/ptvCQ\u002Bp8=","mXLvrNI3BLdeGoOfgYetjU5dE6p/KFYR/I/OIdX\u002Bqd4=","ry4\u002BRYKOZclrBMw3LcqkJ6CY90OM0v1AXlw49vmkAmM=","gFwyh4HVsVXcOzYLuxSGSZVIMDd\u002BsDZc2v2LClngkcc=","ddNOamm5\u002BkCo8XARDYqMgwaRMR3rQJBH2L7RYewh3\u002B8=","vOA8raIIqshcvMSq0DQp4u\u002BrQARfVFUuoDBnY3S0AlQ=","5\u002BJCDEp2ZY7VYwhjuaiCz3EJ0PdqjDBNdnIOJqolgGs=","ppDPoYW5PkIatn38a8kFIAmq5V25R/jMgaPvLifwR4k=","XEqP4NjPk9NMApOEnFNcAiH0QEb8cE1nrlOC9uKsICk=","V8f4xVCIpB1\u002Bn7KlKv9JBE/I4O0kyj\u002BDyl17UjCww7o=","qFUjEXtXGV7LlbFqGJcMpw8DUGVbp4PSKpYwAt8t1Og=","wSqcBylLry7z72LKJlElMvLFlukX1HhbMaYXq0uODtc=","08qVljQjjo7A8HMuCI6klHx4rrZXLy4jaicEsq8KBu0=","pgivgEFvzRRcVAe\u002B7Yo6T/T\u002BLwjJPygNX1D20CTi1gU=","FP/lZPAriWn\u002Bl/31TtvzdAeiVl7d4nmNeycrrEuDeh4=","P\u002B3eTkBqrjO0umcCYpJJAmgYask4fkM9b8uCPU8tqvM=","ysE7XwKMb9OiWXdjq6MFzQZQ4bvAdj6R4LQISa9JO2c=","\u002BZ5OwDIqmznZPoMmxIkST7RqdQvCI91M2qNGQvN2fuM=","uojdN41adPpaYPwL1yTvftYF\u002BedskvUhsDru7sZsZnE=","m4d76Fdxk5seFCbzdLoTq9yORCMly7FJDnydkQDcPDo=","JpOMe7CWIFFojKrebfKGUCWVUoPoDUC4dkV8vYr\u002BzW0=","jPTiCvAZ/oi0GTmCyu8Br4O2AZ2GMkCDF6lyc5frBJA=","FQ0gyXEk/xdJ\u002B/1anr7ru\u002BP5Bg0WKIi0BZL4uVaBFuQ=","an6GQb7UdbYyEBqlE8J2XCu44C3\u002B7JBSvwizV8l0Xnw=","Bnn9gVT9BFj/en5frkJtTGjatFRNBqZdM85teDbUpp0=","mWcReXh\u002BYPUaDLQSZw7XM\u002BY9Pl1xGVFbbJc0mOWF2yA=","p2uT6mCzPrreCub3aRtRS83zXGtC47cAlswZ/fu4fSM=","hjPncBEzLcq\u002BWwL5r\u002B3buoSjr9CSlpMUaRHZQrh1A6U=","SS44288xoupJ92CceY5EYJTmnRGWJ4mtS/y40lQ1QTc=","dB91N/2kOPdxGh3PIlTgJMTtGNSOvNXtFjFQxn8CHiM=","Ip551/U2XR5bZznmjPDii0SCmaZ67u5rT0oDIYCY5ls=","gz47MkvqbZWcBshLKJeuvyoCslvtnoIucpRiHSFEPyk=","Y483Ph7YAAsbUMAOs15d6MowtryAUV3VC4OLKnEVNkE=","BGoo0OiISiJcp\u002BI8Yp5EEUqtC7N81D\u002BfSSwhPC\u002BJ9eY=","N/0XqSsgY55UQHWxqE/I9G/8SxjO\u002BASHdq2KkEVgqLY=","KkQYAPrIxSqhg68zAXCkBZMVhbwsZ\u002BuD0TT4/luUV8M=","veKHkWTx4AH6DaLc7p0gEYvNhgRn23vfUwXOkbV/pf4=","hW8fxvmRC0qpBORpoge2/xEHDo6aLP49\u002BRr8D0Qk3XY=","cwwZhswCN7GbS0MGN47WoKwXiYAFUxygIFL/LizK1Q4=","SjWBohOw85bhkuZUG3XzckEjFPLur2\u002BKfJu3oNF4ZXM=","jipY0QNqoS5cixuUHAuKCmkYxXd\u002B/78PxgYZ9fRKBoE=","T4NMN4f00LjL/5m8u\u002BbCum2w5poqUbG0uj\u002BRO3yc07g=","Y2yO7FFoGIfVYwiUcj0J6j0swZ4qDr\u002BZtDz/Q7WzO7w=","rOhByTY1VZvcXCH2sUGtVss0XIEKfTXurCcVhZI\u002BiUU=","lxihuOX1rC0Ql5h4wUTkfQRh8NpjXgZOTRjBysv66h4=","VAW5s9v7eXp8T8/6284wCvrvCd2NdJDrUydZ5GpoB7g=","qmoVxo3esH9E0GquZyxZP\u002B9Spb9m2m1V53m05p5uPpg=","F7sA7swBgNhttpyXMWvIHSrRFqD0HjlcHq30PiYy1q4=","1V8cNUwsg1BiMf6GpO2VNLiZxwxOcIhRtq/saTloTqk=","jngCSqdr/xgbb4VbX5HmJyHyrfF0GrSnrpIjb7Ckd00=","d5hPvNpdZ20OoM0Cwl0MJhFRB5I/nPLNz82TWig6f/k=","iXqQj8kc8tEMWZmhfOJyJut0KQYyj5d0uAnmKghuHrw=","dlTcgFLe8qXysiFvIpDEZuCHuRqxpPgddzVkLnwQicI=","fS2iYNE9SA4uHphzAtEsUUFXepDFypQ0Ril3t2Hoh7g=","AT/blW2cJbt\u002BfiWcPQMQpJcqNFXQa0bGfP\u002BHUM1kL54=","ok7QFVhd70t4isjrHEelH\u002B1BY37AmWP7qA7EAwG/PPk=","A/twxiiHrtlWaEJFuPBJKZDfXZ5wpRDT/pO3EL5LNy8=","KVtRjT33BPrAyj4Fw2fLOcuj1aJCr4dL1ZWnjDdFSlM=","Lom\u002BVziOiO42zMxUpawwZRQbcN/xSMGDWLfDNVTfpSw=","sgG04T0HMM9i\u002BMRB8valL5bR4EmYWP9HgV/bfqepo9s=","vtfx1MaXWB\u002Bv1HAAX2WzcWLv9QyvWrZJW1A2055/dk8=","kefD5EeyxCZZAcl6folD\u002B7u2rT2kkISue4CSoF6J9C4=","rYkJKsc0T2JOCQLnt8GPUYhzzfqwkRYDEAyPjkL46U8=","w/XozXUd5qMPqtMuCaBeh1k2typVlerzjJ9kb9CKybs=","uy4J0ZhwP7dH\u002Bkp68VBu/40eBGY1p7ad4CgbQ9Kvhhw=","kFRhnNu1\u002BVBeZhi\u002BF8Y4W0d1FHh8kBlTcug3Ga9\u002BoW0=","MLAMzXpxhgeI5JdySDYk9YntsypjBIa1m\u002BI/2MmMSMU=","dx/MdyE5BjPEsQU2Z75bgQQCK7PrmhwdeBJ4jfkegKs=","h\u002BAad/KYhehtlzQ96ZdFTw97viCUiaA7g1MVb\u002BNFsCE=","AwTSfROG7ZZUCPpFhIRCsFHK\u002BkwMjCFunY3243b07i0=","flOxnn1OQqD5l28M2rKBqT8rUneszl18190EqM1mVkg=","zwU3NguVcHCLFI4yiWySAvIcAiBxpjRYHMpMILogxAM=","H9aq4S97Gok0pMpudZjkv7wVKHU/sS6TyWHCnkjJOL4=","Dc2QSV4OTIajvIG6pe2qYZyVJ1WQcPHrPtN9TcDgQmo=","uO0sQpKDo5uH09SM7VjYLUUat0BWOsxli2jsuGZghD8=","D585tyD233J9UwRzFkysWiZxetSuSyji1M\u002B6X\u002Bn0mzc=","T3eYdQDumwCK/5WCqaDU4D/Ez\u002BPrtf\u002BjuR1HykqL4Ho=","2NYAwrCF\u002BjeLZHpnDY8IQ7N1QEwz\u002BR1De5dONGP4br0=","5s8rj0rWToL6bPbCtxIRjik2YDEZmgk8gis8HgSyGR4=","rBf6sCW0rs2bzf75K884XM8fYA9orFDutH5H2XVHk2E=","UxhyMsp038jyjrGK1kB7l5WIQg\u002B3SzU0KSZqF1HCsYI=","ROUjpkACO1uAEhKqo5MlX7/DvfX3fzcn7zMBE9iosG8=","MosrLDJLpdQDPSbGd8AkXahdf0t9S0HE7HYpjXI6NdI=","y9yiw6st3Lke\u002BJLypvU7vaBcMGmfkjMdfaa3tQD\u002BnEk=","2w6nOBTN9GYt5py71xBdKchbrkf5YHk9phehe21wtag=","Vq852Ou648JNjTWzdEWMkX4u/CbYNxyP0Vl/kiXxsS0=","AfrBCqpUzJhv2AEB9nAy9r0\u002BnL9K7lB/a8Aud1Gv5sc=","7EkZdAkTmxzGjykK9c\u002BpEib9PgGeDo1s/jVxK65M1P8=","2bFEVHPiWcCWya9reNO\u002BAqncAW3WERS6JmnxU3BOZYo=","CGX\u002B1NvbvxNidkOH8fkujNvTV6egIwWvwy6ZDGStCj8=","H/E7DPwTV93r9rdZNCAHQjnNSTt9yJr5fZzu6lQhWAA=","9ptxttHrSWr8PrMBiCQF1TBSXzsBJCLSlf13kBKKSdg=","ldBX\u002B6Xl3NqSX/SRvpRuaKQi3SzjOWSajitoKvfsrNQ=","rxOidqyfVnu8y9OvBYwDM8gVZ3\u002BIEsKkbJzECHplLsk=","QMLTZhagzDwrj1b/P5MTYqmUJU\u002Bq6cc7kaQWBB1KBYk=","YrxhWdrWFiLi3I/JU7BS0uBBdx6k7icRsEGHy8FsqJY=","Un9Nk3yrPgQHFRoXy5jLTJ7R7mYAyX2GeSrtCIqXC5E=","flFnk3fYwEdbwRmYL\u002B06cYqoQFaRNzZ\u002B9NORBgPlFHw=","bDQSIh/\u002BHKU/QTxM1ElrhOG6x8shfui/6WM3uWqaE6E=","MfaPbAIS9u6sTP2Adk\u002BW\u002BFd80F9BfuxNr35q1UPN2cQ=","rhOnnZ3n30PtdoMQFgkLTVqGnw7hMZyp/CitqWiX4S4=","J5mPx5xTFH1wy7CX2FCv39V2\u002BiNX7Hq9rNV9GkpT45Q="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs deleted file mode 100644 index 4257f4b..0000000 --- a/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Debug/net7.0/0467cd72-b099-44f9-8390-9cc0a523bb59_Microsoft.SelfService.Portal.Core.API.pdb b/obj/Debug/net7.0/0467cd72-b099-44f9-8390-9cc0a523bb59_Microsoft.SelfService.Portal.Core.API.pdb deleted file mode 100644 index fd59cfb..0000000 Binary files a/obj/Debug/net7.0/0467cd72-b099-44f9-8390-9cc0a523bb59_Microsoft.SelfService.Portal.Core.API.pdb and /dev/null differ diff --git a/obj/Debug/net7.0/Microsof.CC767D45.Up2Date b/obj/Debug/net7.0/Microsof.CC767D45.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs deleted file mode 100644 index a413da7..0000000 --- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("9c90fee1-4576-4f20-be83-715728173b96")] -[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft.SelfService.Portal.Core.API")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3bfc79e6d925b38681a51cb5f98fc6ed6e380785")] -[assembly: System.Reflection.AssemblyProductAttribute("Microsoft.SelfService.Portal.Core.API")] -[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft.SelfService.Portal.Core.API")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache deleted file mode 100644 index f339b2c..0000000 --- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -58bef70d975c7d12b10dd73743c5cc2cbfe0b6b90a123137f9ad506dd2ccb8dd diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index baea237..0000000 --- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,24 +0,0 @@ -is_global = true -build_property.TargetFramework = net7.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v7.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = true -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property.EntryPointFilePath = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Microsoft.SelfService.Portal.Core.API -build_property.RootNamespace = Microsoft.SelfService.Portal.Core.API -build_property.ProjectDir = F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.RazorLangVersion = 7.0 -build_property.SupportLocalizedComponentNames = -build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API -build_property._RazorSourceGeneratorDebug = -build_property.EffectiveAnalysisLevelStyle = 7.0 -build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs deleted file mode 100644 index 5e6145d..0000000 --- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs +++ /dev/null @@ -1,17 +0,0 @@ -// -global using Microsoft.AspNetCore.Builder; -global using Microsoft.AspNetCore.Hosting; -global using Microsoft.AspNetCore.Http; -global using Microsoft.AspNetCore.Routing; -global using Microsoft.Extensions.Configuration; -global using Microsoft.Extensions.DependencyInjection; -global using Microsoft.Extensions.Hosting; -global using Microsoft.Extensions.Logging; -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Net.Http.Json; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs deleted file mode 100644 index 7a8df11..0000000 --- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs +++ /dev/null @@ -1,17 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.assets.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.assets.cache deleted file mode 100644 index 220a01f..0000000 Binary files a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.assets.cache and /dev/null differ diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache deleted file mode 100644 index 8ebeaa7..0000000 Binary files a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.BuildWithSkipAnalyzers b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache deleted file mode 100644 index 54ed6c8..0000000 --- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -d8668c8d4561b49549c8e5ac01ebabee85e844537454986f7a21667b5e362343 diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt deleted file mode 100644 index ffb30a6..0000000 --- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,801 +0,0 @@ -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\appsettings.Development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\appsettings.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.deps.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\AutoMapper.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Azure.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Azure.Identity.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Humanizer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.Negotiate.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Connections.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Build.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Build.Framework.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.AnalyzerUtilities.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Elfie.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Scripting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.DiaSymReader.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.DotNet.Scaffolding.Shared.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Extensions.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Identity.Client.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.NET.StringTools.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\dotnet-aspnet-codegenerator-design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Mono.TextTemplating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Newtonsoft.Json.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Configuration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.DependencyResolver.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Frameworks.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.LibraryModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Packaging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.ProjectModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Protocol.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Versioning.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.CodeDom.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.AttributedModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Convention.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Hosting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Runtime.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.TypedParts.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Memory.Data.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Reflection.MetadataLoadContext.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Security.Permissions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\af\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ar\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\az\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\bg\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\bn-BD\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\da\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\el\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fa\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fi-FI\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr-BE\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\he\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hu\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hy\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\id\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\is\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko-KR\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ku\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\lv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ms-MY\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\mt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nb\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nb-NO\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ro\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sr-Latn\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\th-TH\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uz-Cyrl-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uz-Latn-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\vi\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-CN\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.Microsoft.SelfService.Portal.Core.API.Microsoft.AspNetCore.StaticWebAssets.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.build.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.pack.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.build.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\scopedcss\bundle\Microsoft.SelfService.Portal.Core.API.styles.css -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\refint\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\ref\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\appsettings.Development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\appsettings.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.deps.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\AutoMapper.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Azure.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Azure.Identity.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Humanizer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.Negotiate.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Connections.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Build.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Build.Framework.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.AnalyzerUtilities.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Elfie.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Scripting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.DiaSymReader.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.DotNet.Scaffolding.Shared.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Extensions.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Identity.Client.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.NET.StringTools.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\dotnet-aspnet-codegenerator-design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Mono.TextTemplating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Newtonsoft.Json.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Configuration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.DependencyResolver.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Frameworks.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.LibraryModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Packaging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.ProjectModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Protocol.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Versioning.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.CodeDom.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.AttributedModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Convention.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Hosting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Runtime.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.TypedParts.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Memory.Data.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Reflection.MetadataLoadContext.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Security.Permissions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\af\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ar\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\az\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\bg\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\bn-BD\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\da\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\el\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fa\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fi-FI\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr-BE\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\he\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hu\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hy\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\id\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\is\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko-KR\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ku\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\lv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ms-MY\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\mt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nb\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nb-NO\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ro\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sr-Latn\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\th-TH\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uz-Cyrl-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uz-Latn-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\vi\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-CN\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.Microsoft.SelfService.Portal.Core.API.Microsoft.AspNetCore.StaticWebAssets.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.build.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.pack.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.build.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\scopedcss\bundle\Microsoft.SelfService.Portal.Core.API.styles.css -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\refint\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\ref\Microsoft.SelfService.Portal.Core.API.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\refint\Microsoft.SelfService.Portal.Core.API.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.pdb -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\appsettings.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.staticwebassets.endpoints.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.exe -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.deps.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.pdb -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\AutoMapper.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Azure.Core.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Azure.Identity.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Humanizer.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.Negotiate.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Connections.Abstractions.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Build.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Build.Framework.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.AnalyzerUtilities.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.Features.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Elfie.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Features.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Scripting.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.CodeAnalysis.Workspaces.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.DiaSymReader.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.DotNet.Scaffolding.Shared.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Extensions.Features.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Identity.Client.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.NET.StringTools.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.OpenApi.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\dotnet-aspnet-codegenerator-design.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Mono.TextTemplating.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Newtonsoft.Json.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Common.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Configuration.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.DependencyResolver.Core.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Frameworks.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.LibraryModel.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Packaging.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.ProjectModel.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Protocol.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\NuGet.Versioning.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.CodeDom.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.AttributedModel.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Convention.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Hosting.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.Runtime.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Composition.TypedParts.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.DirectoryServices.Protocols.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Drawing.Common.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Memory.Data.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Reflection.MetadataLoadContext.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Runtime.Caching.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Security.Permissions.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\System.Windows.Extensions.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\af\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ar\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\az\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\bg\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\bn-BD\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\da\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\el\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fa\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fi-FI\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr-BE\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\he\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hr\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hu\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\hy\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\id\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\is\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko-KR\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ku\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\lv\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ms-MY\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\mt\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nb\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nb-NO\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\nl\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ro\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sk\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sl\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sr\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sr-Latn\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\sv\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\th-TH\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uk\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uz-Cyrl-UZ\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\uz-Latn-UZ\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\vi\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-CN\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Humanizer.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\rpswa.dswa.cache.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\rjimswa.dswa.cache.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\rjsmrazor.dswa.cache.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\rjsmcshtml.dswa.cache.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\scopedcss\bundle\Microsoft.SelfService.Portal.Core.API.styles.css -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.build.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.build.json.cache -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.development.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\staticwebassets.build.endpoints.json -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\swae.build.ex.cache -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsof.CC767D45.Up2Date -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\obj\Debug\net7.0\ref\Microsoft.SelfService.Portal.Core.API.dll -F:\Projekte\Coding\.Net\Microsoft.SelfService.Portal.Core.API\bin\Debug\net7.0\appsettings.Development.json diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 3daef64..0000000 Binary files a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache deleted file mode 100644 index 389e950..0000000 --- a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -68a5687a54a4fe0213420329a94d8d64a6d5d47ee79f3b3a1f36972c117abc90 diff --git a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb b/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb deleted file mode 100644 index 6450e35..0000000 Binary files a/obj/Debug/net7.0/Microsoft.SelfService.Portal.Core.API.pdb and /dev/null differ diff --git a/obj/Debug/net7.0/apphost.exe b/obj/Debug/net7.0/apphost.exe deleted file mode 100644 index fe6c14a..0000000 Binary files a/obj/Debug/net7.0/apphost.exe and /dev/null differ diff --git a/obj/Debug/net7.0/ref/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net7.0/ref/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index c51341f..0000000 Binary files a/obj/Debug/net7.0/ref/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Debug/net7.0/refint/Microsoft.SelfService.Portal.Core.API.dll b/obj/Debug/net7.0/refint/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index c51341f..0000000 Binary files a/obj/Debug/net7.0/refint/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Debug/net7.0/rjsmcshtml.dswa.cache.json b/obj/Debug/net7.0/rjsmcshtml.dswa.cache.json deleted file mode 100644 index 6cbf85e..0000000 --- a/obj/Debug/net7.0/rjsmcshtml.dswa.cache.json +++ /dev/null @@ -1 +0,0 @@ -{"GlobalPropertiesHash":"ILSx+4dCyQzML0PLL1+iAfuwi4o6nolNPq04aGa56YY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["8V3deuLyb/3rx0bsEvDDgnKEO9iLLhmh5lyW9Il\u002B9rM=","r0CRBbZD7zlCwiC60CcVSLoMaGhK4IFfHnrPuAxmSsI=","QMLTZhagzDwrj1b/P5MTYqmUJU\u002Bq6cc7kaQWBB1KBYk=","Un9Nk3yrPgQHFRoXy5jLTJ7R7mYAyX2GeSrtCIqXC5E=","flFnk3fYwEdbwRmYL\u002B06cYqoQFaRNzZ\u002B9NORBgPlFHw=","bDQSIh/\u002BHKU/QTxM1ElrhOG6x8shfui/6WM3uWqaE6E=","MfaPbAIS9u6sTP2Adk\u002BW\u002BFd80F9BfuxNr35q1UPN2cQ=","rhOnnZ3n30PtdoMQFgkLTVqGnw7hMZyp/CitqWiX4S4=","hwvLNWr96ZmBNh2SH7Zg/dVvvoNLMVvd2EPF9d7qGjg="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net7.0/rjsmrazor.dswa.cache.json b/obj/Debug/net7.0/rjsmrazor.dswa.cache.json deleted file mode 100644 index 91a97b6..0000000 --- a/obj/Debug/net7.0/rjsmrazor.dswa.cache.json +++ /dev/null @@ -1 +0,0 @@ -{"GlobalPropertiesHash":"oEWZHnagBW83RxQSHOHII+WmGDIpscet4eQQc08gJ10=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["8V3deuLyb/3rx0bsEvDDgnKEO9iLLhmh5lyW9Il\u002B9rM=","r0CRBbZD7zlCwiC60CcVSLoMaGhK4IFfHnrPuAxmSsI=","QMLTZhagzDwrj1b/P5MTYqmUJU\u002Bq6cc7kaQWBB1KBYk=","Un9Nk3yrPgQHFRoXy5jLTJ7R7mYAyX2GeSrtCIqXC5E=","flFnk3fYwEdbwRmYL\u002B06cYqoQFaRNzZ\u002B9NORBgPlFHw=","bDQSIh/\u002BHKU/QTxM1ElrhOG6x8shfui/6WM3uWqaE6E=","MfaPbAIS9u6sTP2Adk\u002BW\u002BFd80F9BfuxNr35q1UPN2cQ=","rhOnnZ3n30PtdoMQFgkLTVqGnw7hMZyp/CitqWiX4S4=","hwvLNWr96ZmBNh2SH7Zg/dVvvoNLMVvd2EPF9d7qGjg="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net7.0/rpswa.dswa.cache.json b/obj/Debug/net7.0/rpswa.dswa.cache.json deleted file mode 100644 index 2aa72ee..0000000 --- a/obj/Debug/net7.0/rpswa.dswa.cache.json +++ /dev/null @@ -1 +0,0 @@ -{"GlobalPropertiesHash":"SPJqT2LbTU7DC+nmzNGyx1ZmFtOV+aXZpHUist0ngzg=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["8V3deuLyb/3rx0bsEvDDgnKEO9iLLhmh5lyW9Il\u002B9rM=","r0CRBbZD7zlCwiC60CcVSLoMaGhK4IFfHnrPuAxmSsI="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets.build.endpoints.json b/obj/Debug/net7.0/staticwebassets.build.endpoints.json deleted file mode 100644 index 5576e88..0000000 --- a/obj/Debug/net7.0/staticwebassets.build.endpoints.json +++ /dev/null @@ -1 +0,0 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets.build.json b/obj/Debug/net7.0/staticwebassets.build.json deleted file mode 100644 index 840a86d..0000000 --- a/obj/Debug/net7.0/staticwebassets.build.json +++ /dev/null @@ -1 +0,0 @@ -{"Version":1,"Hash":"cHXLeIaOvbW9DoRmMcKQETs40b/kpgFCBjYp2tugVCo=","Source":"Microsoft.SelfService.Portal.Core.API","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets.build.json.cache b/obj/Debug/net7.0/staticwebassets.build.json.cache deleted file mode 100644 index 8b12fbc..0000000 --- a/obj/Debug/net7.0/staticwebassets.build.json.cache +++ /dev/null @@ -1 +0,0 @@ -cHXLeIaOvbW9DoRmMcKQETs40b/kpgFCBjYp2tugVCo= \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.build.Microsoft.SelfService.Portal.Core.API.props b/obj/Debug/net7.0/staticwebassets/msbuild.build.Microsoft.SelfService.Portal.Core.API.props deleted file mode 100644 index 5a6032a..0000000 --- a/obj/Debug/net7.0/staticwebassets/msbuild.build.Microsoft.SelfService.Portal.Core.API.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props b/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props deleted file mode 100644 index f704301..0000000 --- a/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props b/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props deleted file mode 100644 index b8faea7..0000000 --- a/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/Debug/net7.0/swae.build.ex.cache b/obj/Debug/net7.0/swae.build.ex.cache deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Microsoft.SelfService.Portal.Core.API.csproj.EntityFrameworkCore.targets b/obj/Microsoft.SelfService.Portal.Core.API.csproj.EntityFrameworkCore.targets deleted file mode 100644 index 7d6485d..0000000 --- a/obj/Microsoft.SelfService.Portal.Core.API.csproj.EntityFrameworkCore.targets +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json index ef01dcc..670474c 100644 --- a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json +++ b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json @@ -10,7 +10,7 @@ "projectUniqueName": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", "projectName": "Microsoft.SelfService.Portal.Core.API", "projectPath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", - "packagesPath": "C:\\Users\\torst\\.nuget\\packages\\", + "packagesPath": "C:\\Users\\torst\\.nuget\\packages", "outputPath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ diff --git a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props index 5acc2ef..f1efca1 100644 --- a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props +++ b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props @@ -4,8 +4,8 @@ True NuGet $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\torst\.nuget\packages\ + $(UserProfile)\.nuget\packages + C:\Users\torst\.nuget\packages PackageReference 7.0.0 @@ -13,11 +13,11 @@ - - - - - + + + + + C:\Users\torst\.nuget\packages\microsoft.extensions.apidescription.server\10.0.0 diff --git a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets index 529da74..51b7472 100644 --- a/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets +++ b/obj/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets @@ -1,9 +1,9 @@  - - - - + + + + \ No newline at end of file diff --git a/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs deleted file mode 100644 index 4257f4b..0000000 --- a/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs deleted file mode 100644 index a56a0c5..0000000 --- a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Dieser Code wurde von einem Tool generiert. -// Laufzeitversion:4.0.30319.42000 -// -// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn -// der Code erneut generiert wird. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("9c90fee1-4576-4f20-be83-715728173b96")] -[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft.SelfService.Portal.Core.API")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Microsoft.SelfService.Portal.Core.API")] -[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft.SelfService.Portal.Core.API")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Von der MSBuild WriteCodeFragment-Klasse generiert. - diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache deleted file mode 100644 index 270077f..0000000 --- a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -71bf822e2412a0d1d34d4ba156139a08c34c0e13e2a9f875999b3dcd74a1bfbb diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b4e5130..0000000 --- a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,19 +0,0 @@ -is_global = true -build_property.TargetFramework = net7.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = true -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Microsoft.SelfService.Portal.Core.API -build_property.RootNamespace = Microsoft.SelfService.Portal.Core.API -build_property.ProjectDir = C:\Projekte\Microsoft.SelfService.Portal.Core.API\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.RazorLangVersion = 7.0 -build_property.SupportLocalizedComponentNames = -build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Projekte\Microsoft.SelfService.Portal.Core.API -build_property._RazorSourceGeneratorDebug = diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs deleted file mode 100644 index 025530a..0000000 --- a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs +++ /dev/null @@ -1,17 +0,0 @@ -// -global using global::Microsoft.AspNetCore.Builder; -global using global::Microsoft.AspNetCore.Hosting; -global using global::Microsoft.AspNetCore.Http; -global using global::Microsoft.AspNetCore.Routing; -global using global::Microsoft.Extensions.Configuration; -global using global::Microsoft.Extensions.DependencyInjection; -global using global::Microsoft.Extensions.Hosting; -global using global::Microsoft.Extensions.Logging; -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Net.Http.Json; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs deleted file mode 100644 index f9ccf61..0000000 --- a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs +++ /dev/null @@ -1,18 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.assets.cache b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.assets.cache deleted file mode 100644 index 89ea28a..0000000 Binary files a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.assets.cache and /dev/null differ diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache deleted file mode 100644 index 9eb28d2..0000000 Binary files a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache deleted file mode 100644 index bb22dd8..0000000 --- a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -d2c66b872f9ea349bf3bd50c7469732831ceaa46 diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt deleted file mode 100644 index 857b234..0000000 --- a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,532 +0,0 @@ -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\appsettings.Development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\appsettings.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SelfService.Portal.Core.API.deps.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\AutoMapper.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Azure.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Azure.Identity.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Humanizer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.Authentication.Negotiate.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.Connections.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.Razor.Language.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Build.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Build.Framework.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.AnalyzerUtilities.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.CSharp.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.Elfie.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.Razor.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.Scripting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.DiaSymReader.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.DotNet.Scaffolding.Shared.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.EntityFrameworkCore.Design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Extensions.DependencyModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Extensions.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Identity.Client.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.Logging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.Tokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.NET.StringTools.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SqlServer.Server.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\dotnet-aspnet-codegenerator-design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Mono.TextTemplating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Newtonsoft.Json.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Newtonsoft.Json.Bson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Configuration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.DependencyResolver.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Frameworks.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.LibraryModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Packaging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.ProjectModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Protocol.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Versioning.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.CodeDom.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Composition.AttributedModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Composition.Convention.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Composition.Hosting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Composition.Runtime.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Composition.TypedParts.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Configuration.ConfigurationManager.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.IdentityModel.Tokens.Jwt.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Memory.Data.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Reflection.MetadataLoadContext.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Security.Permissions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\af\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ar\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\az\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\bg\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\bn-BD\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\da\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\el\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fa\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fi-FI\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr-BE\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\he\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\hr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\hu\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\hy\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\id\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\is\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko-KR\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ku\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\lv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ms-MY\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\mt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\nb\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\nb-NO\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\nl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ro\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\sk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\sl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\sr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\sr-Latn\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\sv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\th-TH\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\uk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\uz-Cyrl-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\uz-Latn-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\vi\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-CN\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets\msbuild.Microsoft.SelfService.Portal.Core.API.Microsoft.AspNetCore.StaticWebAssets.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets\msbuild.build.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets\msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets\msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets.pack.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets.build.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets.development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\scopedcss\bundle\Microsoft.SelfService.Portal.Core.API.styles.css -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\refint\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\ref\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\appsettings.Development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\appsettings.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SelfService.Portal.Core.API.deps.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\AutoMapper.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Azure.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Azure.Identity.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Humanizer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.Authentication.Negotiate.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.Connections.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.AspNetCore.Razor.Language.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Build.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Build.Framework.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.AnalyzerUtilities.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.CSharp.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.Elfie.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.Razor.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.Scripting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.DiaSymReader.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.DotNet.Scaffolding.Shared.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.EntityFrameworkCore.Design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Extensions.DependencyModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Extensions.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Identity.Client.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.Logging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.IdentityModel.Tokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.NET.StringTools.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.SqlServer.Server.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\dotnet-aspnet-codegenerator-design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Mono.TextTemplating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Newtonsoft.Json.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Newtonsoft.Json.Bson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Configuration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.DependencyResolver.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Frameworks.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.LibraryModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Packaging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.ProjectModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Protocol.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\NuGet.Versioning.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.CodeDom.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Composition.AttributedModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Composition.Convention.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Composition.Hosting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Composition.Runtime.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Composition.TypedParts.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Configuration.ConfigurationManager.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.IdentityModel.Tokens.Jwt.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Memory.Data.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Reflection.MetadataLoadContext.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Security.Permissions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\af\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ar\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\az\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\bg\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\bn-BD\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\da\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\el\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fa\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fi-FI\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr-BE\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\he\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\hr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\hu\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\hy\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\id\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\is\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko-KR\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ku\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\lv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ms-MY\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\mt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\nb\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\nb-NO\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\nl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ro\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\sk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\sl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\sr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\sr-Latn\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\sv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\th-TH\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\uk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\uz-Cyrl-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\uz-Latn-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\vi\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-CN\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets\msbuild.Microsoft.SelfService.Portal.Core.API.Microsoft.AspNetCore.StaticWebAssets.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets\msbuild.build.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets\msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets\msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets.pack.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets.build.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\staticwebassets.development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\scopedcss\bundle\Microsoft.SelfService.Portal.Core.API.styles.css -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\refint\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\ref\Microsoft.SelfService.Portal.Core.API.dll diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json deleted file mode 100644 index f476891..0000000 --- a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.deps.json +++ /dev/null @@ -1,4334 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v7.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v7.0": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "dependencies": { - "AutoMapper": "12.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", - "Microsoft.AspNetCore.Authentication.Negotiate": "7.0.9", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "7.0.9", - "Microsoft.AspNetCore.OpenApi": "7.0.9", - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.EntityFrameworkCore.SqlServer": "7.0.9", - "Microsoft.EntityFrameworkCore.Tools": "7.0.9", - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "7.0.8", - "Swashbuckle.AspNetCore": "6.5.0" - }, - "runtime": { - "Microsoft.SelfService.Portal.Core.API.dll": {} - } - }, - "AutoMapper/12.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "dependencies": { - "AutoMapper": "12.0.1", - "Microsoft.Extensions.Options": "7.0.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "Azure.Core/1.24.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/net5.0/Azure.Core.dll": { - "assemblyVersion": "1.24.0.0", - "fileVersion": "1.2400.22.20404" - } - } - }, - "Azure.Identity/1.6.0": { - "dependencies": { - "Azure.Core": "1.24.0", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", - "System.Memory": "4.5.5", - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "assemblyVersion": "1.6.0.0", - "fileVersion": "1.600.22.20503" - } - } - }, - "Humanizer/2.14.1": { - "dependencies": { - "Humanizer.Core.af": "2.14.1", - "Humanizer.Core.ar": "2.14.1", - "Humanizer.Core.az": "2.14.1", - "Humanizer.Core.bg": "2.14.1", - "Humanizer.Core.bn-BD": "2.14.1", - "Humanizer.Core.cs": "2.14.1", - "Humanizer.Core.da": "2.14.1", - "Humanizer.Core.de": "2.14.1", - "Humanizer.Core.el": "2.14.1", - "Humanizer.Core.es": "2.14.1", - "Humanizer.Core.fa": "2.14.1", - "Humanizer.Core.fi-FI": "2.14.1", - "Humanizer.Core.fr": "2.14.1", - "Humanizer.Core.fr-BE": "2.14.1", - "Humanizer.Core.he": "2.14.1", - "Humanizer.Core.hr": "2.14.1", - "Humanizer.Core.hu": "2.14.1", - "Humanizer.Core.hy": "2.14.1", - "Humanizer.Core.id": "2.14.1", - "Humanizer.Core.is": "2.14.1", - "Humanizer.Core.it": "2.14.1", - "Humanizer.Core.ja": "2.14.1", - "Humanizer.Core.ko-KR": "2.14.1", - "Humanizer.Core.ku": "2.14.1", - "Humanizer.Core.lv": "2.14.1", - "Humanizer.Core.ms-MY": "2.14.1", - "Humanizer.Core.mt": "2.14.1", - "Humanizer.Core.nb": "2.14.1", - "Humanizer.Core.nb-NO": "2.14.1", - "Humanizer.Core.nl": "2.14.1", - "Humanizer.Core.pl": "2.14.1", - "Humanizer.Core.pt": "2.14.1", - "Humanizer.Core.ro": "2.14.1", - "Humanizer.Core.ru": "2.14.1", - "Humanizer.Core.sk": "2.14.1", - "Humanizer.Core.sl": "2.14.1", - "Humanizer.Core.sr": "2.14.1", - "Humanizer.Core.sr-Latn": "2.14.1", - "Humanizer.Core.sv": "2.14.1", - "Humanizer.Core.th-TH": "2.14.1", - "Humanizer.Core.tr": "2.14.1", - "Humanizer.Core.uk": "2.14.1", - "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", - "Humanizer.Core.uz-Latn-UZ": "2.14.1", - "Humanizer.Core.vi": "2.14.1", - "Humanizer.Core.zh-CN": "2.14.1", - "Humanizer.Core.zh-Hans": "2.14.1", - "Humanizer.Core.zh-Hant": "2.14.1" - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "Humanizer.Core.af/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/af/Humanizer.resources.dll": { - "locale": "af" - } - } - }, - "Humanizer.Core.ar/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ar/Humanizer.resources.dll": { - "locale": "ar" - } - } - }, - "Humanizer.Core.az/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/az/Humanizer.resources.dll": { - "locale": "az" - } - } - }, - "Humanizer.Core.bg/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bg/Humanizer.resources.dll": { - "locale": "bg" - } - } - }, - "Humanizer.Core.bn-BD/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bn-BD/Humanizer.resources.dll": { - "locale": "bn-BD" - } - } - }, - "Humanizer.Core.cs/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/cs/Humanizer.resources.dll": { - "locale": "cs" - } - } - }, - "Humanizer.Core.da/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/da/Humanizer.resources.dll": { - "locale": "da" - } - } - }, - "Humanizer.Core.de/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/de/Humanizer.resources.dll": { - "locale": "de" - } - } - }, - "Humanizer.Core.el/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/el/Humanizer.resources.dll": { - "locale": "el" - } - } - }, - "Humanizer.Core.es/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/es/Humanizer.resources.dll": { - "locale": "es" - } - } - }, - "Humanizer.Core.fa/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fa/Humanizer.resources.dll": { - "locale": "fa" - } - } - }, - "Humanizer.Core.fi-FI/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fi-FI/Humanizer.resources.dll": { - "locale": "fi-FI" - } - } - }, - "Humanizer.Core.fr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr/Humanizer.resources.dll": { - "locale": "fr" - } - } - }, - "Humanizer.Core.fr-BE/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr-BE/Humanizer.resources.dll": { - "locale": "fr-BE" - } - } - }, - "Humanizer.Core.he/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/he/Humanizer.resources.dll": { - "locale": "he" - } - } - }, - "Humanizer.Core.hr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hr/Humanizer.resources.dll": { - "locale": "hr" - } - } - }, - "Humanizer.Core.hu/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hu/Humanizer.resources.dll": { - "locale": "hu" - } - } - }, - "Humanizer.Core.hy/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hy/Humanizer.resources.dll": { - "locale": "hy" - } - } - }, - "Humanizer.Core.id/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/id/Humanizer.resources.dll": { - "locale": "id" - } - } - }, - "Humanizer.Core.is/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/is/Humanizer.resources.dll": { - "locale": "is" - } - } - }, - "Humanizer.Core.it/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/it/Humanizer.resources.dll": { - "locale": "it" - } - } - }, - "Humanizer.Core.ja/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ja/Humanizer.resources.dll": { - "locale": "ja" - } - } - }, - "Humanizer.Core.ko-KR/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { - "locale": "ko-KR" - } - } - }, - "Humanizer.Core.ku/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ku/Humanizer.resources.dll": { - "locale": "ku" - } - } - }, - "Humanizer.Core.lv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/lv/Humanizer.resources.dll": { - "locale": "lv" - } - } - }, - "Humanizer.Core.ms-MY/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { - "locale": "ms-MY" - } - } - }, - "Humanizer.Core.mt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/mt/Humanizer.resources.dll": { - "locale": "mt" - } - } - }, - "Humanizer.Core.nb/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb/Humanizer.resources.dll": { - "locale": "nb" - } - } - }, - "Humanizer.Core.nb-NO/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb-NO/Humanizer.resources.dll": { - "locale": "nb-NO" - } - } - }, - "Humanizer.Core.nl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nl/Humanizer.resources.dll": { - "locale": "nl" - } - } - }, - "Humanizer.Core.pl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pl/Humanizer.resources.dll": { - "locale": "pl" - } - } - }, - "Humanizer.Core.pt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pt/Humanizer.resources.dll": { - "locale": "pt" - } - } - }, - "Humanizer.Core.ro/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ro/Humanizer.resources.dll": { - "locale": "ro" - } - } - }, - "Humanizer.Core.ru/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ru/Humanizer.resources.dll": { - "locale": "ru" - } - } - }, - "Humanizer.Core.sk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sk/Humanizer.resources.dll": { - "locale": "sk" - } - } - }, - "Humanizer.Core.sl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sl/Humanizer.resources.dll": { - "locale": "sl" - } - } - }, - "Humanizer.Core.sr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr/Humanizer.resources.dll": { - "locale": "sr" - } - } - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr-Latn/Humanizer.resources.dll": { - "locale": "sr-Latn" - } - } - }, - "Humanizer.Core.sv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sv/Humanizer.resources.dll": { - "locale": "sv" - } - } - }, - "Humanizer.Core.th-TH/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { - "locale": "th-TH" - } - } - }, - "Humanizer.Core.tr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/tr/Humanizer.resources.dll": { - "locale": "tr" - } - } - }, - "Humanizer.Core.uk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uk/Humanizer.resources.dll": { - "locale": "uk" - } - } - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { - "locale": "uz-Cyrl-UZ" - } - } - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { - "locale": "uz-Latn-UZ" - } - } - }, - "Humanizer.Core.vi/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/vi/Humanizer.resources.dll": { - "locale": "vi" - } - } - }, - "Humanizer.Core.zh-CN/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-CN/Humanizer.resources.dll": { - "locale": "zh-CN" - } - } - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hans/Humanizer.resources.dll": { - "locale": "zh-Hans" - } - } - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hant/Humanizer.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "System.DirectoryServices.Protocols": "7.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "dependencies": { - "Microsoft.Extensions.Features": "7.0.9", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.9", - "Newtonsoft.Json": "13.0.1", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Build/17.3.2": { - "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "System.Collections.Immutable": "6.0.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Reflection.Metadata": "6.0.0", - "System.Reflection.MetadataLoadContext": "6.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Dataflow": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.Build.Framework/17.3.2": { - "dependencies": { - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.Framework.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "assemblyVersion": "3.3.2.30504", - "fileVersion": "3.3.2.30504" - } - } - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "6.0.0", - "System.Memory": "4.5.5", - "System.Reflection.Metadata": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Features": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Data.DataSetExtensions": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.16" - } - } - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Elfie": "1.0.0", - "Microsoft.CodeAnalysis.Scripting.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0", - "Microsoft.DiaSymReader": "1.4.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "System.Composition": "6.0.0", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.SqlClient/5.0.2": { - "dependencies": { - "Azure.Identity": "1.6.0", - "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", - "Microsoft.SqlServer.Server": "1.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Caching": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - }, - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "5.0.1.0" - } - } - }, - "Microsoft.DiaSymReader/1.4.0": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.400.22.11101" - } - } - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "dependencies": { - "Humanizer": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Features": "4.4.0", - "Newtonsoft.Json": "13.0.1", - "NuGet.ProjectModel": "6.3.1" - }, - "runtime": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9", - "Microsoft.EntityFrameworkCore.Analyzers": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": {}, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Mono.TextTemplating": "2.2.1" - } - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "dependencies": { - "Microsoft.Data.SqlClient": "5.0.2", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "7.0.9" - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {}, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - } - }, - "Microsoft.Extensions.Features/7.0.9": { - "runtime": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.Extensions.Logging/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": {}, - "Microsoft.Extensions.Options/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Primitives/7.0.0": {}, - "Microsoft.Identity.Client/4.45.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.45.0.0", - "fileVersion": "4.45.0.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "dependencies": { - "Microsoft.Identity.Client": "4.45.0", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "2.19.3.0", - "fileVersion": "2.19.3.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.21.0", - "System.IdentityModel.Tokens.Jwt": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "6.21.0", - "System.Security.Cryptography.Cng": "5.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.NET.StringTools/17.3.2": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.NET.StringTools.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.OpenApi/1.4.3": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.4.3.0", - "fileVersion": "1.4.3.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "7.0.8" - }, - "runtime": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Razor": "6.0.11", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "dependencies": { - "Microsoft.Build": "17.3.2", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "dependencies": { - "System.CodeDom": "4.4.0" - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "dependencies": { - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.22727" - } - } - }, - "NuGet.Common/6.3.1": { - "dependencies": { - "NuGet.Frameworks": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Common.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Configuration/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "dependencies": { - "NuGet.Configuration": "6.3.1", - "NuGet.LibraryModel": "6.3.1", - "NuGet.Protocol": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Frameworks/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.LibraryModel/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "NuGet.Versioning": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Packaging/6.3.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "NuGet.Configuration": "6.3.1", - "NuGet.Versioning": "6.3.1", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Pkcs": "5.0.0" - }, - "runtime": { - "lib/net5.0/NuGet.Packaging.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.ProjectModel/6.3.1": { - "dependencies": { - "NuGet.DependencyResolver.Core": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Protocol/6.3.1": { - "dependencies": { - "NuGet.Packaging": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.Protocol.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Versioning/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "Swashbuckle.AspNetCore/6.5.0": { - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" - } - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.5.1": {}, - "System.CodeDom/4.4.0": {}, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Composition/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - } - }, - "System.Composition.AttributedModel/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Convention/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Hosting/6.0.0": { - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Runtime/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.TypedParts/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Data.DataSetExtensions/4.5.0": {}, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": {}, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.DirectoryServices.Protocols/7.0.1": { - "runtime": { - "lib/net7.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - }, - "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - }, - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Formats.Asn1/5.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Pipelines/7.0.0": {}, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Memory/4.5.5": {}, - "System.Memory.Data/1.0.2": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "assemblyVersion": "1.0.2.0", - "fileVersion": "1.0.221.20802" - } - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - } - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0", - "System.Reflection.Metadata": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/5.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Encodings.Web/7.0.0": {}, - "System.Text.Json/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Dataflow/6.0.0": {}, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Windows.Extensions/6.0.0": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - } - } - }, - "libraries": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==", - "path": "automapper/12.0.1", - "hashPath": "automapper.12.0.1.nupkg.sha512" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==", - "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1", - "hashPath": "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512" - }, - "Azure.Core/1.24.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==", - "path": "azure.core/1.24.0", - "hashPath": "azure.core.1.24.0.nupkg.sha512" - }, - "Azure.Identity/1.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==", - "path": "azure.identity/1.6.0", - "hashPath": "azure.identity.1.6.0.nupkg.sha512" - }, - "Humanizer/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", - "path": "humanizer/2.14.1", - "hashPath": "humanizer.2.14.1.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.af/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", - "path": "humanizer.core.af/2.14.1", - "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ar/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", - "path": "humanizer.core.ar/2.14.1", - "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.az/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", - "path": "humanizer.core.az/2.14.1", - "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bg/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", - "path": "humanizer.core.bg/2.14.1", - "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bn-BD/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", - "path": "humanizer.core.bn-bd/2.14.1", - "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.cs/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", - "path": "humanizer.core.cs/2.14.1", - "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.da/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", - "path": "humanizer.core.da/2.14.1", - "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.de/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", - "path": "humanizer.core.de/2.14.1", - "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.el/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", - "path": "humanizer.core.el/2.14.1", - "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.es/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", - "path": "humanizer.core.es/2.14.1", - "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fa/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", - "path": "humanizer.core.fa/2.14.1", - "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fi-FI/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", - "path": "humanizer.core.fi-fi/2.14.1", - "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", - "path": "humanizer.core.fr/2.14.1", - "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr-BE/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", - "path": "humanizer.core.fr-be/2.14.1", - "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.he/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", - "path": "humanizer.core.he/2.14.1", - "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", - "path": "humanizer.core.hr/2.14.1", - "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hu/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", - "path": "humanizer.core.hu/2.14.1", - "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hy/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", - "path": "humanizer.core.hy/2.14.1", - "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.id/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", - "path": "humanizer.core.id/2.14.1", - "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.is/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", - "path": "humanizer.core.is/2.14.1", - "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.it/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", - "path": "humanizer.core.it/2.14.1", - "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ja/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", - "path": "humanizer.core.ja/2.14.1", - "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ko-KR/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", - "path": "humanizer.core.ko-kr/2.14.1", - "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ku/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", - "path": "humanizer.core.ku/2.14.1", - "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.lv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", - "path": "humanizer.core.lv/2.14.1", - "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ms-MY/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", - "path": "humanizer.core.ms-my/2.14.1", - "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.mt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", - "path": "humanizer.core.mt/2.14.1", - "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", - "path": "humanizer.core.nb/2.14.1", - "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb-NO/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", - "path": "humanizer.core.nb-no/2.14.1", - "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", - "path": "humanizer.core.nl/2.14.1", - "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", - "path": "humanizer.core.pl/2.14.1", - "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", - "path": "humanizer.core.pt/2.14.1", - "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ro/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", - "path": "humanizer.core.ro/2.14.1", - "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ru/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", - "path": "humanizer.core.ru/2.14.1", - "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", - "path": "humanizer.core.sk/2.14.1", - "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", - "path": "humanizer.core.sl/2.14.1", - "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", - "path": "humanizer.core.sr/2.14.1", - "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", - "path": "humanizer.core.sr-latn/2.14.1", - "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", - "path": "humanizer.core.sv/2.14.1", - "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.th-TH/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", - "path": "humanizer.core.th-th/2.14.1", - "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.tr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", - "path": "humanizer.core.tr/2.14.1", - "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", - "path": "humanizer.core.uk/2.14.1", - "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", - "path": "humanizer.core.uz-cyrl-uz/2.14.1", - "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", - "path": "humanizer.core.uz-latn-uz/2.14.1", - "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.vi/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", - "path": "humanizer.core.vi/2.14.1", - "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-CN/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", - "path": "humanizer.core.zh-cn/2.14.1", - "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", - "path": "humanizer.core.zh-hans/2.14.1", - "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", - "path": "humanizer.core.zh-hant/2.14.1", - "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Sh+zGJAgG5MwQcHATWrKsFn4IY5psaX2c1QtKwSNPlEuTjZIZe3aVjEWMHT/ou2jkQ12S2kjOzaW5nMeg/cBA==", - "path": "microsoft.aspnetcore.authentication.negotiate/7.0.9", - "hashPath": "microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/A7MkuL0g4r/oNuASR2gIukWoG2360/tuS9RoiU1dOwTlMYthHJaK8NEpswMihcImCDryiHp5dJCPTZHIs9TQ==", - "path": "microsoft.aspnetcore.connections.abstractions/7.0.9", - "hashPath": "microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6iMRtYIQZj7gMC7iVotL9bZjCjnbV2ZkAAduKYHfV6v+WQhEjk0iEGSFNVh6N9rTCNTeZ2xVgv3xi675GwyDzQ==", - "path": "microsoft.aspnetcore.jsonpatch/7.0.9", - "hashPath": "microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dhAFLGV3RfK6BAbLYpTKcVch1hcyP2qDWNy7Pk2wGrQEO/yWbWwiR9c13hk5kGWcPMGeVMkcuftUo6OAHe2yIA==", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.9", - "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5kBnHntQTJqmYV66Khdl9OJ/j2Pw8cOKj8kNQuLCpfCsPbSijp334Vaad3vaGnG9Wpgq/VbSUSRxZOoroOe8zQ==", - "path": "microsoft.aspnetcore.openapi/7.0.9", - "hashPath": "microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SPjSZIL7JFI5XbVfRMPG/fHLr/xfumSrmN+IOimyIf71WQQ8u2hpaE5+VvpcgjJ5VrJMhfDEhdEAB+Nj/S16dQ==", - "path": "microsoft.aspnetcore.razor.language/6.0.11", - "hashPath": "microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Build/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k5+7CfF/aM/hykfnrF93VhbUnhGfpJkGaD+ce8VlhLnOqDyts7WV+8Up3YCP6qmXMZFeeH/Cp23w2wSliP0mBw==", - "path": "microsoft.build/17.3.2", - "hashPath": "microsoft.build.17.3.2.nupkg.sha512" - }, - "Microsoft.Build.Framework/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==", - "path": "microsoft.build.framework/17.3.2", - "hashPath": "microsoft.build.framework.17.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", - "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", - "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JfHupS/B7Jb5MZoYkFFABn3mux0wQgxi2D8F/rJYZeRBK2ZOyk7TjQ2Kq9rh6W/DCh0KNbbSbn5qoFar+ueHqw==", - "path": "microsoft.codeanalysis.common/4.4.0", - "hashPath": "microsoft.codeanalysis.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eD2w0xHRoaqK07hjlOKGR9eLNy3nimiGNeCClNax1NDgS/+DBtBqCjXelOa+TNy99kIB3nHhUqDmr46nDXy/RQ==", - "path": "microsoft.codeanalysis.csharp/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Un4XeiWD8Xo4A/Q6Wrkrt9UCas6EaP/ZfQAHXNjde5ULkvliWzvy0/ZlXzlPo6L/Xoon1BWOFMprIQWCjuLq9A==", - "path": "microsoft.codeanalysis.csharp.features/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ADmI2jcwJP9GgBsVx2l0Bo0v3Hn4hHBg1uJ5zHd230mkO8rUJBLZu2h3tCbpwJMkpAIRtrxuZDD5uNfiyz0Q5Q==", - "path": "microsoft.codeanalysis.csharp.workspaces/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", - "path": "microsoft.codeanalysis.elfie/1.0.0", - "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0LEXWpaDlZMl5lOnM872FuBmcDD99qKp4QmmFsMpJjnq7f21KuNchdyuSdh9pdpibl2JfdMWrvA56y5dKc6EPQ==", - "path": "microsoft.codeanalysis.features/4.4.0", - "hashPath": "microsoft.codeanalysis.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-40M7AHKPKvOw3LnWsaKmHitk0taBZ8982zoZBQstYzsfdH+tcIdeOewRHvuej23T7HV6d8se9MZdKC9O2I78vQ==", - "path": "microsoft.codeanalysis.razor/6.0.11", - "hashPath": "microsoft.codeanalysis.razor.6.0.11.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RkAwCFJ8LfN7TfbWDejm50nucPxVoG/vDh0qVIoGx1U2FZhaBct72U4lGIACLuYsa0dIlC7Y0ivBemfDHnqWmA==", - "path": "microsoft.codeanalysis.scripting.common/4.4.0", - "hashPath": "microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6KzmmTIUU7qInQldcSPaW0nkrO71zlFPhoiabFBhkokEit49rLx4Kr/G3agBchYzirScrXibqgTRQkvx9WcJTw==", - "path": "microsoft.codeanalysis.workspaces.common/4.4.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/5.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mxcYU9I5TLzUegLVXiTtOE89RXN3GafL1Y+ExIbXvivvQtxplI4wxOgsiZGO4TZC18OJqui7mLVmiYpdFFImRQ==", - "path": "microsoft.data.sqlclient/5.0.2", - "hashPath": "microsoft.data.sqlclient.5.0.2.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==", - "path": "microsoft.data.sqlclient.sni.runtime/5.0.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512" - }, - "Microsoft.DiaSymReader/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLtWq5/W5ePzSraavAFeXAbasE6REDByizTz6M8yQO3e4jf+6pRqPLdNCSvnSfKRVqsF7y/lTVWhqlf89ttweg==", - "path": "microsoft.diasymreader/1.4.0", - "hashPath": "microsoft.diasymreader.1.4.0.nupkg.sha512" - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QXtyFZWYAwlKymbFCQT5O21BJ7hLmQcJGB/EdvUV0VuJyeWJMf/8JSI+ijw3IoOd7MUTBpGVNNE8UDM9gUm4Qw==", - "path": "microsoft.dotnet.scaffolding.shared/7.0.8", - "hashPath": "microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9YuCdQWuRAmYYHqwW1h5ukKMC1fmNvcVHdp3gb8zdHxwSQz7hkGpYOBEjm6dRXRmGRkpUyHL8rwUz4kd53Ev0A==", - "path": "microsoft.entityframeworkcore/7.0.9", - "hashPath": "microsoft.entityframeworkcore.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cfY6Fn7cnP/5pXndL8QYaey/B2nGn1fwze5aSaMJymmbqwqYzFiszHuWbsdVBCDYJc8ok7eB1m/nCc3/rltulQ==", - "path": "microsoft.entityframeworkcore.abstractions/7.0.9", - "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VvqFD3DdML6LhPCAR/lG2xNX66juylC8v57yUAAYnUSdEUOMRi3lNoT4OrNdG0rere3UOQPhvVl5FH2QdyoF8Q==", - "path": "microsoft.entityframeworkcore.analyzers/7.0.9", - "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tWsa+spzKZAwHrUP6vYM1LLh0P89UMcldEjerFPPZb0LcI/ONQmh7ldK4Q8TeRuIiuXxYgRYPElSgxwLp14oug==", - "path": "microsoft.entityframeworkcore.design/7.0.9", - "hashPath": "microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u7iN6cNd6SJUlpdk24JVIbkji/UbkEEQ7pXncTyT4eXXj+Hz2y4NSZFOAywPGcioIgX1YzbKWDiJhk7hjSFxBQ==", - "path": "microsoft.entityframeworkcore.relational/7.0.9", - "hashPath": "microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-19S5BWZBcaShhLWzePi9iOq+meKIgL+dDlS0NQgPOQapu3wb3So3ZL0xgPmmlyq3GLYvXiCmQsK3Yv3vXYaMTg==", - "path": "microsoft.entityframeworkcore.sqlserver/7.0.9", - "hashPath": "microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GWOSIe8ltR/mqv2wpRvMhy6ULapdKhZXXpXSGWzG1fRxhYXjSGpe2Pqhxqo46o9RDGlk0WJUXrwyU+N4voPxMw==", - "path": "microsoft.entityframeworkcore.tools/7.0.9", - "hashPath": "microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", - "path": "microsoft.extensions.apidescription.server/6.0.5", - "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", - "path": "microsoft.extensions.caching.abstractions/7.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", - "path": "microsoft.extensions.caching.memory/7.0.0", - "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", - "path": "microsoft.extensions.configuration.abstractions/7.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", - "path": "microsoft.extensions.dependencyinjection/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", - "path": "microsoft.extensions.dependencymodel/7.0.0", - "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Features/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IJ2vdDt2OYCKyJ7ZJPIZKa4b0M0tsG36h0QUt1d/E8IMAnjIncI+1i9Am0nmheD/wpcVd9eDykiV4dklcwUd3Q==", - "path": "microsoft.extensions.features/7.0.9", - "hashPath": "microsoft.extensions.features.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", - "path": "microsoft.extensions.logging/7.0.0", - "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", - "path": "microsoft.extensions.logging.abstractions/7.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", - "path": "microsoft.extensions.options/7.0.0", - "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", - "path": "microsoft.extensions.primitives/7.0.0", - "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.45.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==", - "path": "microsoft.identity.client/4.45.0", - "hashPath": "microsoft.identity.client.4.45.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", - "path": "microsoft.identity.client.extensions.msal/2.19.3", - "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==", - "path": "microsoft.identitymodel.abstractions/6.21.0", - "hashPath": "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==", - "path": "microsoft.identitymodel.jsonwebtokens/6.21.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==", - "path": "microsoft.identitymodel.logging/6.21.0", - "hashPath": "microsoft.identitymodel.logging.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==", - "path": "microsoft.identitymodel.protocols/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==", - "path": "microsoft.identitymodel.tokens/6.21.0", - "hashPath": "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512" - }, - "Microsoft.NET.StringTools/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==", - "path": "microsoft.net.stringtools/17.3.2", - "hashPath": "microsoft.net.stringtools.17.3.2.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.OpenApi/1.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", - "path": "microsoft.openapi/1.4.3", - "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AbrSIuBwG/7+7JBMOSyHVYqcz8YdUdArGIx4Asckm/U8FWKdT6NSJmObZh3X2Da2/W176FqG3MPTPtw/P0kJag==", - "path": "microsoft.visualstudio.web.codegeneration/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wdud/mzEfFMHqPNBb+N+jVeI2INNSP5WlCrPepQqvoLqiZwM0wUvf7yWGrVbNHBMOjDk3lIavqjXNkY9PriOQg==", - "path": "microsoft.visualstudio.web.codegeneration.core/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-56UeN0J8SA5PJjvf6Mv0ZbhLWO6Cr+YGM5eOsNejpQDL+ba8pt8BR7SBMTnSrZIOEeOhY3nAPUkOUK3bh+v3Tg==", - "path": "microsoft.visualstudio.web.codegeneration.design/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlyRk0pmpvPCzCot0bY+Lt6bctGC4dqrQxk1vk2ep+wTdH/CZ8FflnWHEKGBpd+kMrwy93UbJZ8HSAxlBLksLA==", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JTepVMzR2XOr6BVgejMltlzi3O6LMpNb3dz0VKczsjKKX/l6ZT1iTUC6FjuHs9SNTc8rTlEK7hw2TIKpGy1tCQ==", - "path": "microsoft.visualstudio.web.codegeneration.templating/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5T6uK9MH6zWXXyVinlvmbz7fFiuA5/UIFa1wAWD6ylkReDlPTEOq5AMwlkdlEPZuqMgICH4N3BQAizY/EIAlzA==", - "path": "microsoft.visualstudio.web.codegeneration.utils/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xQIJfP4NpuAnFykWuXW5nr+1WyPLNVbMhqFS7SKX6CIm32Ak9iCMFS1NSbksl5bfIXaSg1rjJM8TpZYoKM+Ffg==", - "path": "microsoft.visualstudio.web.codegenerators.mvc/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "path": "mono.texttemplating/2.2.1", - "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "path": "newtonsoft.json.bson/1.0.2", - "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" - }, - "NuGet.Common/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==", - "path": "nuget.common/6.3.1", - "hashPath": "nuget.common.6.3.1.nupkg.sha512" - }, - "NuGet.Configuration/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==", - "path": "nuget.configuration/6.3.1", - "hashPath": "nuget.configuration.6.3.1.nupkg.sha512" - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wSr4XMNE5f82ZveuATVwj+kS1/dWyXARjOZcS70Aiaj+XEWL8uo4EFTwPIvqPHWCem5cxmavBRuWBwlQ4HWjeA==", - "path": "nuget.dependencyresolver.core/6.3.1", - "hashPath": "nuget.dependencyresolver.core.6.3.1.nupkg.sha512" - }, - "NuGet.Frameworks/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==", - "path": "nuget.frameworks/6.3.1", - "hashPath": "nuget.frameworks.6.3.1.nupkg.sha512" - }, - "NuGet.LibraryModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aEB4AesZ+ddLVTBbewQFNHagbVbwewobBk2+8mk0THWjn0qIUH2l4kLTMmiTD7DOthVB6pYds8bz1B8Z0rEPrQ==", - "path": "nuget.librarymodel/6.3.1", - "hashPath": "nuget.librarymodel.6.3.1.nupkg.sha512" - }, - "NuGet.Packaging/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==", - "path": "nuget.packaging/6.3.1", - "hashPath": "nuget.packaging.6.3.1.nupkg.sha512" - }, - "NuGet.ProjectModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TtC4zUKnMIkJBtM7P1GtvVK2jCh4Xi8SVK+bEsCUSoZ0rJf7Zqw2oBrmMNWe51IlfOcYkREmn6xif9mgJXOnmQ==", - "path": "nuget.projectmodel/6.3.1", - "hashPath": "nuget.projectmodel.6.3.1.nupkg.sha512" - }, - "NuGet.Protocol/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==", - "path": "nuget.protocol/6.3.1", - "hashPath": "nuget.protocol.6.3.1.nupkg.sha512" - }, - "NuGet.Versioning/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==", - "path": "nuget.versioning/6.3.1", - "hashPath": "nuget.versioning.6.3.1.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", - "path": "swashbuckle.aspnetcore/6.5.0", - "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", - "path": "swashbuckle.aspnetcore.swagger/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", - "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", - "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.CodeDom/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "path": "system.codedom/4.4.0", - "hashPath": "system.codedom.4.4.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", - "path": "system.composition/6.0.0", - "hashPath": "system.composition.6.0.0.nupkg.sha512" - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", - "path": "system.composition.attributedmodel/6.0.0", - "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", - "path": "system.composition.convention/6.0.0", - "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", - "path": "system.composition.hosting/6.0.0", - "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", - "path": "system.composition.runtime/6.0.0", - "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", - "path": "system.composition.typedparts/6.0.0", - "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", - "path": "system.data.datasetextensions/4.5.0", - "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/7.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", - "path": "system.directoryservices.protocols/7.0.1", - "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Formats.Asn1/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", - "path": "system.formats.asn1/5.0.0", - "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==", - "path": "system.identitymodel.tokens.jwt/6.21.0", - "hashPath": "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Pipelines/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", - "path": "system.io.pipelines/7.0.0", - "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "path": "system.memory.data/1.0.2", - "hashPath": "system.memory.data.1.0.2.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sffDOcex1C3HO5kDolOYcWXTwRpZY/LvJujM6SMjn63fWMJWchYAAmkoAJXlbpZ5yf4d+KMgxd+LeETa4gD9sQ==", - "path": "system.reflection.metadata/6.0.0", - "hashPath": "system.reflection.metadata.6.0.0.nupkg.sha512" - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SuK8qTHbmG3PToLo1TEq8YSfY31FiKhASBmjozUTAleDgiX4H2X4jm0VPFb+K2soSSmYPyHTpHp35TctfNtDzQ==", - "path": "system.reflection.metadataloadcontext/6.0.0", - "hashPath": "system.reflection.metadataloadcontext.6.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", - "path": "system.runtime.caching/5.0.0", - "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "path": "system.security.cryptography.cng/5.0.0", - "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", - "path": "system.security.cryptography.pkcs/5.0.0", - "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" - }, - "System.Text.Json/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", - "path": "system.text.json/7.0.0", - "hashPath": "system.text.json.7.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Dataflow/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+tyDCU3/B1lDdOOAJywHQoFwyXIUghIaP2BxG79uvhfTnO+D9qIgjVlL/JV2NTliYbMHpd6eKDmHp2VHpij7MA==", - "path": "system.threading.tasks.dataflow/6.0.0", - "hashPath": "system.threading.tasks.dataflow.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.dll b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 005b791..0000000 Binary files a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache deleted file mode 100644 index d42c8b9..0000000 --- a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -2876b42b3dee651357d32f75d2ad2e3d9a04e85e diff --git a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.pdb b/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.pdb deleted file mode 100644 index f7aebb9..0000000 Binary files a/obj/Release/net7.0/Microsoft.SelfService.Portal.Core.API.pdb and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Microsoft.SelfService.Portal.Core.API.Parameters.xml b/obj/Release/net7.0/PubTmp/Microsoft.SelfService.Portal.Core.API.Parameters.xml deleted file mode 100644 index b18e8c1..0000000 --- a/obj/Release/net7.0/PubTmp/Microsoft.SelfService.Portal.Core.API.Parameters.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/obj/Release/net7.0/PubTmp/Microsoft.SelfService.Portal.Core.API.SourceManifest.xml b/obj/Release/net7.0/PubTmp/Microsoft.SelfService.Portal.Core.API.SourceManifest.xml deleted file mode 100644 index 4ea536f..0000000 --- a/obj/Release/net7.0/PubTmp/Microsoft.SelfService.Portal.Core.API.SourceManifest.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/obj/Release/net7.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/obj/Release/net7.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll deleted file mode 100644 index 8df3ce1..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/AutoMapper.dll b/obj/Release/net7.0/PubTmp/Out/AutoMapper.dll deleted file mode 100644 index b33d3d0..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/AutoMapper.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Azure.Core.dll b/obj/Release/net7.0/PubTmp/Out/Azure.Core.dll deleted file mode 100644 index aa966ba..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Azure.Core.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Azure.Identity.dll b/obj/Release/net7.0/PubTmp/Out/Azure.Identity.dll deleted file mode 100644 index eaab465..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Azure.Identity.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Humanizer.dll b/obj/Release/net7.0/PubTmp/Out/Humanizer.dll deleted file mode 100644 index c9a7ef8..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Humanizer.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Authentication.Negotiate.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Authentication.Negotiate.dll deleted file mode 100644 index 76937c0..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Authentication.Negotiate.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll deleted file mode 100644 index d2d6643..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll deleted file mode 100644 index 67976a4..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll deleted file mode 100644 index 9185e39..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.OpenApi.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.OpenApi.dll deleted file mode 100644 index 48f95b5..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.OpenApi.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Razor.Language.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Razor.Language.dll deleted file mode 100644 index e0b7296..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.AspNetCore.Razor.Language.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.Build.Framework.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.Build.Framework.dll deleted file mode 100644 index dcebf91..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.Build.Framework.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.Build.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.Build.dll deleted file mode 100644 index b9d1fa9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.Build.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.AnalyzerUtilities.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.AnalyzerUtilities.dll deleted file mode 100644 index e070bd5..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.AnalyzerUtilities.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Features.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Features.dll deleted file mode 100644 index fad30cf..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Features.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll deleted file mode 100644 index eb2748f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index 6506b81..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Elfie.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Elfie.dll deleted file mode 100644 index b131340..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Elfie.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Features.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Features.dll deleted file mode 100644 index 70ccdf7..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Features.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Razor.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Razor.dll deleted file mode 100644 index f21b880..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Razor.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Scripting.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Scripting.dll deleted file mode 100644 index 9da1e74..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Scripting.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll deleted file mode 100644 index ab9a24c..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.dll deleted file mode 100644 index f35e108..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.Data.SqlClient.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.Data.SqlClient.dll deleted file mode 100644 index bd9b405..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.DiaSymReader.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.DiaSymReader.dll deleted file mode 100644 index 7a3a497..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.DiaSymReader.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.DotNet.Scaffolding.Shared.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.DotNet.Scaffolding.Shared.dll deleted file mode 100644 index 0d69a80..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.DotNet.Scaffolding.Shared.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index bbe5da9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index 5732007..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.dll deleted file mode 100644 index 21a03f8..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index c8a8af4..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.Extensions.Features.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.Extensions.Features.dll deleted file mode 100644 index d6c80bf..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.Extensions.Features.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.Identity.Client.Extensions.Msal.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.Identity.Client.Extensions.Msal.dll deleted file mode 100644 index 04be9fc..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.Identity.Client.Extensions.Msal.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.Identity.Client.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.Identity.Client.dll deleted file mode 100644 index 112dd74..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.Identity.Client.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Abstractions.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index 6a0300a..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 80565a9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index c6427c7..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll deleted file mode 100644 index 73cb93e..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll deleted file mode 100644 index df4b6d0..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 9d9fcdd..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.NET.StringTools.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.NET.StringTools.dll deleted file mode 100644 index 9f42478..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.NET.StringTools.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.OpenApi.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.OpenApi.dll deleted file mode 100644 index 1e0998d..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.OpenApi.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.deps.json b/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.deps.json deleted file mode 100644 index f476891..0000000 --- a/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.deps.json +++ /dev/null @@ -1,4334 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v7.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v7.0": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "dependencies": { - "AutoMapper": "12.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", - "Microsoft.AspNetCore.Authentication.Negotiate": "7.0.9", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "7.0.9", - "Microsoft.AspNetCore.OpenApi": "7.0.9", - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.EntityFrameworkCore.SqlServer": "7.0.9", - "Microsoft.EntityFrameworkCore.Tools": "7.0.9", - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "7.0.8", - "Swashbuckle.AspNetCore": "6.5.0" - }, - "runtime": { - "Microsoft.SelfService.Portal.Core.API.dll": {} - } - }, - "AutoMapper/12.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "dependencies": { - "AutoMapper": "12.0.1", - "Microsoft.Extensions.Options": "7.0.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "Azure.Core/1.24.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/net5.0/Azure.Core.dll": { - "assemblyVersion": "1.24.0.0", - "fileVersion": "1.2400.22.20404" - } - } - }, - "Azure.Identity/1.6.0": { - "dependencies": { - "Azure.Core": "1.24.0", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", - "System.Memory": "4.5.5", - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "assemblyVersion": "1.6.0.0", - "fileVersion": "1.600.22.20503" - } - } - }, - "Humanizer/2.14.1": { - "dependencies": { - "Humanizer.Core.af": "2.14.1", - "Humanizer.Core.ar": "2.14.1", - "Humanizer.Core.az": "2.14.1", - "Humanizer.Core.bg": "2.14.1", - "Humanizer.Core.bn-BD": "2.14.1", - "Humanizer.Core.cs": "2.14.1", - "Humanizer.Core.da": "2.14.1", - "Humanizer.Core.de": "2.14.1", - "Humanizer.Core.el": "2.14.1", - "Humanizer.Core.es": "2.14.1", - "Humanizer.Core.fa": "2.14.1", - "Humanizer.Core.fi-FI": "2.14.1", - "Humanizer.Core.fr": "2.14.1", - "Humanizer.Core.fr-BE": "2.14.1", - "Humanizer.Core.he": "2.14.1", - "Humanizer.Core.hr": "2.14.1", - "Humanizer.Core.hu": "2.14.1", - "Humanizer.Core.hy": "2.14.1", - "Humanizer.Core.id": "2.14.1", - "Humanizer.Core.is": "2.14.1", - "Humanizer.Core.it": "2.14.1", - "Humanizer.Core.ja": "2.14.1", - "Humanizer.Core.ko-KR": "2.14.1", - "Humanizer.Core.ku": "2.14.1", - "Humanizer.Core.lv": "2.14.1", - "Humanizer.Core.ms-MY": "2.14.1", - "Humanizer.Core.mt": "2.14.1", - "Humanizer.Core.nb": "2.14.1", - "Humanizer.Core.nb-NO": "2.14.1", - "Humanizer.Core.nl": "2.14.1", - "Humanizer.Core.pl": "2.14.1", - "Humanizer.Core.pt": "2.14.1", - "Humanizer.Core.ro": "2.14.1", - "Humanizer.Core.ru": "2.14.1", - "Humanizer.Core.sk": "2.14.1", - "Humanizer.Core.sl": "2.14.1", - "Humanizer.Core.sr": "2.14.1", - "Humanizer.Core.sr-Latn": "2.14.1", - "Humanizer.Core.sv": "2.14.1", - "Humanizer.Core.th-TH": "2.14.1", - "Humanizer.Core.tr": "2.14.1", - "Humanizer.Core.uk": "2.14.1", - "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", - "Humanizer.Core.uz-Latn-UZ": "2.14.1", - "Humanizer.Core.vi": "2.14.1", - "Humanizer.Core.zh-CN": "2.14.1", - "Humanizer.Core.zh-Hans": "2.14.1", - "Humanizer.Core.zh-Hant": "2.14.1" - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "Humanizer.Core.af/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/af/Humanizer.resources.dll": { - "locale": "af" - } - } - }, - "Humanizer.Core.ar/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ar/Humanizer.resources.dll": { - "locale": "ar" - } - } - }, - "Humanizer.Core.az/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/az/Humanizer.resources.dll": { - "locale": "az" - } - } - }, - "Humanizer.Core.bg/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bg/Humanizer.resources.dll": { - "locale": "bg" - } - } - }, - "Humanizer.Core.bn-BD/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bn-BD/Humanizer.resources.dll": { - "locale": "bn-BD" - } - } - }, - "Humanizer.Core.cs/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/cs/Humanizer.resources.dll": { - "locale": "cs" - } - } - }, - "Humanizer.Core.da/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/da/Humanizer.resources.dll": { - "locale": "da" - } - } - }, - "Humanizer.Core.de/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/de/Humanizer.resources.dll": { - "locale": "de" - } - } - }, - "Humanizer.Core.el/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/el/Humanizer.resources.dll": { - "locale": "el" - } - } - }, - "Humanizer.Core.es/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/es/Humanizer.resources.dll": { - "locale": "es" - } - } - }, - "Humanizer.Core.fa/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fa/Humanizer.resources.dll": { - "locale": "fa" - } - } - }, - "Humanizer.Core.fi-FI/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fi-FI/Humanizer.resources.dll": { - "locale": "fi-FI" - } - } - }, - "Humanizer.Core.fr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr/Humanizer.resources.dll": { - "locale": "fr" - } - } - }, - "Humanizer.Core.fr-BE/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr-BE/Humanizer.resources.dll": { - "locale": "fr-BE" - } - } - }, - "Humanizer.Core.he/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/he/Humanizer.resources.dll": { - "locale": "he" - } - } - }, - "Humanizer.Core.hr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hr/Humanizer.resources.dll": { - "locale": "hr" - } - } - }, - "Humanizer.Core.hu/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hu/Humanizer.resources.dll": { - "locale": "hu" - } - } - }, - "Humanizer.Core.hy/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hy/Humanizer.resources.dll": { - "locale": "hy" - } - } - }, - "Humanizer.Core.id/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/id/Humanizer.resources.dll": { - "locale": "id" - } - } - }, - "Humanizer.Core.is/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/is/Humanizer.resources.dll": { - "locale": "is" - } - } - }, - "Humanizer.Core.it/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/it/Humanizer.resources.dll": { - "locale": "it" - } - } - }, - "Humanizer.Core.ja/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ja/Humanizer.resources.dll": { - "locale": "ja" - } - } - }, - "Humanizer.Core.ko-KR/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { - "locale": "ko-KR" - } - } - }, - "Humanizer.Core.ku/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ku/Humanizer.resources.dll": { - "locale": "ku" - } - } - }, - "Humanizer.Core.lv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/lv/Humanizer.resources.dll": { - "locale": "lv" - } - } - }, - "Humanizer.Core.ms-MY/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { - "locale": "ms-MY" - } - } - }, - "Humanizer.Core.mt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/mt/Humanizer.resources.dll": { - "locale": "mt" - } - } - }, - "Humanizer.Core.nb/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb/Humanizer.resources.dll": { - "locale": "nb" - } - } - }, - "Humanizer.Core.nb-NO/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb-NO/Humanizer.resources.dll": { - "locale": "nb-NO" - } - } - }, - "Humanizer.Core.nl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nl/Humanizer.resources.dll": { - "locale": "nl" - } - } - }, - "Humanizer.Core.pl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pl/Humanizer.resources.dll": { - "locale": "pl" - } - } - }, - "Humanizer.Core.pt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pt/Humanizer.resources.dll": { - "locale": "pt" - } - } - }, - "Humanizer.Core.ro/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ro/Humanizer.resources.dll": { - "locale": "ro" - } - } - }, - "Humanizer.Core.ru/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ru/Humanizer.resources.dll": { - "locale": "ru" - } - } - }, - "Humanizer.Core.sk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sk/Humanizer.resources.dll": { - "locale": "sk" - } - } - }, - "Humanizer.Core.sl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sl/Humanizer.resources.dll": { - "locale": "sl" - } - } - }, - "Humanizer.Core.sr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr/Humanizer.resources.dll": { - "locale": "sr" - } - } - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr-Latn/Humanizer.resources.dll": { - "locale": "sr-Latn" - } - } - }, - "Humanizer.Core.sv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sv/Humanizer.resources.dll": { - "locale": "sv" - } - } - }, - "Humanizer.Core.th-TH/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { - "locale": "th-TH" - } - } - }, - "Humanizer.Core.tr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/tr/Humanizer.resources.dll": { - "locale": "tr" - } - } - }, - "Humanizer.Core.uk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uk/Humanizer.resources.dll": { - "locale": "uk" - } - } - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { - "locale": "uz-Cyrl-UZ" - } - } - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { - "locale": "uz-Latn-UZ" - } - } - }, - "Humanizer.Core.vi/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/vi/Humanizer.resources.dll": { - "locale": "vi" - } - } - }, - "Humanizer.Core.zh-CN/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-CN/Humanizer.resources.dll": { - "locale": "zh-CN" - } - } - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hans/Humanizer.resources.dll": { - "locale": "zh-Hans" - } - } - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hant/Humanizer.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "System.DirectoryServices.Protocols": "7.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "dependencies": { - "Microsoft.Extensions.Features": "7.0.9", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.9", - "Newtonsoft.Json": "13.0.1", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Build/17.3.2": { - "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "System.Collections.Immutable": "6.0.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Reflection.Metadata": "6.0.0", - "System.Reflection.MetadataLoadContext": "6.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Dataflow": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.Build.Framework/17.3.2": { - "dependencies": { - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.Framework.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "assemblyVersion": "3.3.2.30504", - "fileVersion": "3.3.2.30504" - } - } - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "6.0.0", - "System.Memory": "4.5.5", - "System.Reflection.Metadata": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Features": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Data.DataSetExtensions": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.16" - } - } - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Elfie": "1.0.0", - "Microsoft.CodeAnalysis.Scripting.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0", - "Microsoft.DiaSymReader": "1.4.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "System.Composition": "6.0.0", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.SqlClient/5.0.2": { - "dependencies": { - "Azure.Identity": "1.6.0", - "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", - "Microsoft.SqlServer.Server": "1.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Caching": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - }, - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "5.0.1.0" - } - } - }, - "Microsoft.DiaSymReader/1.4.0": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.400.22.11101" - } - } - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "dependencies": { - "Humanizer": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Features": "4.4.0", - "Newtonsoft.Json": "13.0.1", - "NuGet.ProjectModel": "6.3.1" - }, - "runtime": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9", - "Microsoft.EntityFrameworkCore.Analyzers": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": {}, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Mono.TextTemplating": "2.2.1" - } - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "dependencies": { - "Microsoft.Data.SqlClient": "5.0.2", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "7.0.9" - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {}, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - } - }, - "Microsoft.Extensions.Features/7.0.9": { - "runtime": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.Extensions.Logging/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": {}, - "Microsoft.Extensions.Options/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Primitives/7.0.0": {}, - "Microsoft.Identity.Client/4.45.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.45.0.0", - "fileVersion": "4.45.0.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "dependencies": { - "Microsoft.Identity.Client": "4.45.0", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "2.19.3.0", - "fileVersion": "2.19.3.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.21.0", - "System.IdentityModel.Tokens.Jwt": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "6.21.0", - "System.Security.Cryptography.Cng": "5.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.NET.StringTools/17.3.2": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.NET.StringTools.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.OpenApi/1.4.3": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.4.3.0", - "fileVersion": "1.4.3.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "7.0.8" - }, - "runtime": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Razor": "6.0.11", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "dependencies": { - "Microsoft.Build": "17.3.2", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "dependencies": { - "System.CodeDom": "4.4.0" - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "dependencies": { - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.22727" - } - } - }, - "NuGet.Common/6.3.1": { - "dependencies": { - "NuGet.Frameworks": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Common.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Configuration/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "dependencies": { - "NuGet.Configuration": "6.3.1", - "NuGet.LibraryModel": "6.3.1", - "NuGet.Protocol": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Frameworks/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.LibraryModel/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "NuGet.Versioning": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Packaging/6.3.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "NuGet.Configuration": "6.3.1", - "NuGet.Versioning": "6.3.1", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Pkcs": "5.0.0" - }, - "runtime": { - "lib/net5.0/NuGet.Packaging.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.ProjectModel/6.3.1": { - "dependencies": { - "NuGet.DependencyResolver.Core": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Protocol/6.3.1": { - "dependencies": { - "NuGet.Packaging": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.Protocol.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Versioning/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "Swashbuckle.AspNetCore/6.5.0": { - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" - } - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.5.1": {}, - "System.CodeDom/4.4.0": {}, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Composition/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - } - }, - "System.Composition.AttributedModel/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Convention/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Hosting/6.0.0": { - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Runtime/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.TypedParts/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Data.DataSetExtensions/4.5.0": {}, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": {}, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.DirectoryServices.Protocols/7.0.1": { - "runtime": { - "lib/net7.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - }, - "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - }, - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Formats.Asn1/5.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Pipelines/7.0.0": {}, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Memory/4.5.5": {}, - "System.Memory.Data/1.0.2": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "assemblyVersion": "1.0.2.0", - "fileVersion": "1.0.221.20802" - } - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - } - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0", - "System.Reflection.Metadata": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/5.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Encodings.Web/7.0.0": {}, - "System.Text.Json/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Dataflow/6.0.0": {}, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Windows.Extensions/6.0.0": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - } - } - }, - "libraries": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==", - "path": "automapper/12.0.1", - "hashPath": "automapper.12.0.1.nupkg.sha512" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==", - "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1", - "hashPath": "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512" - }, - "Azure.Core/1.24.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==", - "path": "azure.core/1.24.0", - "hashPath": "azure.core.1.24.0.nupkg.sha512" - }, - "Azure.Identity/1.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==", - "path": "azure.identity/1.6.0", - "hashPath": "azure.identity.1.6.0.nupkg.sha512" - }, - "Humanizer/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", - "path": "humanizer/2.14.1", - "hashPath": "humanizer.2.14.1.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.af/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", - "path": "humanizer.core.af/2.14.1", - "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ar/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", - "path": "humanizer.core.ar/2.14.1", - "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.az/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", - "path": "humanizer.core.az/2.14.1", - "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bg/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", - "path": "humanizer.core.bg/2.14.1", - "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bn-BD/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", - "path": "humanizer.core.bn-bd/2.14.1", - "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.cs/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", - "path": "humanizer.core.cs/2.14.1", - "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.da/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", - "path": "humanizer.core.da/2.14.1", - "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.de/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", - "path": "humanizer.core.de/2.14.1", - "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.el/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", - "path": "humanizer.core.el/2.14.1", - "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.es/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", - "path": "humanizer.core.es/2.14.1", - "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fa/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", - "path": "humanizer.core.fa/2.14.1", - "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fi-FI/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", - "path": "humanizer.core.fi-fi/2.14.1", - "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", - "path": "humanizer.core.fr/2.14.1", - "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr-BE/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", - "path": "humanizer.core.fr-be/2.14.1", - "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.he/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", - "path": "humanizer.core.he/2.14.1", - "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", - "path": "humanizer.core.hr/2.14.1", - "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hu/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", - "path": "humanizer.core.hu/2.14.1", - "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hy/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", - "path": "humanizer.core.hy/2.14.1", - "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.id/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", - "path": "humanizer.core.id/2.14.1", - "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.is/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", - "path": "humanizer.core.is/2.14.1", - "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.it/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", - "path": "humanizer.core.it/2.14.1", - "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ja/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", - "path": "humanizer.core.ja/2.14.1", - "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ko-KR/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", - "path": "humanizer.core.ko-kr/2.14.1", - "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ku/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", - "path": "humanizer.core.ku/2.14.1", - "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.lv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", - "path": "humanizer.core.lv/2.14.1", - "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ms-MY/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", - "path": "humanizer.core.ms-my/2.14.1", - "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.mt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", - "path": "humanizer.core.mt/2.14.1", - "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", - "path": "humanizer.core.nb/2.14.1", - "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb-NO/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", - "path": "humanizer.core.nb-no/2.14.1", - "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", - "path": "humanizer.core.nl/2.14.1", - "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", - "path": "humanizer.core.pl/2.14.1", - "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", - "path": "humanizer.core.pt/2.14.1", - "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ro/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", - "path": "humanizer.core.ro/2.14.1", - "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ru/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", - "path": "humanizer.core.ru/2.14.1", - "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", - "path": "humanizer.core.sk/2.14.1", - "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", - "path": "humanizer.core.sl/2.14.1", - "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", - "path": "humanizer.core.sr/2.14.1", - "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", - "path": "humanizer.core.sr-latn/2.14.1", - "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", - "path": "humanizer.core.sv/2.14.1", - "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.th-TH/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", - "path": "humanizer.core.th-th/2.14.1", - "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.tr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", - "path": "humanizer.core.tr/2.14.1", - "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", - "path": "humanizer.core.uk/2.14.1", - "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", - "path": "humanizer.core.uz-cyrl-uz/2.14.1", - "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", - "path": "humanizer.core.uz-latn-uz/2.14.1", - "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.vi/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", - "path": "humanizer.core.vi/2.14.1", - "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-CN/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", - "path": "humanizer.core.zh-cn/2.14.1", - "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", - "path": "humanizer.core.zh-hans/2.14.1", - "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", - "path": "humanizer.core.zh-hant/2.14.1", - "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Sh+zGJAgG5MwQcHATWrKsFn4IY5psaX2c1QtKwSNPlEuTjZIZe3aVjEWMHT/ou2jkQ12S2kjOzaW5nMeg/cBA==", - "path": "microsoft.aspnetcore.authentication.negotiate/7.0.9", - "hashPath": "microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/A7MkuL0g4r/oNuASR2gIukWoG2360/tuS9RoiU1dOwTlMYthHJaK8NEpswMihcImCDryiHp5dJCPTZHIs9TQ==", - "path": "microsoft.aspnetcore.connections.abstractions/7.0.9", - "hashPath": "microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6iMRtYIQZj7gMC7iVotL9bZjCjnbV2ZkAAduKYHfV6v+WQhEjk0iEGSFNVh6N9rTCNTeZ2xVgv3xi675GwyDzQ==", - "path": "microsoft.aspnetcore.jsonpatch/7.0.9", - "hashPath": "microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dhAFLGV3RfK6BAbLYpTKcVch1hcyP2qDWNy7Pk2wGrQEO/yWbWwiR9c13hk5kGWcPMGeVMkcuftUo6OAHe2yIA==", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.9", - "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5kBnHntQTJqmYV66Khdl9OJ/j2Pw8cOKj8kNQuLCpfCsPbSijp334Vaad3vaGnG9Wpgq/VbSUSRxZOoroOe8zQ==", - "path": "microsoft.aspnetcore.openapi/7.0.9", - "hashPath": "microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SPjSZIL7JFI5XbVfRMPG/fHLr/xfumSrmN+IOimyIf71WQQ8u2hpaE5+VvpcgjJ5VrJMhfDEhdEAB+Nj/S16dQ==", - "path": "microsoft.aspnetcore.razor.language/6.0.11", - "hashPath": "microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Build/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k5+7CfF/aM/hykfnrF93VhbUnhGfpJkGaD+ce8VlhLnOqDyts7WV+8Up3YCP6qmXMZFeeH/Cp23w2wSliP0mBw==", - "path": "microsoft.build/17.3.2", - "hashPath": "microsoft.build.17.3.2.nupkg.sha512" - }, - "Microsoft.Build.Framework/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==", - "path": "microsoft.build.framework/17.3.2", - "hashPath": "microsoft.build.framework.17.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", - "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", - "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JfHupS/B7Jb5MZoYkFFABn3mux0wQgxi2D8F/rJYZeRBK2ZOyk7TjQ2Kq9rh6W/DCh0KNbbSbn5qoFar+ueHqw==", - "path": "microsoft.codeanalysis.common/4.4.0", - "hashPath": "microsoft.codeanalysis.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eD2w0xHRoaqK07hjlOKGR9eLNy3nimiGNeCClNax1NDgS/+DBtBqCjXelOa+TNy99kIB3nHhUqDmr46nDXy/RQ==", - "path": "microsoft.codeanalysis.csharp/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Un4XeiWD8Xo4A/Q6Wrkrt9UCas6EaP/ZfQAHXNjde5ULkvliWzvy0/ZlXzlPo6L/Xoon1BWOFMprIQWCjuLq9A==", - "path": "microsoft.codeanalysis.csharp.features/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ADmI2jcwJP9GgBsVx2l0Bo0v3Hn4hHBg1uJ5zHd230mkO8rUJBLZu2h3tCbpwJMkpAIRtrxuZDD5uNfiyz0Q5Q==", - "path": "microsoft.codeanalysis.csharp.workspaces/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", - "path": "microsoft.codeanalysis.elfie/1.0.0", - "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0LEXWpaDlZMl5lOnM872FuBmcDD99qKp4QmmFsMpJjnq7f21KuNchdyuSdh9pdpibl2JfdMWrvA56y5dKc6EPQ==", - "path": "microsoft.codeanalysis.features/4.4.0", - "hashPath": "microsoft.codeanalysis.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-40M7AHKPKvOw3LnWsaKmHitk0taBZ8982zoZBQstYzsfdH+tcIdeOewRHvuej23T7HV6d8se9MZdKC9O2I78vQ==", - "path": "microsoft.codeanalysis.razor/6.0.11", - "hashPath": "microsoft.codeanalysis.razor.6.0.11.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RkAwCFJ8LfN7TfbWDejm50nucPxVoG/vDh0qVIoGx1U2FZhaBct72U4lGIACLuYsa0dIlC7Y0ivBemfDHnqWmA==", - "path": "microsoft.codeanalysis.scripting.common/4.4.0", - "hashPath": "microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6KzmmTIUU7qInQldcSPaW0nkrO71zlFPhoiabFBhkokEit49rLx4Kr/G3agBchYzirScrXibqgTRQkvx9WcJTw==", - "path": "microsoft.codeanalysis.workspaces.common/4.4.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/5.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mxcYU9I5TLzUegLVXiTtOE89RXN3GafL1Y+ExIbXvivvQtxplI4wxOgsiZGO4TZC18OJqui7mLVmiYpdFFImRQ==", - "path": "microsoft.data.sqlclient/5.0.2", - "hashPath": "microsoft.data.sqlclient.5.0.2.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==", - "path": "microsoft.data.sqlclient.sni.runtime/5.0.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512" - }, - "Microsoft.DiaSymReader/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLtWq5/W5ePzSraavAFeXAbasE6REDByizTz6M8yQO3e4jf+6pRqPLdNCSvnSfKRVqsF7y/lTVWhqlf89ttweg==", - "path": "microsoft.diasymreader/1.4.0", - "hashPath": "microsoft.diasymreader.1.4.0.nupkg.sha512" - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QXtyFZWYAwlKymbFCQT5O21BJ7hLmQcJGB/EdvUV0VuJyeWJMf/8JSI+ijw3IoOd7MUTBpGVNNE8UDM9gUm4Qw==", - "path": "microsoft.dotnet.scaffolding.shared/7.0.8", - "hashPath": "microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9YuCdQWuRAmYYHqwW1h5ukKMC1fmNvcVHdp3gb8zdHxwSQz7hkGpYOBEjm6dRXRmGRkpUyHL8rwUz4kd53Ev0A==", - "path": "microsoft.entityframeworkcore/7.0.9", - "hashPath": "microsoft.entityframeworkcore.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cfY6Fn7cnP/5pXndL8QYaey/B2nGn1fwze5aSaMJymmbqwqYzFiszHuWbsdVBCDYJc8ok7eB1m/nCc3/rltulQ==", - "path": "microsoft.entityframeworkcore.abstractions/7.0.9", - "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VvqFD3DdML6LhPCAR/lG2xNX66juylC8v57yUAAYnUSdEUOMRi3lNoT4OrNdG0rere3UOQPhvVl5FH2QdyoF8Q==", - "path": "microsoft.entityframeworkcore.analyzers/7.0.9", - "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tWsa+spzKZAwHrUP6vYM1LLh0P89UMcldEjerFPPZb0LcI/ONQmh7ldK4Q8TeRuIiuXxYgRYPElSgxwLp14oug==", - "path": "microsoft.entityframeworkcore.design/7.0.9", - "hashPath": "microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u7iN6cNd6SJUlpdk24JVIbkji/UbkEEQ7pXncTyT4eXXj+Hz2y4NSZFOAywPGcioIgX1YzbKWDiJhk7hjSFxBQ==", - "path": "microsoft.entityframeworkcore.relational/7.0.9", - "hashPath": "microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-19S5BWZBcaShhLWzePi9iOq+meKIgL+dDlS0NQgPOQapu3wb3So3ZL0xgPmmlyq3GLYvXiCmQsK3Yv3vXYaMTg==", - "path": "microsoft.entityframeworkcore.sqlserver/7.0.9", - "hashPath": "microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GWOSIe8ltR/mqv2wpRvMhy6ULapdKhZXXpXSGWzG1fRxhYXjSGpe2Pqhxqo46o9RDGlk0WJUXrwyU+N4voPxMw==", - "path": "microsoft.entityframeworkcore.tools/7.0.9", - "hashPath": "microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", - "path": "microsoft.extensions.apidescription.server/6.0.5", - "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", - "path": "microsoft.extensions.caching.abstractions/7.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", - "path": "microsoft.extensions.caching.memory/7.0.0", - "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", - "path": "microsoft.extensions.configuration.abstractions/7.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", - "path": "microsoft.extensions.dependencyinjection/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", - "path": "microsoft.extensions.dependencymodel/7.0.0", - "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Features/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IJ2vdDt2OYCKyJ7ZJPIZKa4b0M0tsG36h0QUt1d/E8IMAnjIncI+1i9Am0nmheD/wpcVd9eDykiV4dklcwUd3Q==", - "path": "microsoft.extensions.features/7.0.9", - "hashPath": "microsoft.extensions.features.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", - "path": "microsoft.extensions.logging/7.0.0", - "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", - "path": "microsoft.extensions.logging.abstractions/7.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", - "path": "microsoft.extensions.options/7.0.0", - "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", - "path": "microsoft.extensions.primitives/7.0.0", - "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.45.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==", - "path": "microsoft.identity.client/4.45.0", - "hashPath": "microsoft.identity.client.4.45.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", - "path": "microsoft.identity.client.extensions.msal/2.19.3", - "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==", - "path": "microsoft.identitymodel.abstractions/6.21.0", - "hashPath": "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==", - "path": "microsoft.identitymodel.jsonwebtokens/6.21.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==", - "path": "microsoft.identitymodel.logging/6.21.0", - "hashPath": "microsoft.identitymodel.logging.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==", - "path": "microsoft.identitymodel.protocols/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==", - "path": "microsoft.identitymodel.tokens/6.21.0", - "hashPath": "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512" - }, - "Microsoft.NET.StringTools/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==", - "path": "microsoft.net.stringtools/17.3.2", - "hashPath": "microsoft.net.stringtools.17.3.2.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.OpenApi/1.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", - "path": "microsoft.openapi/1.4.3", - "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AbrSIuBwG/7+7JBMOSyHVYqcz8YdUdArGIx4Asckm/U8FWKdT6NSJmObZh3X2Da2/W176FqG3MPTPtw/P0kJag==", - "path": "microsoft.visualstudio.web.codegeneration/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wdud/mzEfFMHqPNBb+N+jVeI2INNSP5WlCrPepQqvoLqiZwM0wUvf7yWGrVbNHBMOjDk3lIavqjXNkY9PriOQg==", - "path": "microsoft.visualstudio.web.codegeneration.core/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-56UeN0J8SA5PJjvf6Mv0ZbhLWO6Cr+YGM5eOsNejpQDL+ba8pt8BR7SBMTnSrZIOEeOhY3nAPUkOUK3bh+v3Tg==", - "path": "microsoft.visualstudio.web.codegeneration.design/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlyRk0pmpvPCzCot0bY+Lt6bctGC4dqrQxk1vk2ep+wTdH/CZ8FflnWHEKGBpd+kMrwy93UbJZ8HSAxlBLksLA==", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JTepVMzR2XOr6BVgejMltlzi3O6LMpNb3dz0VKczsjKKX/l6ZT1iTUC6FjuHs9SNTc8rTlEK7hw2TIKpGy1tCQ==", - "path": "microsoft.visualstudio.web.codegeneration.templating/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5T6uK9MH6zWXXyVinlvmbz7fFiuA5/UIFa1wAWD6ylkReDlPTEOq5AMwlkdlEPZuqMgICH4N3BQAizY/EIAlzA==", - "path": "microsoft.visualstudio.web.codegeneration.utils/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xQIJfP4NpuAnFykWuXW5nr+1WyPLNVbMhqFS7SKX6CIm32Ak9iCMFS1NSbksl5bfIXaSg1rjJM8TpZYoKM+Ffg==", - "path": "microsoft.visualstudio.web.codegenerators.mvc/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "path": "mono.texttemplating/2.2.1", - "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "path": "newtonsoft.json.bson/1.0.2", - "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" - }, - "NuGet.Common/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==", - "path": "nuget.common/6.3.1", - "hashPath": "nuget.common.6.3.1.nupkg.sha512" - }, - "NuGet.Configuration/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==", - "path": "nuget.configuration/6.3.1", - "hashPath": "nuget.configuration.6.3.1.nupkg.sha512" - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wSr4XMNE5f82ZveuATVwj+kS1/dWyXARjOZcS70Aiaj+XEWL8uo4EFTwPIvqPHWCem5cxmavBRuWBwlQ4HWjeA==", - "path": "nuget.dependencyresolver.core/6.3.1", - "hashPath": "nuget.dependencyresolver.core.6.3.1.nupkg.sha512" - }, - "NuGet.Frameworks/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==", - "path": "nuget.frameworks/6.3.1", - "hashPath": "nuget.frameworks.6.3.1.nupkg.sha512" - }, - "NuGet.LibraryModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aEB4AesZ+ddLVTBbewQFNHagbVbwewobBk2+8mk0THWjn0qIUH2l4kLTMmiTD7DOthVB6pYds8bz1B8Z0rEPrQ==", - "path": "nuget.librarymodel/6.3.1", - "hashPath": "nuget.librarymodel.6.3.1.nupkg.sha512" - }, - "NuGet.Packaging/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==", - "path": "nuget.packaging/6.3.1", - "hashPath": "nuget.packaging.6.3.1.nupkg.sha512" - }, - "NuGet.ProjectModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TtC4zUKnMIkJBtM7P1GtvVK2jCh4Xi8SVK+bEsCUSoZ0rJf7Zqw2oBrmMNWe51IlfOcYkREmn6xif9mgJXOnmQ==", - "path": "nuget.projectmodel/6.3.1", - "hashPath": "nuget.projectmodel.6.3.1.nupkg.sha512" - }, - "NuGet.Protocol/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==", - "path": "nuget.protocol/6.3.1", - "hashPath": "nuget.protocol.6.3.1.nupkg.sha512" - }, - "NuGet.Versioning/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==", - "path": "nuget.versioning/6.3.1", - "hashPath": "nuget.versioning.6.3.1.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", - "path": "swashbuckle.aspnetcore/6.5.0", - "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", - "path": "swashbuckle.aspnetcore.swagger/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", - "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", - "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.CodeDom/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "path": "system.codedom/4.4.0", - "hashPath": "system.codedom.4.4.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", - "path": "system.composition/6.0.0", - "hashPath": "system.composition.6.0.0.nupkg.sha512" - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", - "path": "system.composition.attributedmodel/6.0.0", - "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", - "path": "system.composition.convention/6.0.0", - "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", - "path": "system.composition.hosting/6.0.0", - "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", - "path": "system.composition.runtime/6.0.0", - "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", - "path": "system.composition.typedparts/6.0.0", - "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", - "path": "system.data.datasetextensions/4.5.0", - "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/7.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", - "path": "system.directoryservices.protocols/7.0.1", - "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Formats.Asn1/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", - "path": "system.formats.asn1/5.0.0", - "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==", - "path": "system.identitymodel.tokens.jwt/6.21.0", - "hashPath": "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Pipelines/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", - "path": "system.io.pipelines/7.0.0", - "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "path": "system.memory.data/1.0.2", - "hashPath": "system.memory.data.1.0.2.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sffDOcex1C3HO5kDolOYcWXTwRpZY/LvJujM6SMjn63fWMJWchYAAmkoAJXlbpZ5yf4d+KMgxd+LeETa4gD9sQ==", - "path": "system.reflection.metadata/6.0.0", - "hashPath": "system.reflection.metadata.6.0.0.nupkg.sha512" - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SuK8qTHbmG3PToLo1TEq8YSfY31FiKhASBmjozUTAleDgiX4H2X4jm0VPFb+K2soSSmYPyHTpHp35TctfNtDzQ==", - "path": "system.reflection.metadataloadcontext/6.0.0", - "hashPath": "system.reflection.metadataloadcontext.6.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", - "path": "system.runtime.caching/5.0.0", - "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "path": "system.security.cryptography.cng/5.0.0", - "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", - "path": "system.security.cryptography.pkcs/5.0.0", - "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" - }, - "System.Text.Json/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", - "path": "system.text.json/7.0.0", - "hashPath": "system.text.json.7.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Dataflow/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+tyDCU3/B1lDdOOAJywHQoFwyXIUghIaP2BxG79uvhfTnO+D9qIgjVlL/JV2NTliYbMHpd6eKDmHp2VHpij7MA==", - "path": "system.threading.tasks.dataflow/6.0.0", - "hashPath": "system.threading.tasks.dataflow.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 005b791..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.exe b/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.exe deleted file mode 100644 index 17fcb9f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.exe and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.pdb b/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.pdb deleted file mode 100644 index f7aebb9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.pdb and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json b/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json deleted file mode 100644 index 10d7259..0000000 --- a/obj/Release/net7.0/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net7.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "7.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "7.0.0" - } - ], - "configProperties": { - "System.GC.Server": true, - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.SqlServer.Server.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.SqlServer.Server.dll deleted file mode 100644 index ddeaa86..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.SqlServer.Server.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll deleted file mode 100644 index a5b93ee..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll deleted file mode 100644 index 534a126..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll deleted file mode 100644 index 99fe458..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll deleted file mode 100644 index 0391697..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.dll deleted file mode 100644 index a374651..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll deleted file mode 100644 index a1c3c0f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll b/obj/Release/net7.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 3ab5850..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Newtonsoft.Json.Bson.dll b/obj/Release/net7.0/PubTmp/Out/Newtonsoft.Json.Bson.dll deleted file mode 100644 index e9b1dd2..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Newtonsoft.Json.Bson.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Newtonsoft.Json.dll b/obj/Release/net7.0/PubTmp/Out/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Newtonsoft.Json.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/NuGet.Common.dll b/obj/Release/net7.0/PubTmp/Out/NuGet.Common.dll deleted file mode 100644 index ce4bda8..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/NuGet.Common.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/NuGet.Configuration.dll b/obj/Release/net7.0/PubTmp/Out/NuGet.Configuration.dll deleted file mode 100644 index cbe9417..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/NuGet.Configuration.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/NuGet.DependencyResolver.Core.dll b/obj/Release/net7.0/PubTmp/Out/NuGet.DependencyResolver.Core.dll deleted file mode 100644 index 908b3e6..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/NuGet.DependencyResolver.Core.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/NuGet.Frameworks.dll b/obj/Release/net7.0/PubTmp/Out/NuGet.Frameworks.dll deleted file mode 100644 index 4eacf6a..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/NuGet.Frameworks.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/NuGet.LibraryModel.dll b/obj/Release/net7.0/PubTmp/Out/NuGet.LibraryModel.dll deleted file mode 100644 index ba03b76..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/NuGet.LibraryModel.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/NuGet.Packaging.dll b/obj/Release/net7.0/PubTmp/Out/NuGet.Packaging.dll deleted file mode 100644 index a3ec988..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/NuGet.Packaging.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/NuGet.ProjectModel.dll b/obj/Release/net7.0/PubTmp/Out/NuGet.ProjectModel.dll deleted file mode 100644 index fe01820..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/NuGet.ProjectModel.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/NuGet.Protocol.dll b/obj/Release/net7.0/PubTmp/Out/NuGet.Protocol.dll deleted file mode 100644 index 6b3aa97..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/NuGet.Protocol.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/NuGet.Versioning.dll b/obj/Release/net7.0/PubTmp/Out/NuGet.Versioning.dll deleted file mode 100644 index 60cbd1e..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/NuGet.Versioning.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll b/obj/Release/net7.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll deleted file mode 100644 index fd052a3..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll b/obj/Release/net7.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll deleted file mode 100644 index 2ea00ee..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll b/obj/Release/net7.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll deleted file mode 100644 index 0571d0f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Composition.AttributedModel.dll b/obj/Release/net7.0/PubTmp/Out/System.Composition.AttributedModel.dll deleted file mode 100644 index d37283b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Composition.AttributedModel.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Composition.Convention.dll b/obj/Release/net7.0/PubTmp/Out/System.Composition.Convention.dll deleted file mode 100644 index b6fa4ab..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Composition.Convention.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Composition.Hosting.dll b/obj/Release/net7.0/PubTmp/Out/System.Composition.Hosting.dll deleted file mode 100644 index c67f1c0..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Composition.Hosting.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Composition.Runtime.dll b/obj/Release/net7.0/PubTmp/Out/System.Composition.Runtime.dll deleted file mode 100644 index 2a4b38c..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Composition.Runtime.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Composition.TypedParts.dll b/obj/Release/net7.0/PubTmp/Out/System.Composition.TypedParts.dll deleted file mode 100644 index 7c0c780..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Composition.TypedParts.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll b/obj/Release/net7.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index d67c8a8..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.DirectoryServices.Protocols.dll b/obj/Release/net7.0/PubTmp/Out/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 4d2da59..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Drawing.Common.dll b/obj/Release/net7.0/PubTmp/Out/System.Drawing.Common.dll deleted file mode 100644 index be6915e..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Drawing.Common.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll b/obj/Release/net7.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index 131456c..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Memory.Data.dll b/obj/Release/net7.0/PubTmp/Out/System.Memory.Data.dll deleted file mode 100644 index 6f2a3e0..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Memory.Data.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Reflection.MetadataLoadContext.dll b/obj/Release/net7.0/PubTmp/Out/System.Reflection.MetadataLoadContext.dll deleted file mode 100644 index e87fcda..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Reflection.MetadataLoadContext.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Runtime.Caching.dll b/obj/Release/net7.0/PubTmp/Out/System.Runtime.Caching.dll deleted file mode 100644 index 6a6eb85..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Runtime.Caching.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll b/obj/Release/net7.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 1ba8770..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Security.Permissions.dll b/obj/Release/net7.0/PubTmp/Out/System.Security.Permissions.dll deleted file mode 100644 index 39dd4df..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Security.Permissions.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/System.Windows.Extensions.dll b/obj/Release/net7.0/PubTmp/Out/System.Windows.Extensions.dll deleted file mode 100644 index c3e8844..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/System.Windows.Extensions.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/af/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/af/Humanizer.resources.dll deleted file mode 100644 index e191f5f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/af/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/appsettings.Development.json b/obj/Release/net7.0/PubTmp/Out/appsettings.Development.json deleted file mode 100644 index 0c208ae..0000000 --- a/obj/Release/net7.0/PubTmp/Out/appsettings.Development.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/obj/Release/net7.0/PubTmp/Out/appsettings.json b/obj/Release/net7.0/PubTmp/Out/appsettings.json deleted file mode 100644 index 005b7be..0000000 --- a/obj/Release/net7.0/PubTmp/Out/appsettings.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "Context": "Server=RZ1VCMSQL001\\MSSSP;Database=SSP;TrustServerCertificate=True;Encrypt=False;Integrated Security=SSPI" - } -} \ No newline at end of file diff --git a/obj/Release/net7.0/PubTmp/Out/ar/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/ar/Humanizer.resources.dll deleted file mode 100644 index 319af06..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ar/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/az/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/az/Humanizer.resources.dll deleted file mode 100644 index f51f16e..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/az/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/bg/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/bg/Humanizer.resources.dll deleted file mode 100644 index c6b47e9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/bg/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/bn-BD/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/bn-BD/Humanizer.resources.dll deleted file mode 100644 index dead005..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/bn-BD/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/cs/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/cs/Humanizer.resources.dll deleted file mode 100644 index 43094ae..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/cs/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 10a5b8f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 6e642b5..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 160cb79..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 3a0c7f5..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 9fda8a8..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 1c4018b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 1662edf..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/da/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/da/Humanizer.resources.dll deleted file mode 100644 index 25c518a..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/da/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/de/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/de/Humanizer.resources.dll deleted file mode 100644 index eca8773..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/de/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index b05c568..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 7d8f563..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d647fbf..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 8c7bda7..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 463b895..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d2b2ebe..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 41818f4..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/dotnet-aspnet-codegenerator-design.dll b/obj/Release/net7.0/PubTmp/Out/dotnet-aspnet-codegenerator-design.dll deleted file mode 100644 index e5d1b54..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/dotnet-aspnet-codegenerator-design.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/el/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/el/Humanizer.resources.dll deleted file mode 100644 index 7496654..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/el/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/es/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/es/Humanizer.resources.dll deleted file mode 100644 index a2ccea7..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/es/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 5a0e03d..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d91150f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2b1d73e..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 4ae1f61..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 58bac36..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 472b0bb..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 66145cb..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fa/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/fa/Humanizer.resources.dll deleted file mode 100644 index 71fb905..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fa/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fi-FI/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/fi-FI/Humanizer.resources.dll deleted file mode 100644 index 553a14d..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fi-FI/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fr-BE/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/fr-BE/Humanizer.resources.dll deleted file mode 100644 index d75e247..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fr-BE/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fr/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/fr/Humanizer.resources.dll deleted file mode 100644 index 5fb44a9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fr/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 401ea0b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index cc8b864..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index a98d0ec..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 4b77322..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index ada43a9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 474cc07..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e6c12b5..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/he/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/he/Humanizer.resources.dll deleted file mode 100644 index deb8b6e..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/he/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/hr/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/hr/Humanizer.resources.dll deleted file mode 100644 index 4d50733..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/hr/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/hu/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/hu/Humanizer.resources.dll deleted file mode 100644 index f93d556..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/hu/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/hy/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/hy/Humanizer.resources.dll deleted file mode 100644 index a61b5e6..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/hy/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/id/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/id/Humanizer.resources.dll deleted file mode 100644 index e605f23..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/id/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/is/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/is/Humanizer.resources.dll deleted file mode 100644 index 40e36d7..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/is/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/it/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/it/Humanizer.resources.dll deleted file mode 100644 index 9434487..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/it/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 2315e95..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 23f6463..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index dd024d9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 5f2ca6f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index c4b443b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 798de46..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index a354025..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ja/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/ja/Humanizer.resources.dll deleted file mode 100644 index f949d63..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ja/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 7a9c62e..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 70682db..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 0a8ac29..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index dd8dced..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 752d6b7..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d02270a..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8ee1273..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ko-KR/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/ko-KR/Humanizer.resources.dll deleted file mode 100644 index 6a5f6c7..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ko-KR/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 1c8a1a4..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 5101654..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 15249dd..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 45b5bfd..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 0d2793b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 32b471d..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 7881c82..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ku/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/ku/Humanizer.resources.dll deleted file mode 100644 index 606d2b9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ku/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/lv/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/lv/Humanizer.resources.dll deleted file mode 100644 index 463bf2d..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/lv/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ms-MY/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/ms-MY/Humanizer.resources.dll deleted file mode 100644 index 6494db8..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ms-MY/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/mt/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/mt/Humanizer.resources.dll deleted file mode 100644 index 7e056c7..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/mt/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/nb-NO/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/nb-NO/Humanizer.resources.dll deleted file mode 100644 index 4ff1965..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/nb-NO/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/nb/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/nb/Humanizer.resources.dll deleted file mode 100644 index 48d7d6e..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/nb/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/nl/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/nl/Humanizer.resources.dll deleted file mode 100644 index e1bca89..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/nl/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pl/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/pl/Humanizer.resources.dll deleted file mode 100644 index 1b81e27..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pl/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index b1648b9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ab1f415..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index f6565e0..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 1ea99f3..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 919a672..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d1b15d9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 03b64a3..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index d146dec..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d6ffabe..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index b179fd5..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 331d87c..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index a326d59..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 44a8a4a..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 186108a..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/pt/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/pt/Humanizer.resources.dll deleted file mode 100644 index 71daa56..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/pt/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ro/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/ro/Humanizer.resources.dll deleted file mode 100644 index 0aea9b9..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ro/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ru/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/ru/Humanizer.resources.dll deleted file mode 100644 index dd2f875..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ru/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index c32fb26..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ca6f13a..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4b1c65a..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 7f4fca5..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 8bcb19b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index ff641b1..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 55cd313..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index f535812..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 1b4c830..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/unix/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 9e26473..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 9bd0326..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index 6bc82a0..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index 927516f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index a00639b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index ffb6e3a..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 66af198..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 7c9e87b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 332dbfa..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index 69f0d1b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 951a113..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 59ebd7f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll deleted file mode 100644 index 432ebb4..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/sk/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/sk/Humanizer.resources.dll deleted file mode 100644 index 4c03f54..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/sk/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/sl/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/sl/Humanizer.resources.dll deleted file mode 100644 index b79bb3c..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/sl/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/sr-Latn/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/sr-Latn/Humanizer.resources.dll deleted file mode 100644 index e846785..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/sr-Latn/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/sr/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/sr/Humanizer.resources.dll deleted file mode 100644 index 7e36e26..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/sr/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/sv/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/sv/Humanizer.resources.dll deleted file mode 100644 index 70974a5..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/sv/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/th-TH/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/th-TH/Humanizer.resources.dll deleted file mode 100644 index 4dcc85d..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/th-TH/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/tr/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/tr/Humanizer.resources.dll deleted file mode 100644 index eff6ad8..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/tr/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 5eb7e9c..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index b870685..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d3514a4..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index f23a22f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 6df319d..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6110c60..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index edfdcf4..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/uk/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/uk/Humanizer.resources.dll deleted file mode 100644 index d4fb7a2..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/uk/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/uz-Cyrl-UZ/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/uz-Cyrl-UZ/Humanizer.resources.dll deleted file mode 100644 index c76160d..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/uz-Cyrl-UZ/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/uz-Latn-UZ/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/uz-Latn-UZ/Humanizer.resources.dll deleted file mode 100644 index da72030..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/uz-Latn-UZ/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/vi/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/vi/Humanizer.resources.dll deleted file mode 100644 index ff72d7e..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/vi/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/web.config b/obj/Release/net7.0/PubTmp/Out/web.config deleted file mode 100644 index a5a83fb..0000000 --- a/obj/Release/net7.0/PubTmp/Out/web.config +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/obj/Release/net7.0/PubTmp/Out/zh-CN/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-CN/Humanizer.resources.dll deleted file mode 100644 index a80799f..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-CN/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hans/Humanizer.resources.dll deleted file mode 100644 index c84c639..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 96afd23..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index a0877d2..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 1c4359b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 15bbfaf..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 2c11839..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6eaa45c..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 007dee6..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Humanizer.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hant/Humanizer.resources.dll deleted file mode 100644 index d0cb506..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index c2f0f0b..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 8b76c06..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index dfe8129..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 9e42195..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index ecb8019..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index bf9204d..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index f5308ff..0000000 Binary files a/obj/Release/net7.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/PublishOutputs.74a0732d2c.txt b/obj/Release/net7.0/PublishOutputs.74a0732d2c.txt deleted file mode 100644 index ac191fc..0000000 --- a/obj/Release/net7.0/PublishOutputs.74a0732d2c.txt +++ /dev/null @@ -1,241 +0,0 @@ -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\appsettings.Development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\appsettings.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\AutoMapper.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Azure.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Azure.Identity.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Humanizer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.Authentication.Negotiate.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.Connections.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.Razor.Language.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Build.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Build.Framework.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.AnalyzerUtilities.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.CSharp.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.Elfie.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.Razor.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.Scripting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.DiaSymReader.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.DotNet.Scaffolding.Shared.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Extensions.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Identity.Client.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.Logging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.Tokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.NET.StringTools.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SqlServer.Server.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\dotnet-aspnet-codegenerator-design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Newtonsoft.Json.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Newtonsoft.Json.Bson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Configuration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.DependencyResolver.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Frameworks.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.LibraryModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Packaging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.ProjectModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Protocol.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Versioning.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Composition.AttributedModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Composition.Convention.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Composition.Hosting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Composition.Runtime.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Composition.TypedParts.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Configuration.ConfigurationManager.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.IdentityModel.Tokens.Jwt.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Memory.Data.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Reflection.MetadataLoadContext.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Security.Permissions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\af\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ar\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\az\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\bg\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\bn-BD\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\da\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\el\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fa\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fi-FI\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr-BE\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\he\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\hr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\hu\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\hy\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\id\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\is\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko-KR\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ku\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\lv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ms-MY\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\mt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\nb\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\nb-NO\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\nl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ro\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\sk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\sl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\sr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\sr-Latn\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\sv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\th-TH\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\uk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\uz-Cyrl-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\uz-Latn-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\vi\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-CN\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.deps.json diff --git a/obj/Release/net7.0/PublishOutputs.e7e920f108.txt b/obj/Release/net7.0/PublishOutputs.e7e920f108.txt deleted file mode 100644 index e3b3a3c..0000000 --- a/obj/Release/net7.0/PublishOutputs.e7e920f108.txt +++ /dev/null @@ -1,241 +0,0 @@ -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\appsettings.Development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\appsettings.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\AutoMapper.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Azure.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Azure.Identity.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Humanizer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.Authentication.Negotiate.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.Connections.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.AspNetCore.Razor.Language.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Build.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Build.Framework.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.AnalyzerUtilities.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.CSharp.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.Elfie.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.Razor.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.Scripting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.DiaSymReader.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.DotNet.Scaffolding.Shared.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Extensions.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Identity.Client.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.Logging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.IdentityModel.Tokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.NET.StringTools.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SqlServer.Server.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\dotnet-aspnet-codegenerator-design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Newtonsoft.Json.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Newtonsoft.Json.Bson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Configuration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.DependencyResolver.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Frameworks.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.LibraryModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Packaging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.ProjectModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Protocol.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\NuGet.Versioning.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Composition.AttributedModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Composition.Convention.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Composition.Hosting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Composition.Runtime.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Composition.TypedParts.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Configuration.ConfigurationManager.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.IdentityModel.Tokens.Jwt.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Memory.Data.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Reflection.MetadataLoadContext.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Security.Permissions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\af\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ar\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\az\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\bg\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\bn-BD\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\da\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\el\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fa\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fi-FI\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr-BE\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\he\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\hr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\hu\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\hy\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\id\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\is\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko-KR\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ku\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\lv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ms-MY\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\mt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\nb\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\nb-NO\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\nl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ro\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\sk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\sl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\sr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\sr-Latn\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\sv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\th-TH\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\uk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\uz-Cyrl-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\uz-Latn-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\vi\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-CN\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.deps.json diff --git a/obj/Release/net7.0/apphost.exe b/obj/Release/net7.0/apphost.exe deleted file mode 100644 index 17fcb9f..0000000 Binary files a/obj/Release/net7.0/apphost.exe and /dev/null differ diff --git a/obj/Release/net7.0/ref/Microsoft.SelfService.Portal.Core.API.dll b/obj/Release/net7.0/ref/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index af95a0f..0000000 Binary files a/obj/Release/net7.0/ref/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Release/net7.0/refint/Microsoft.SelfService.Portal.Core.API.dll b/obj/Release/net7.0/refint/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index af95a0f..0000000 Binary files a/obj/Release/net7.0/refint/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Release/net7.0/staticwebassets.build.json b/obj/Release/net7.0/staticwebassets.build.json deleted file mode 100644 index c6d3b26..0000000 --- a/obj/Release/net7.0/staticwebassets.build.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "Version": 1, - "Hash": "RfuVwFSrmDL42KLW9n4tsmvdD4doyOaYg171K58Ic/s=", - "Source": "Microsoft.SelfService.Portal.Core.API", - "BasePath": "_content/Microsoft.SelfService.Portal.Core.API", - "Mode": "Default", - "ManifestType": "Build", - "ReferencedProjectsConfiguration": [], - "DiscoveryPatterns": [], - "Assets": [] -} \ No newline at end of file diff --git a/obj/Release/net7.0/staticwebassets.publish.json b/obj/Release/net7.0/staticwebassets.publish.json deleted file mode 100644 index ee4a5ad..0000000 --- a/obj/Release/net7.0/staticwebassets.publish.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "Version": 1, - "Hash": "EuzJJmKylrpbcZ1Inxr2GUPxGwlY8zXxEdAKl4qeBkk=", - "Source": "Microsoft.SelfService.Portal.Core.API", - "BasePath": "_content/Microsoft.SelfService.Portal.Core.API", - "Mode": "Default", - "ManifestType": "Publish", - "ReferencedProjectsConfiguration": [], - "DiscoveryPatterns": [], - "Assets": [] -} \ No newline at end of file diff --git a/obj/Release/net7.0/staticwebassets/msbuild.build.Microsoft.SelfService.Portal.Core.API.props b/obj/Release/net7.0/staticwebassets/msbuild.build.Microsoft.SelfService.Portal.Core.API.props deleted file mode 100644 index 5a6032a..0000000 --- a/obj/Release/net7.0/staticwebassets/msbuild.build.Microsoft.SelfService.Portal.Core.API.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/Release/net7.0/staticwebassets/msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props b/obj/Release/net7.0/staticwebassets/msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props deleted file mode 100644 index f704301..0000000 --- a/obj/Release/net7.0/staticwebassets/msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/Release/net7.0/staticwebassets/msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props b/obj/Release/net7.0/staticwebassets/msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props deleted file mode 100644 index b8faea7..0000000 --- a/obj/Release/net7.0/staticwebassets/msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/Release/net7.0/win-x64/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Release/net7.0/win-x64/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs deleted file mode 100644 index 4257f4b..0000000 --- a/obj/Release/net7.0/win-x64/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs deleted file mode 100644 index 6a46b16..0000000 --- a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("9c90fee1-4576-4f20-be83-715728173b96")] -[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft.SelfService.Portal.Core.API")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Microsoft.SelfService.Portal.Core.API")] -[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft.SelfService.Portal.Core.API")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache deleted file mode 100644 index cfb121c..0000000 --- a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c0a640e37a0d0dd1c955474e3ac0a37c5e61a588 diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d52571b..0000000 --- a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -is_global = true -build_property.TargetFramework = net7.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = true -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Microsoft.SelfService.Portal.Core.API -build_property.RootNamespace = Microsoft.SelfService.Portal.Core.API -build_property.ProjectDir = C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\ -build_property.RazorLangVersion = 7.0 -build_property.SupportLocalizedComponentNames = -build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API -build_property._RazorSourceGeneratorDebug = diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs deleted file mode 100644 index 025530a..0000000 --- a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.GlobalUsings.g.cs +++ /dev/null @@ -1,17 +0,0 @@ -// -global using global::Microsoft.AspNetCore.Builder; -global using global::Microsoft.AspNetCore.Hosting; -global using global::Microsoft.AspNetCore.Http; -global using global::Microsoft.AspNetCore.Routing; -global using global::Microsoft.Extensions.Configuration; -global using global::Microsoft.Extensions.DependencyInjection; -global using global::Microsoft.Extensions.Hosting; -global using global::Microsoft.Extensions.Logging; -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Net.Http.Json; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs deleted file mode 100644 index f9ccf61..0000000 --- a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs +++ /dev/null @@ -1,18 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.assets.cache b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.assets.cache deleted file mode 100644 index d9dced5..0000000 Binary files a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.assets.cache and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache deleted file mode 100644 index 9eb28d2..0000000 Binary files a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache deleted file mode 100644 index d50faf0..0000000 --- a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -85bc27d8e976ce269cf239081d4ec8fca43a6ce5 diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt deleted file mode 100644 index 6f8ff18..0000000 --- a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,252 +0,0 @@ -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\appsettings.Development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\appsettings.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.deps.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\AutoMapper.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Azure.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Azure.Identity.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Humanizer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.AspNetCore.Authentication.Negotiate.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.AspNetCore.Connections.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.AspNetCore.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.AspNetCore.Razor.Language.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.Build.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.Build.Framework.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.CodeAnalysis.AnalyzerUtilities.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.CodeAnalysis.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.CodeAnalysis.CSharp.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.CodeAnalysis.Elfie.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.CodeAnalysis.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.CodeAnalysis.Razor.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.CodeAnalysis.Scripting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.DiaSymReader.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.DotNet.Scaffolding.Shared.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.EntityFrameworkCore.Design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.Extensions.DependencyModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.Extensions.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.Identity.Client.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.IdentityModel.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.IdentityModel.Logging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.IdentityModel.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.IdentityModel.Tokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.NET.StringTools.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.SqlServer.Server.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.VisualStudio.Web.CodeGeneration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\dotnet-aspnet-codegenerator-design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Mono.TextTemplating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Newtonsoft.Json.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Newtonsoft.Json.Bson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\NuGet.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\NuGet.Configuration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\NuGet.DependencyResolver.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\NuGet.Frameworks.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\NuGet.LibraryModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\NuGet.Packaging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\NuGet.ProjectModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\NuGet.Protocol.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\NuGet.Versioning.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.CodeDom.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Composition.AttributedModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Composition.Convention.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Composition.Hosting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Composition.Runtime.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Composition.TypedParts.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Configuration.ConfigurationManager.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.IdentityModel.Tokens.Jwt.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Memory.Data.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Reflection.MetadataLoadContext.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Security.Permissions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\af\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ar\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\az\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\bg\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\bn-BD\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\cs\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\da\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\de\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\el\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\es\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fa\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fi-FI\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fr-BE\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\he\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\hr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\hu\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\hy\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\id\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\is\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\it\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ja\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ko-KR\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ku\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\lv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ms-MY\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\mt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\nb\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\nb-NO\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\nl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ro\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ru\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\sk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\sl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\sr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\sr-Latn\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\sv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\th-TH\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\tr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\uk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\uz-Cyrl-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\uz-Latn-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\vi\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-CN\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hans\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hant\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\cs\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\de\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\es\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\it\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ja\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ko\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pl\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ru\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\tr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\cs\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\de\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\es\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\it\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ja\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ko\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pl\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ru\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\tr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\bin\Release\net7.0\win-x64\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.csproj.AssemblyReference.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.AssemblyInfoInputs.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.AssemblyInfo.cs -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.csproj.CoreCompileInputs.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cs -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.MvcApplicationPartsAssemblyInfo.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\staticwebassets\msbuild.Microsoft.SelfService.Portal.Core.API.Microsoft.AspNetCore.StaticWebAssets.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\staticwebassets\msbuild.build.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\staticwebassets\msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\staticwebassets\msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\staticwebassets.pack.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\staticwebassets.build.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\staticwebassets.development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\scopedcss\bundle\Microsoft.SelfService.Portal.Core.API.styles.css -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.csproj.CopyComplete -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\refint\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\ref\Microsoft.SelfService.Portal.Core.API.dll diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.deps.json b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.deps.json deleted file mode 100644 index 95ed28c..0000000 --- a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.deps.json +++ /dev/null @@ -1,4588 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v7.0/win-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v7.0": {}, - ".NETCoreApp,Version=v7.0/win-x64": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "dependencies": { - "AutoMapper": "12.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", - "Microsoft.AspNetCore.Authentication.Negotiate": "7.0.9", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "7.0.9", - "Microsoft.AspNetCore.OpenApi": "7.0.9", - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.EntityFrameworkCore.SqlServer": "7.0.9", - "Microsoft.EntityFrameworkCore.Tools": "7.0.9", - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "7.0.8", - "Swashbuckle.AspNetCore": "6.5.0" - }, - "runtime": { - "Microsoft.SelfService.Portal.Core.API.dll": {} - } - }, - "AutoMapper/12.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "dependencies": { - "AutoMapper": "12.0.1", - "Microsoft.Extensions.Options": "7.0.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "Azure.Core/1.24.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/net5.0/Azure.Core.dll": { - "assemblyVersion": "1.24.0.0", - "fileVersion": "1.2400.22.20404" - } - } - }, - "Azure.Identity/1.6.0": { - "dependencies": { - "Azure.Core": "1.24.0", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", - "System.Memory": "4.5.5", - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "assemblyVersion": "1.6.0.0", - "fileVersion": "1.600.22.20503" - } - } - }, - "Humanizer/2.14.1": { - "dependencies": { - "Humanizer.Core.af": "2.14.1", - "Humanizer.Core.ar": "2.14.1", - "Humanizer.Core.az": "2.14.1", - "Humanizer.Core.bg": "2.14.1", - "Humanizer.Core.bn-BD": "2.14.1", - "Humanizer.Core.cs": "2.14.1", - "Humanizer.Core.da": "2.14.1", - "Humanizer.Core.de": "2.14.1", - "Humanizer.Core.el": "2.14.1", - "Humanizer.Core.es": "2.14.1", - "Humanizer.Core.fa": "2.14.1", - "Humanizer.Core.fi-FI": "2.14.1", - "Humanizer.Core.fr": "2.14.1", - "Humanizer.Core.fr-BE": "2.14.1", - "Humanizer.Core.he": "2.14.1", - "Humanizer.Core.hr": "2.14.1", - "Humanizer.Core.hu": "2.14.1", - "Humanizer.Core.hy": "2.14.1", - "Humanizer.Core.id": "2.14.1", - "Humanizer.Core.is": "2.14.1", - "Humanizer.Core.it": "2.14.1", - "Humanizer.Core.ja": "2.14.1", - "Humanizer.Core.ko-KR": "2.14.1", - "Humanizer.Core.ku": "2.14.1", - "Humanizer.Core.lv": "2.14.1", - "Humanizer.Core.ms-MY": "2.14.1", - "Humanizer.Core.mt": "2.14.1", - "Humanizer.Core.nb": "2.14.1", - "Humanizer.Core.nb-NO": "2.14.1", - "Humanizer.Core.nl": "2.14.1", - "Humanizer.Core.pl": "2.14.1", - "Humanizer.Core.pt": "2.14.1", - "Humanizer.Core.ro": "2.14.1", - "Humanizer.Core.ru": "2.14.1", - "Humanizer.Core.sk": "2.14.1", - "Humanizer.Core.sl": "2.14.1", - "Humanizer.Core.sr": "2.14.1", - "Humanizer.Core.sr-Latn": "2.14.1", - "Humanizer.Core.sv": "2.14.1", - "Humanizer.Core.th-TH": "2.14.1", - "Humanizer.Core.tr": "2.14.1", - "Humanizer.Core.uk": "2.14.1", - "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", - "Humanizer.Core.uz-Latn-UZ": "2.14.1", - "Humanizer.Core.vi": "2.14.1", - "Humanizer.Core.zh-CN": "2.14.1", - "Humanizer.Core.zh-Hans": "2.14.1", - "Humanizer.Core.zh-Hant": "2.14.1" - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "Humanizer.Core.af/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/af/Humanizer.resources.dll": { - "locale": "af" - } - } - }, - "Humanizer.Core.ar/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ar/Humanizer.resources.dll": { - "locale": "ar" - } - } - }, - "Humanizer.Core.az/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/az/Humanizer.resources.dll": { - "locale": "az" - } - } - }, - "Humanizer.Core.bg/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bg/Humanizer.resources.dll": { - "locale": "bg" - } - } - }, - "Humanizer.Core.bn-BD/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bn-BD/Humanizer.resources.dll": { - "locale": "bn-BD" - } - } - }, - "Humanizer.Core.cs/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/cs/Humanizer.resources.dll": { - "locale": "cs" - } - } - }, - "Humanizer.Core.da/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/da/Humanizer.resources.dll": { - "locale": "da" - } - } - }, - "Humanizer.Core.de/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/de/Humanizer.resources.dll": { - "locale": "de" - } - } - }, - "Humanizer.Core.el/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/el/Humanizer.resources.dll": { - "locale": "el" - } - } - }, - "Humanizer.Core.es/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/es/Humanizer.resources.dll": { - "locale": "es" - } - } - }, - "Humanizer.Core.fa/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fa/Humanizer.resources.dll": { - "locale": "fa" - } - } - }, - "Humanizer.Core.fi-FI/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fi-FI/Humanizer.resources.dll": { - "locale": "fi-FI" - } - } - }, - "Humanizer.Core.fr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr/Humanizer.resources.dll": { - "locale": "fr" - } - } - }, - "Humanizer.Core.fr-BE/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr-BE/Humanizer.resources.dll": { - "locale": "fr-BE" - } - } - }, - "Humanizer.Core.he/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/he/Humanizer.resources.dll": { - "locale": "he" - } - } - }, - "Humanizer.Core.hr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hr/Humanizer.resources.dll": { - "locale": "hr" - } - } - }, - "Humanizer.Core.hu/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hu/Humanizer.resources.dll": { - "locale": "hu" - } - } - }, - "Humanizer.Core.hy/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hy/Humanizer.resources.dll": { - "locale": "hy" - } - } - }, - "Humanizer.Core.id/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/id/Humanizer.resources.dll": { - "locale": "id" - } - } - }, - "Humanizer.Core.is/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/is/Humanizer.resources.dll": { - "locale": "is" - } - } - }, - "Humanizer.Core.it/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/it/Humanizer.resources.dll": { - "locale": "it" - } - } - }, - "Humanizer.Core.ja/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ja/Humanizer.resources.dll": { - "locale": "ja" - } - } - }, - "Humanizer.Core.ko-KR/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { - "locale": "ko-KR" - } - } - }, - "Humanizer.Core.ku/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ku/Humanizer.resources.dll": { - "locale": "ku" - } - } - }, - "Humanizer.Core.lv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/lv/Humanizer.resources.dll": { - "locale": "lv" - } - } - }, - "Humanizer.Core.ms-MY/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { - "locale": "ms-MY" - } - } - }, - "Humanizer.Core.mt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/mt/Humanizer.resources.dll": { - "locale": "mt" - } - } - }, - "Humanizer.Core.nb/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb/Humanizer.resources.dll": { - "locale": "nb" - } - } - }, - "Humanizer.Core.nb-NO/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb-NO/Humanizer.resources.dll": { - "locale": "nb-NO" - } - } - }, - "Humanizer.Core.nl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nl/Humanizer.resources.dll": { - "locale": "nl" - } - } - }, - "Humanizer.Core.pl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pl/Humanizer.resources.dll": { - "locale": "pl" - } - } - }, - "Humanizer.Core.pt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pt/Humanizer.resources.dll": { - "locale": "pt" - } - } - }, - "Humanizer.Core.ro/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ro/Humanizer.resources.dll": { - "locale": "ro" - } - } - }, - "Humanizer.Core.ru/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ru/Humanizer.resources.dll": { - "locale": "ru" - } - } - }, - "Humanizer.Core.sk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sk/Humanizer.resources.dll": { - "locale": "sk" - } - } - }, - "Humanizer.Core.sl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sl/Humanizer.resources.dll": { - "locale": "sl" - } - } - }, - "Humanizer.Core.sr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr/Humanizer.resources.dll": { - "locale": "sr" - } - } - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr-Latn/Humanizer.resources.dll": { - "locale": "sr-Latn" - } - } - }, - "Humanizer.Core.sv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sv/Humanizer.resources.dll": { - "locale": "sv" - } - } - }, - "Humanizer.Core.th-TH/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { - "locale": "th-TH" - } - } - }, - "Humanizer.Core.tr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/tr/Humanizer.resources.dll": { - "locale": "tr" - } - } - }, - "Humanizer.Core.uk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uk/Humanizer.resources.dll": { - "locale": "uk" - } - } - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { - "locale": "uz-Cyrl-UZ" - } - } - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { - "locale": "uz-Latn-UZ" - } - } - }, - "Humanizer.Core.vi/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/vi/Humanizer.resources.dll": { - "locale": "vi" - } - } - }, - "Humanizer.Core.zh-CN/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-CN/Humanizer.resources.dll": { - "locale": "zh-CN" - } - } - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hans/Humanizer.resources.dll": { - "locale": "zh-Hans" - } - } - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hant/Humanizer.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "System.DirectoryServices.Protocols": "7.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "dependencies": { - "Microsoft.Extensions.Features": "7.0.9", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.9", - "Newtonsoft.Json": "13.0.1", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Build/17.3.2": { - "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "System.Collections.Immutable": "6.0.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Reflection.Metadata": "6.0.0", - "System.Reflection.MetadataLoadContext": "6.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Dataflow": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.Build.Framework/17.3.2": { - "dependencies": { - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.Framework.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "assemblyVersion": "3.3.2.30504", - "fileVersion": "3.3.2.30504" - } - } - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "6.0.0", - "System.Memory": "4.5.5", - "System.Reflection.Metadata": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Features": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Data.DataSetExtensions": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.16" - } - } - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Elfie": "1.0.0", - "Microsoft.CodeAnalysis.Scripting.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0", - "Microsoft.DiaSymReader": "1.4.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "System.Composition": "6.0.0", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.SqlClient/5.0.2": { - "dependencies": { - "Azure.Identity": "1.6.0", - "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", - "Microsoft.SqlServer.Server": "1.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Caching": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "7.0.0" - }, - "runtime": { - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "native": { - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "fileVersion": "5.0.1.0" - } - } - }, - "Microsoft.DiaSymReader/1.4.0": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.400.22.11101" - } - } - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "dependencies": { - "Humanizer": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Features": "4.4.0", - "Newtonsoft.Json": "13.0.1", - "NuGet.ProjectModel": "6.3.1" - }, - "runtime": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9", - "Microsoft.EntityFrameworkCore.Analyzers": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": {}, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Mono.TextTemplating": "2.2.1" - } - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "dependencies": { - "Microsoft.Data.SqlClient": "5.0.2", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "7.0.9" - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {}, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - } - }, - "Microsoft.Extensions.Features/7.0.9": { - "runtime": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.Extensions.Logging/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": {}, - "Microsoft.Extensions.Options/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Primitives/7.0.0": {}, - "Microsoft.Identity.Client/4.45.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.45.0.0", - "fileVersion": "4.45.0.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "dependencies": { - "Microsoft.Identity.Client": "4.45.0", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "2.19.3.0", - "fileVersion": "2.19.3.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.21.0", - "System.IdentityModel.Tokens.Jwt": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "6.21.0", - "System.Security.Cryptography.Cng": "5.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.NET.StringTools/17.3.2": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.NET.StringTools.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.OpenApi/1.4.3": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.4.3.0", - "fileVersion": "1.4.3.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "7.0.8" - }, - "runtime": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Razor": "6.0.11", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "dependencies": { - "Microsoft.Build": "17.3.2", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.Microsoft.Win32.Primitives": "4.3.0" - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "dependencies": { - "System.CodeDom": "4.4.0" - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "dependencies": { - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.22727" - } - } - }, - "NuGet.Common/6.3.1": { - "dependencies": { - "NuGet.Frameworks": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Common.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Configuration/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "dependencies": { - "NuGet.Configuration": "6.3.1", - "NuGet.LibraryModel": "6.3.1", - "NuGet.Protocol": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Frameworks/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.LibraryModel/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "NuGet.Versioning": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Packaging/6.3.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "NuGet.Configuration": "6.3.1", - "NuGet.Versioning": "6.3.1", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Pkcs": "5.0.0" - }, - "runtime": { - "lib/net5.0/NuGet.Packaging.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.ProjectModel/6.3.1": { - "dependencies": { - "NuGet.DependencyResolver.Core": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Protocol/6.3.1": { - "dependencies": { - "NuGet.Packaging": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.Protocol.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Versioning/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "runtime.any.System.Collections/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": {}, - "runtime.any.System.Diagnostics.Tracing/4.3.0": {}, - "runtime.any.System.Globalization/4.3.0": {}, - "runtime.any.System.Globalization.Calendars/4.3.0": {}, - "runtime.any.System.IO/4.3.0": {}, - "runtime.any.System.Reflection/4.3.0": {}, - "runtime.any.System.Reflection.Extensions/4.3.0": {}, - "runtime.any.System.Reflection.Primitives/4.3.0": {}, - "runtime.any.System.Resources.ResourceManager/4.3.0": {}, - "runtime.any.System.Runtime/4.3.0": { - "dependencies": { - "System.Private.Uri": "4.3.0" - } - }, - "runtime.any.System.Runtime.Handles/4.3.0": {}, - "runtime.any.System.Runtime.InteropServices/4.3.0": {}, - "runtime.any.System.Text.Encoding/4.3.0": {}, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": {}, - "runtime.any.System.Threading.Tasks/4.3.0": {}, - "runtime.any.System.Threading.Timer/4.3.0": {}, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "runtime.win.System.Console/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": {}, - "runtime.win.System.IO.FileSystem/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Net.NameResolution": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "dependencies": { - "System.Private.Uri": "4.3.0" - } - }, - "Swashbuckle.AspNetCore/6.5.0": { - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" - } - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.5.1": {}, - "System.CodeDom/4.4.0": {}, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Collections": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Composition/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - } - }, - "System.Composition.AttributedModel/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Convention/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Hosting/6.0.0": { - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Runtime/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.TypedParts/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.win.System.Console": "4.3.0" - } - }, - "System.Data.DataSetExtensions/4.5.0": {}, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Diagnostics.Debug": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": {}, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tools": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tracing": "4.3.0" - } - }, - "System.DirectoryServices.Protocols/7.0.1": { - "runtime": { - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Formats.Asn1/5.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization.Calendars": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.any.System.IO": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.IO.FileSystem": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Pipelines/7.0.0": {}, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Memory/4.5.5": {}, - "System.Memory.Data/1.0.2": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "assemblyVersion": "1.0.2.0", - "fileVersion": "1.0.221.20802" - } - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.NameResolution/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.win.System.Net.Primitives": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.Net.Sockets": "4.3.0" - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Private.Uri/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Extensions": "4.3.0" - } - }, - "System.Reflection.Metadata/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - } - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0", - "System.Reflection.Metadata": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Primitives": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Resources.ResourceManager": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.any.System.Runtime": "4.3.0" - } - }, - "System.Runtime.Caching/5.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Runtime.Extensions": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.any.System.Runtime.InteropServices": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.any.System.Text.Encoding.Extensions": "4.3.0" - } - }, - "System.Text.Encodings.Web/7.0.0": {}, - "System.Text.Json/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Overlapped/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks.Dataflow/6.0.0": {}, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Timer": "4.3.0" - } - }, - "System.Windows.Extensions/6.0.0": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - } - } - }, - "libraries": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==", - "path": "automapper/12.0.1", - "hashPath": "automapper.12.0.1.nupkg.sha512" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==", - "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1", - "hashPath": "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512" - }, - "Azure.Core/1.24.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==", - "path": "azure.core/1.24.0", - "hashPath": "azure.core.1.24.0.nupkg.sha512" - }, - "Azure.Identity/1.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==", - "path": "azure.identity/1.6.0", - "hashPath": "azure.identity.1.6.0.nupkg.sha512" - }, - "Humanizer/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", - "path": "humanizer/2.14.1", - "hashPath": "humanizer.2.14.1.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.af/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", - "path": "humanizer.core.af/2.14.1", - "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ar/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", - "path": "humanizer.core.ar/2.14.1", - "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.az/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", - "path": "humanizer.core.az/2.14.1", - "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bg/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", - "path": "humanizer.core.bg/2.14.1", - "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bn-BD/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", - "path": "humanizer.core.bn-bd/2.14.1", - "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.cs/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", - "path": "humanizer.core.cs/2.14.1", - "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.da/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", - "path": "humanizer.core.da/2.14.1", - "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.de/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", - "path": "humanizer.core.de/2.14.1", - "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.el/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", - "path": "humanizer.core.el/2.14.1", - "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.es/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", - "path": "humanizer.core.es/2.14.1", - "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fa/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", - "path": "humanizer.core.fa/2.14.1", - "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fi-FI/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", - "path": "humanizer.core.fi-fi/2.14.1", - "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", - "path": "humanizer.core.fr/2.14.1", - "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr-BE/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", - "path": "humanizer.core.fr-be/2.14.1", - "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.he/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", - "path": "humanizer.core.he/2.14.1", - "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", - "path": "humanizer.core.hr/2.14.1", - "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hu/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", - "path": "humanizer.core.hu/2.14.1", - "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hy/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", - "path": "humanizer.core.hy/2.14.1", - "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.id/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", - "path": "humanizer.core.id/2.14.1", - "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.is/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", - "path": "humanizer.core.is/2.14.1", - "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.it/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", - "path": "humanizer.core.it/2.14.1", - "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ja/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", - "path": "humanizer.core.ja/2.14.1", - "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ko-KR/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", - "path": "humanizer.core.ko-kr/2.14.1", - "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ku/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", - "path": "humanizer.core.ku/2.14.1", - "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.lv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", - "path": "humanizer.core.lv/2.14.1", - "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ms-MY/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", - "path": "humanizer.core.ms-my/2.14.1", - "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.mt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", - "path": "humanizer.core.mt/2.14.1", - "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", - "path": "humanizer.core.nb/2.14.1", - "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb-NO/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", - "path": "humanizer.core.nb-no/2.14.1", - "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", - "path": "humanizer.core.nl/2.14.1", - "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", - "path": "humanizer.core.pl/2.14.1", - "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", - "path": "humanizer.core.pt/2.14.1", - "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ro/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", - "path": "humanizer.core.ro/2.14.1", - "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ru/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", - "path": "humanizer.core.ru/2.14.1", - "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", - "path": "humanizer.core.sk/2.14.1", - "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", - "path": "humanizer.core.sl/2.14.1", - "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", - "path": "humanizer.core.sr/2.14.1", - "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", - "path": "humanizer.core.sr-latn/2.14.1", - "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", - "path": "humanizer.core.sv/2.14.1", - "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.th-TH/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", - "path": "humanizer.core.th-th/2.14.1", - "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.tr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", - "path": "humanizer.core.tr/2.14.1", - "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", - "path": "humanizer.core.uk/2.14.1", - "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", - "path": "humanizer.core.uz-cyrl-uz/2.14.1", - "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", - "path": "humanizer.core.uz-latn-uz/2.14.1", - "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.vi/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", - "path": "humanizer.core.vi/2.14.1", - "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-CN/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", - "path": "humanizer.core.zh-cn/2.14.1", - "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", - "path": "humanizer.core.zh-hans/2.14.1", - "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", - "path": "humanizer.core.zh-hant/2.14.1", - "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Sh+zGJAgG5MwQcHATWrKsFn4IY5psaX2c1QtKwSNPlEuTjZIZe3aVjEWMHT/ou2jkQ12S2kjOzaW5nMeg/cBA==", - "path": "microsoft.aspnetcore.authentication.negotiate/7.0.9", - "hashPath": "microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/A7MkuL0g4r/oNuASR2gIukWoG2360/tuS9RoiU1dOwTlMYthHJaK8NEpswMihcImCDryiHp5dJCPTZHIs9TQ==", - "path": "microsoft.aspnetcore.connections.abstractions/7.0.9", - "hashPath": "microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6iMRtYIQZj7gMC7iVotL9bZjCjnbV2ZkAAduKYHfV6v+WQhEjk0iEGSFNVh6N9rTCNTeZ2xVgv3xi675GwyDzQ==", - "path": "microsoft.aspnetcore.jsonpatch/7.0.9", - "hashPath": "microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dhAFLGV3RfK6BAbLYpTKcVch1hcyP2qDWNy7Pk2wGrQEO/yWbWwiR9c13hk5kGWcPMGeVMkcuftUo6OAHe2yIA==", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.9", - "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5kBnHntQTJqmYV66Khdl9OJ/j2Pw8cOKj8kNQuLCpfCsPbSijp334Vaad3vaGnG9Wpgq/VbSUSRxZOoroOe8zQ==", - "path": "microsoft.aspnetcore.openapi/7.0.9", - "hashPath": "microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SPjSZIL7JFI5XbVfRMPG/fHLr/xfumSrmN+IOimyIf71WQQ8u2hpaE5+VvpcgjJ5VrJMhfDEhdEAB+Nj/S16dQ==", - "path": "microsoft.aspnetcore.razor.language/6.0.11", - "hashPath": "microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Build/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k5+7CfF/aM/hykfnrF93VhbUnhGfpJkGaD+ce8VlhLnOqDyts7WV+8Up3YCP6qmXMZFeeH/Cp23w2wSliP0mBw==", - "path": "microsoft.build/17.3.2", - "hashPath": "microsoft.build.17.3.2.nupkg.sha512" - }, - "Microsoft.Build.Framework/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==", - "path": "microsoft.build.framework/17.3.2", - "hashPath": "microsoft.build.framework.17.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", - "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", - "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JfHupS/B7Jb5MZoYkFFABn3mux0wQgxi2D8F/rJYZeRBK2ZOyk7TjQ2Kq9rh6W/DCh0KNbbSbn5qoFar+ueHqw==", - "path": "microsoft.codeanalysis.common/4.4.0", - "hashPath": "microsoft.codeanalysis.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eD2w0xHRoaqK07hjlOKGR9eLNy3nimiGNeCClNax1NDgS/+DBtBqCjXelOa+TNy99kIB3nHhUqDmr46nDXy/RQ==", - "path": "microsoft.codeanalysis.csharp/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Un4XeiWD8Xo4A/Q6Wrkrt9UCas6EaP/ZfQAHXNjde5ULkvliWzvy0/ZlXzlPo6L/Xoon1BWOFMprIQWCjuLq9A==", - "path": "microsoft.codeanalysis.csharp.features/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ADmI2jcwJP9GgBsVx2l0Bo0v3Hn4hHBg1uJ5zHd230mkO8rUJBLZu2h3tCbpwJMkpAIRtrxuZDD5uNfiyz0Q5Q==", - "path": "microsoft.codeanalysis.csharp.workspaces/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", - "path": "microsoft.codeanalysis.elfie/1.0.0", - "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0LEXWpaDlZMl5lOnM872FuBmcDD99qKp4QmmFsMpJjnq7f21KuNchdyuSdh9pdpibl2JfdMWrvA56y5dKc6EPQ==", - "path": "microsoft.codeanalysis.features/4.4.0", - "hashPath": "microsoft.codeanalysis.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-40M7AHKPKvOw3LnWsaKmHitk0taBZ8982zoZBQstYzsfdH+tcIdeOewRHvuej23T7HV6d8se9MZdKC9O2I78vQ==", - "path": "microsoft.codeanalysis.razor/6.0.11", - "hashPath": "microsoft.codeanalysis.razor.6.0.11.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RkAwCFJ8LfN7TfbWDejm50nucPxVoG/vDh0qVIoGx1U2FZhaBct72U4lGIACLuYsa0dIlC7Y0ivBemfDHnqWmA==", - "path": "microsoft.codeanalysis.scripting.common/4.4.0", - "hashPath": "microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6KzmmTIUU7qInQldcSPaW0nkrO71zlFPhoiabFBhkokEit49rLx4Kr/G3agBchYzirScrXibqgTRQkvx9WcJTw==", - "path": "microsoft.codeanalysis.workspaces.common/4.4.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/5.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mxcYU9I5TLzUegLVXiTtOE89RXN3GafL1Y+ExIbXvivvQtxplI4wxOgsiZGO4TZC18OJqui7mLVmiYpdFFImRQ==", - "path": "microsoft.data.sqlclient/5.0.2", - "hashPath": "microsoft.data.sqlclient.5.0.2.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==", - "path": "microsoft.data.sqlclient.sni.runtime/5.0.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512" - }, - "Microsoft.DiaSymReader/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLtWq5/W5ePzSraavAFeXAbasE6REDByizTz6M8yQO3e4jf+6pRqPLdNCSvnSfKRVqsF7y/lTVWhqlf89ttweg==", - "path": "microsoft.diasymreader/1.4.0", - "hashPath": "microsoft.diasymreader.1.4.0.nupkg.sha512" - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QXtyFZWYAwlKymbFCQT5O21BJ7hLmQcJGB/EdvUV0VuJyeWJMf/8JSI+ijw3IoOd7MUTBpGVNNE8UDM9gUm4Qw==", - "path": "microsoft.dotnet.scaffolding.shared/7.0.8", - "hashPath": "microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9YuCdQWuRAmYYHqwW1h5ukKMC1fmNvcVHdp3gb8zdHxwSQz7hkGpYOBEjm6dRXRmGRkpUyHL8rwUz4kd53Ev0A==", - "path": "microsoft.entityframeworkcore/7.0.9", - "hashPath": "microsoft.entityframeworkcore.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cfY6Fn7cnP/5pXndL8QYaey/B2nGn1fwze5aSaMJymmbqwqYzFiszHuWbsdVBCDYJc8ok7eB1m/nCc3/rltulQ==", - "path": "microsoft.entityframeworkcore.abstractions/7.0.9", - "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VvqFD3DdML6LhPCAR/lG2xNX66juylC8v57yUAAYnUSdEUOMRi3lNoT4OrNdG0rere3UOQPhvVl5FH2QdyoF8Q==", - "path": "microsoft.entityframeworkcore.analyzers/7.0.9", - "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tWsa+spzKZAwHrUP6vYM1LLh0P89UMcldEjerFPPZb0LcI/ONQmh7ldK4Q8TeRuIiuXxYgRYPElSgxwLp14oug==", - "path": "microsoft.entityframeworkcore.design/7.0.9", - "hashPath": "microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u7iN6cNd6SJUlpdk24JVIbkji/UbkEEQ7pXncTyT4eXXj+Hz2y4NSZFOAywPGcioIgX1YzbKWDiJhk7hjSFxBQ==", - "path": "microsoft.entityframeworkcore.relational/7.0.9", - "hashPath": "microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-19S5BWZBcaShhLWzePi9iOq+meKIgL+dDlS0NQgPOQapu3wb3So3ZL0xgPmmlyq3GLYvXiCmQsK3Yv3vXYaMTg==", - "path": "microsoft.entityframeworkcore.sqlserver/7.0.9", - "hashPath": "microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GWOSIe8ltR/mqv2wpRvMhy6ULapdKhZXXpXSGWzG1fRxhYXjSGpe2Pqhxqo46o9RDGlk0WJUXrwyU+N4voPxMw==", - "path": "microsoft.entityframeworkcore.tools/7.0.9", - "hashPath": "microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", - "path": "microsoft.extensions.apidescription.server/6.0.5", - "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", - "path": "microsoft.extensions.caching.abstractions/7.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", - "path": "microsoft.extensions.caching.memory/7.0.0", - "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", - "path": "microsoft.extensions.configuration.abstractions/7.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", - "path": "microsoft.extensions.dependencyinjection/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", - "path": "microsoft.extensions.dependencymodel/7.0.0", - "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Features/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IJ2vdDt2OYCKyJ7ZJPIZKa4b0M0tsG36h0QUt1d/E8IMAnjIncI+1i9Am0nmheD/wpcVd9eDykiV4dklcwUd3Q==", - "path": "microsoft.extensions.features/7.0.9", - "hashPath": "microsoft.extensions.features.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", - "path": "microsoft.extensions.logging/7.0.0", - "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", - "path": "microsoft.extensions.logging.abstractions/7.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", - "path": "microsoft.extensions.options/7.0.0", - "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", - "path": "microsoft.extensions.primitives/7.0.0", - "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.45.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==", - "path": "microsoft.identity.client/4.45.0", - "hashPath": "microsoft.identity.client.4.45.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", - "path": "microsoft.identity.client.extensions.msal/2.19.3", - "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==", - "path": "microsoft.identitymodel.abstractions/6.21.0", - "hashPath": "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==", - "path": "microsoft.identitymodel.jsonwebtokens/6.21.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==", - "path": "microsoft.identitymodel.logging/6.21.0", - "hashPath": "microsoft.identitymodel.logging.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==", - "path": "microsoft.identitymodel.protocols/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==", - "path": "microsoft.identitymodel.tokens/6.21.0", - "hashPath": "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512" - }, - "Microsoft.NET.StringTools/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==", - "path": "microsoft.net.stringtools/17.3.2", - "hashPath": "microsoft.net.stringtools.17.3.2.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.OpenApi/1.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", - "path": "microsoft.openapi/1.4.3", - "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AbrSIuBwG/7+7JBMOSyHVYqcz8YdUdArGIx4Asckm/U8FWKdT6NSJmObZh3X2Da2/W176FqG3MPTPtw/P0kJag==", - "path": "microsoft.visualstudio.web.codegeneration/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wdud/mzEfFMHqPNBb+N+jVeI2INNSP5WlCrPepQqvoLqiZwM0wUvf7yWGrVbNHBMOjDk3lIavqjXNkY9PriOQg==", - "path": "microsoft.visualstudio.web.codegeneration.core/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-56UeN0J8SA5PJjvf6Mv0ZbhLWO6Cr+YGM5eOsNejpQDL+ba8pt8BR7SBMTnSrZIOEeOhY3nAPUkOUK3bh+v3Tg==", - "path": "microsoft.visualstudio.web.codegeneration.design/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlyRk0pmpvPCzCot0bY+Lt6bctGC4dqrQxk1vk2ep+wTdH/CZ8FflnWHEKGBpd+kMrwy93UbJZ8HSAxlBLksLA==", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JTepVMzR2XOr6BVgejMltlzi3O6LMpNb3dz0VKczsjKKX/l6ZT1iTUC6FjuHs9SNTc8rTlEK7hw2TIKpGy1tCQ==", - "path": "microsoft.visualstudio.web.codegeneration.templating/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5T6uK9MH6zWXXyVinlvmbz7fFiuA5/UIFa1wAWD6ylkReDlPTEOq5AMwlkdlEPZuqMgICH4N3BQAizY/EIAlzA==", - "path": "microsoft.visualstudio.web.codegeneration.utils/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xQIJfP4NpuAnFykWuXW5nr+1WyPLNVbMhqFS7SKX6CIm32Ak9iCMFS1NSbksl5bfIXaSg1rjJM8TpZYoKM+Ffg==", - "path": "microsoft.visualstudio.web.codegenerators.mvc/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "path": "mono.texttemplating/2.2.1", - "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "path": "newtonsoft.json.bson/1.0.2", - "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" - }, - "NuGet.Common/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==", - "path": "nuget.common/6.3.1", - "hashPath": "nuget.common.6.3.1.nupkg.sha512" - }, - "NuGet.Configuration/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==", - "path": "nuget.configuration/6.3.1", - "hashPath": "nuget.configuration.6.3.1.nupkg.sha512" - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wSr4XMNE5f82ZveuATVwj+kS1/dWyXARjOZcS70Aiaj+XEWL8uo4EFTwPIvqPHWCem5cxmavBRuWBwlQ4HWjeA==", - "path": "nuget.dependencyresolver.core/6.3.1", - "hashPath": "nuget.dependencyresolver.core.6.3.1.nupkg.sha512" - }, - "NuGet.Frameworks/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==", - "path": "nuget.frameworks/6.3.1", - "hashPath": "nuget.frameworks.6.3.1.nupkg.sha512" - }, - "NuGet.LibraryModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aEB4AesZ+ddLVTBbewQFNHagbVbwewobBk2+8mk0THWjn0qIUH2l4kLTMmiTD7DOthVB6pYds8bz1B8Z0rEPrQ==", - "path": "nuget.librarymodel/6.3.1", - "hashPath": "nuget.librarymodel.6.3.1.nupkg.sha512" - }, - "NuGet.Packaging/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==", - "path": "nuget.packaging/6.3.1", - "hashPath": "nuget.packaging.6.3.1.nupkg.sha512" - }, - "NuGet.ProjectModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TtC4zUKnMIkJBtM7P1GtvVK2jCh4Xi8SVK+bEsCUSoZ0rJf7Zqw2oBrmMNWe51IlfOcYkREmn6xif9mgJXOnmQ==", - "path": "nuget.projectmodel/6.3.1", - "hashPath": "nuget.projectmodel.6.3.1.nupkg.sha512" - }, - "NuGet.Protocol/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==", - "path": "nuget.protocol/6.3.1", - "hashPath": "nuget.protocol.6.3.1.nupkg.sha512" - }, - "NuGet.Versioning/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==", - "path": "nuget.versioning/6.3.1", - "hashPath": "nuget.versioning.6.3.1.nupkg.sha512" - }, - "runtime.any.System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", - "path": "runtime.any.system.collections/4.3.0", - "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==", - "path": "runtime.any.system.diagnostics.tools/4.3.0", - "hashPath": "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", - "path": "runtime.any.system.diagnostics.tracing/4.3.0", - "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", - "path": "runtime.any.system.globalization/4.3.0", - "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", - "path": "runtime.any.system.globalization.calendars/4.3.0", - "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "runtime.any.System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", - "path": "runtime.any.system.io/4.3.0", - "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", - "path": "runtime.any.system.reflection/4.3.0", - "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==", - "path": "runtime.any.system.reflection.extensions/4.3.0", - "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", - "path": "runtime.any.system.reflection.primitives/4.3.0", - "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", - "path": "runtime.any.system.resources.resourcemanager/4.3.0", - "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", - "path": "runtime.any.system.runtime/4.3.0", - "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", - "path": "runtime.any.system.runtime.handles/4.3.0", - "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", - "path": "runtime.any.system.runtime.interopservices/4.3.0", - "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", - "path": "runtime.any.system.text.encoding/4.3.0", - "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", - "path": "runtime.any.system.text.encoding.extensions/4.3.0", - "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", - "path": "runtime.any.system.threading.tasks/4.3.0", - "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==", - "path": "runtime.any.system.threading.timer/4.3.0", - "hashPath": "runtime.any.system.threading.timer.4.3.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==", - "path": "runtime.win.microsoft.win32.primitives/4.3.0", - "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RRACWygml5dnmfgC1SW6tLGsFgwsUAKFtvhdyHnIEz4EhWyrd7pacDdY95CacQJy7BMXRDRCejC9aCRC0Y1sQA==", - "path": "runtime.win.system.console/4.3.0", - "hashPath": "runtime.win.system.console.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", - "path": "runtime.win.system.diagnostics.debug/4.3.0", - "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==", - "path": "runtime.win.system.io.filesystem/4.3.0", - "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==", - "path": "runtime.win.system.net.primitives/4.3.0", - "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==", - "path": "runtime.win.system.net.sockets/4.3.0", - "hashPath": "runtime.win.system.net.sockets.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", - "path": "runtime.win.system.runtime.extensions/4.3.0", - "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", - "path": "swashbuckle.aspnetcore/6.5.0", - "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", - "path": "swashbuckle.aspnetcore.swagger/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", - "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", - "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.CodeDom/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "path": "system.codedom/4.4.0", - "hashPath": "system.codedom.4.4.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", - "path": "system.composition/6.0.0", - "hashPath": "system.composition.6.0.0.nupkg.sha512" - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", - "path": "system.composition.attributedmodel/6.0.0", - "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", - "path": "system.composition.convention/6.0.0", - "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", - "path": "system.composition.hosting/6.0.0", - "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", - "path": "system.composition.runtime/6.0.0", - "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", - "path": "system.composition.typedparts/6.0.0", - "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", - "path": "system.data.datasetextensions/4.5.0", - "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/7.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", - "path": "system.directoryservices.protocols/7.0.1", - "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Formats.Asn1/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", - "path": "system.formats.asn1/5.0.0", - "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==", - "path": "system.identitymodel.tokens.jwt/6.21.0", - "hashPath": "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Pipelines/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", - "path": "system.io.pipelines/7.0.0", - "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "path": "system.memory.data/1.0.2", - "hashPath": "system.memory.data.1.0.2.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.NameResolution/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", - "path": "system.net.nameresolution/4.3.0", - "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", - "path": "system.private.uri/4.3.0", - "hashPath": "system.private.uri.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sffDOcex1C3HO5kDolOYcWXTwRpZY/LvJujM6SMjn63fWMJWchYAAmkoAJXlbpZ5yf4d+KMgxd+LeETa4gD9sQ==", - "path": "system.reflection.metadata/6.0.0", - "hashPath": "system.reflection.metadata.6.0.0.nupkg.sha512" - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SuK8qTHbmG3PToLo1TEq8YSfY31FiKhASBmjozUTAleDgiX4H2X4jm0VPFb+K2soSSmYPyHTpHp35TctfNtDzQ==", - "path": "system.reflection.metadataloadcontext/6.0.0", - "hashPath": "system.reflection.metadataloadcontext.6.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", - "path": "system.runtime.caching/5.0.0", - "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "path": "system.security.cryptography.cng/5.0.0", - "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", - "path": "system.security.cryptography.pkcs/5.0.0", - "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" - }, - "System.Text.Json/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", - "path": "system.text.json/7.0.0", - "hashPath": "system.text.json.7.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", - "path": "system.threading.overlapped/4.3.0", - "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Dataflow/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+tyDCU3/B1lDdOOAJywHQoFwyXIUghIaP2BxG79uvhfTnO+D9qIgjVlL/JV2NTliYbMHpd6eKDmHp2VHpij7MA==", - "path": "system.threading.tasks.dataflow/6.0.0", - "hashPath": "system.threading.tasks.dataflow.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.dll b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 3614b6e..0000000 Binary files a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache deleted file mode 100644 index 464c6dd..0000000 --- a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -96bfe38fcd34740b570fc8b32ec714e9d1d894cd diff --git a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.pdb b/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.pdb deleted file mode 100644 index e084b4c..0000000 Binary files a/obj/Release/net7.0/win-x64/Microsoft.SelfService.Portal.Core.API.pdb and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll deleted file mode 100644 index 8df3ce1..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/AutoMapper.Extensions.Microsoft.DependencyInjection.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/AutoMapper.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/AutoMapper.dll deleted file mode 100644 index b33d3d0..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/AutoMapper.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Azure.Core.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Azure.Core.dll deleted file mode 100644 index aa966ba..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Azure.Core.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Azure.Identity.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Azure.Identity.dll deleted file mode 100644 index eaab465..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Azure.Identity.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Humanizer.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Humanizer.dll deleted file mode 100644 index c9a7ef8..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Humanizer.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Authentication.Negotiate.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Authentication.Negotiate.dll deleted file mode 100644 index 76937c0..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Authentication.Negotiate.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll deleted file mode 100644 index d2d6643..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Connections.Abstractions.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll deleted file mode 100644 index 67976a4..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.JsonPatch.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll deleted file mode 100644 index 9185e39..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.OpenApi.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.OpenApi.dll deleted file mode 100644 index 48f95b5..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.OpenApi.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Razor.Language.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Razor.Language.dll deleted file mode 100644 index e0b7296..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.AspNetCore.Razor.Language.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Build.Framework.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Build.Framework.dll deleted file mode 100644 index dcebf91..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Build.Framework.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Build.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Build.dll deleted file mode 100644 index b9d1fa9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Build.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.AnalyzerUtilities.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.AnalyzerUtilities.dll deleted file mode 100644 index e070bd5..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.AnalyzerUtilities.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Features.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Features.dll deleted file mode 100644 index fad30cf..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Features.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll deleted file mode 100644 index eb2748f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index 6506b81..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Elfie.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Elfie.dll deleted file mode 100644 index b131340..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Elfie.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Features.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Features.dll deleted file mode 100644 index 70ccdf7..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Features.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Razor.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Razor.dll deleted file mode 100644 index f21b880..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Razor.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Scripting.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Scripting.dll deleted file mode 100644 index 9da1e74..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Scripting.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll deleted file mode 100644 index ab9a24c..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.dll deleted file mode 100644 index f35e108..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Data.SqlClient.SNI.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index a00639b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Data.SqlClient.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 59ebd7f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.DiaSymReader.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.DiaSymReader.dll deleted file mode 100644 index 7a3a497..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.DiaSymReader.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.DotNet.Scaffolding.Shared.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.DotNet.Scaffolding.Shared.dll deleted file mode 100644 index 0d69a80..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.DotNet.Scaffolding.Shared.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index bbe5da9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index 5732007..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.dll deleted file mode 100644 index 21a03f8..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index c8a8af4..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Extensions.Features.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Extensions.Features.dll deleted file mode 100644 index d6c80bf..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Extensions.Features.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Identity.Client.Extensions.Msal.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Identity.Client.Extensions.Msal.dll deleted file mode 100644 index 04be9fc..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Identity.Client.Extensions.Msal.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Identity.Client.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Identity.Client.dll deleted file mode 100644 index 112dd74..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Identity.Client.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Abstractions.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index 6a0300a..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 80565a9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Logging.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index c6427c7..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll deleted file mode 100644 index 73cb93e..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll deleted file mode 100644 index df4b6d0..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 9d9fcdd..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.NET.StringTools.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.NET.StringTools.dll deleted file mode 100644 index 9f42478..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.NET.StringTools.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.OpenApi.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.OpenApi.dll deleted file mode 100644 index 1e0998d..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.OpenApi.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.deps.json b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.deps.json deleted file mode 100644 index 95ed28c..0000000 --- a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.deps.json +++ /dev/null @@ -1,4588 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v7.0/win-x64", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v7.0": {}, - ".NETCoreApp,Version=v7.0/win-x64": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "dependencies": { - "AutoMapper": "12.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", - "Microsoft.AspNetCore.Authentication.Negotiate": "7.0.9", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "7.0.9", - "Microsoft.AspNetCore.OpenApi": "7.0.9", - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.EntityFrameworkCore.SqlServer": "7.0.9", - "Microsoft.EntityFrameworkCore.Tools": "7.0.9", - "Microsoft.VisualStudio.Web.CodeGeneration.Design": "7.0.8", - "Swashbuckle.AspNetCore": "6.5.0" - }, - "runtime": { - "Microsoft.SelfService.Portal.Core.API.dll": {} - } - }, - "AutoMapper/12.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "dependencies": { - "AutoMapper": "12.0.1", - "Microsoft.Extensions.Options": "7.0.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.0.1.0" - } - } - }, - "Azure.Core/1.24.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/net5.0/Azure.Core.dll": { - "assemblyVersion": "1.24.0.0", - "fileVersion": "1.2400.22.20404" - } - } - }, - "Azure.Identity/1.6.0": { - "dependencies": { - "Azure.Core": "1.24.0", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", - "System.Memory": "4.5.5", - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "assemblyVersion": "1.6.0.0", - "fileVersion": "1.600.22.20503" - } - } - }, - "Humanizer/2.14.1": { - "dependencies": { - "Humanizer.Core.af": "2.14.1", - "Humanizer.Core.ar": "2.14.1", - "Humanizer.Core.az": "2.14.1", - "Humanizer.Core.bg": "2.14.1", - "Humanizer.Core.bn-BD": "2.14.1", - "Humanizer.Core.cs": "2.14.1", - "Humanizer.Core.da": "2.14.1", - "Humanizer.Core.de": "2.14.1", - "Humanizer.Core.el": "2.14.1", - "Humanizer.Core.es": "2.14.1", - "Humanizer.Core.fa": "2.14.1", - "Humanizer.Core.fi-FI": "2.14.1", - "Humanizer.Core.fr": "2.14.1", - "Humanizer.Core.fr-BE": "2.14.1", - "Humanizer.Core.he": "2.14.1", - "Humanizer.Core.hr": "2.14.1", - "Humanizer.Core.hu": "2.14.1", - "Humanizer.Core.hy": "2.14.1", - "Humanizer.Core.id": "2.14.1", - "Humanizer.Core.is": "2.14.1", - "Humanizer.Core.it": "2.14.1", - "Humanizer.Core.ja": "2.14.1", - "Humanizer.Core.ko-KR": "2.14.1", - "Humanizer.Core.ku": "2.14.1", - "Humanizer.Core.lv": "2.14.1", - "Humanizer.Core.ms-MY": "2.14.1", - "Humanizer.Core.mt": "2.14.1", - "Humanizer.Core.nb": "2.14.1", - "Humanizer.Core.nb-NO": "2.14.1", - "Humanizer.Core.nl": "2.14.1", - "Humanizer.Core.pl": "2.14.1", - "Humanizer.Core.pt": "2.14.1", - "Humanizer.Core.ro": "2.14.1", - "Humanizer.Core.ru": "2.14.1", - "Humanizer.Core.sk": "2.14.1", - "Humanizer.Core.sl": "2.14.1", - "Humanizer.Core.sr": "2.14.1", - "Humanizer.Core.sr-Latn": "2.14.1", - "Humanizer.Core.sv": "2.14.1", - "Humanizer.Core.th-TH": "2.14.1", - "Humanizer.Core.tr": "2.14.1", - "Humanizer.Core.uk": "2.14.1", - "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", - "Humanizer.Core.uz-Latn-UZ": "2.14.1", - "Humanizer.Core.vi": "2.14.1", - "Humanizer.Core.zh-CN": "2.14.1", - "Humanizer.Core.zh-Hans": "2.14.1", - "Humanizer.Core.zh-Hant": "2.14.1" - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "Humanizer.Core.af/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/af/Humanizer.resources.dll": { - "locale": "af" - } - } - }, - "Humanizer.Core.ar/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ar/Humanizer.resources.dll": { - "locale": "ar" - } - } - }, - "Humanizer.Core.az/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/az/Humanizer.resources.dll": { - "locale": "az" - } - } - }, - "Humanizer.Core.bg/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bg/Humanizer.resources.dll": { - "locale": "bg" - } - } - }, - "Humanizer.Core.bn-BD/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/bn-BD/Humanizer.resources.dll": { - "locale": "bn-BD" - } - } - }, - "Humanizer.Core.cs/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/cs/Humanizer.resources.dll": { - "locale": "cs" - } - } - }, - "Humanizer.Core.da/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/da/Humanizer.resources.dll": { - "locale": "da" - } - } - }, - "Humanizer.Core.de/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/de/Humanizer.resources.dll": { - "locale": "de" - } - } - }, - "Humanizer.Core.el/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/el/Humanizer.resources.dll": { - "locale": "el" - } - } - }, - "Humanizer.Core.es/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/es/Humanizer.resources.dll": { - "locale": "es" - } - } - }, - "Humanizer.Core.fa/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fa/Humanizer.resources.dll": { - "locale": "fa" - } - } - }, - "Humanizer.Core.fi-FI/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fi-FI/Humanizer.resources.dll": { - "locale": "fi-FI" - } - } - }, - "Humanizer.Core.fr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr/Humanizer.resources.dll": { - "locale": "fr" - } - } - }, - "Humanizer.Core.fr-BE/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/fr-BE/Humanizer.resources.dll": { - "locale": "fr-BE" - } - } - }, - "Humanizer.Core.he/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/he/Humanizer.resources.dll": { - "locale": "he" - } - } - }, - "Humanizer.Core.hr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hr/Humanizer.resources.dll": { - "locale": "hr" - } - } - }, - "Humanizer.Core.hu/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hu/Humanizer.resources.dll": { - "locale": "hu" - } - } - }, - "Humanizer.Core.hy/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/hy/Humanizer.resources.dll": { - "locale": "hy" - } - } - }, - "Humanizer.Core.id/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/id/Humanizer.resources.dll": { - "locale": "id" - } - } - }, - "Humanizer.Core.is/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/is/Humanizer.resources.dll": { - "locale": "is" - } - } - }, - "Humanizer.Core.it/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/it/Humanizer.resources.dll": { - "locale": "it" - } - } - }, - "Humanizer.Core.ja/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ja/Humanizer.resources.dll": { - "locale": "ja" - } - } - }, - "Humanizer.Core.ko-KR/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { - "locale": "ko-KR" - } - } - }, - "Humanizer.Core.ku/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ku/Humanizer.resources.dll": { - "locale": "ku" - } - } - }, - "Humanizer.Core.lv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/lv/Humanizer.resources.dll": { - "locale": "lv" - } - } - }, - "Humanizer.Core.ms-MY/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { - "locale": "ms-MY" - } - } - }, - "Humanizer.Core.mt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/mt/Humanizer.resources.dll": { - "locale": "mt" - } - } - }, - "Humanizer.Core.nb/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb/Humanizer.resources.dll": { - "locale": "nb" - } - } - }, - "Humanizer.Core.nb-NO/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nb-NO/Humanizer.resources.dll": { - "locale": "nb-NO" - } - } - }, - "Humanizer.Core.nl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/nl/Humanizer.resources.dll": { - "locale": "nl" - } - } - }, - "Humanizer.Core.pl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pl/Humanizer.resources.dll": { - "locale": "pl" - } - } - }, - "Humanizer.Core.pt/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/pt/Humanizer.resources.dll": { - "locale": "pt" - } - } - }, - "Humanizer.Core.ro/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ro/Humanizer.resources.dll": { - "locale": "ro" - } - } - }, - "Humanizer.Core.ru/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/ru/Humanizer.resources.dll": { - "locale": "ru" - } - } - }, - "Humanizer.Core.sk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sk/Humanizer.resources.dll": { - "locale": "sk" - } - } - }, - "Humanizer.Core.sl/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sl/Humanizer.resources.dll": { - "locale": "sl" - } - } - }, - "Humanizer.Core.sr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr/Humanizer.resources.dll": { - "locale": "sr" - } - } - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sr-Latn/Humanizer.resources.dll": { - "locale": "sr-Latn" - } - } - }, - "Humanizer.Core.sv/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/sv/Humanizer.resources.dll": { - "locale": "sv" - } - } - }, - "Humanizer.Core.th-TH/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { - "locale": "th-TH" - } - } - }, - "Humanizer.Core.tr/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/tr/Humanizer.resources.dll": { - "locale": "tr" - } - } - }, - "Humanizer.Core.uk/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uk/Humanizer.resources.dll": { - "locale": "uk" - } - } - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { - "locale": "uz-Cyrl-UZ" - } - } - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { - "locale": "uz-Latn-UZ" - } - } - }, - "Humanizer.Core.vi/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/vi/Humanizer.resources.dll": { - "locale": "vi" - } - } - }, - "Humanizer.Core.zh-CN/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-CN/Humanizer.resources.dll": { - "locale": "zh-CN" - } - } - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hans/Humanizer.resources.dll": { - "locale": "zh-Hans" - } - } - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "dependencies": { - "Humanizer.Core": "2.14.1" - }, - "resources": { - "lib/net6.0/zh-Hant/Humanizer.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "System.DirectoryServices.Protocols": "7.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "dependencies": { - "Microsoft.Extensions.Features": "7.0.9", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.9", - "Newtonsoft.Json": "13.0.1", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Build/17.3.2": { - "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "System.Collections.Immutable": "6.0.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Reflection.Metadata": "6.0.0", - "System.Reflection.MetadataLoadContext": "6.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Dataflow": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.Build.Framework/17.3.2": { - "dependencies": { - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Build.Framework.dll": { - "assemblyVersion": "15.1.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "assemblyVersion": "3.3.2.30504", - "fileVersion": "3.3.2.30504" - } - } - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "6.0.0", - "System.Memory": "4.5.5", - "System.Reflection.Metadata": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Features": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Data.DataSetExtensions": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.16" - } - } - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "Microsoft.CodeAnalysis.Elfie": "1.0.0", - "Microsoft.CodeAnalysis.Scripting.Common": "4.4.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.4.0", - "Microsoft.DiaSymReader": "1.4.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { - "assemblyVersion": "6.0.11.0", - "fileVersion": "6.0.1122.52304" - } - } - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.4.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "4.4.0", - "System.Composition": "6.0.0", - "System.IO.Pipelines": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "4.4.0.0", - "fileVersion": "4.400.22.56111" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.SqlClient/5.0.2": { - "dependencies": { - "Azure.Identity": "1.6.0", - "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", - "Microsoft.SqlServer.Server": "1.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Caching": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "7.0.0" - }, - "runtime": { - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "native": { - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "fileVersion": "5.0.1.0" - } - } - }, - "Microsoft.DiaSymReader/1.4.0": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.400.22.11101" - } - } - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "dependencies": { - "Humanizer": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Features": "4.4.0", - "Newtonsoft.Json": "13.0.1", - "NuGet.ProjectModel": "6.3.1" - }, - "runtime": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9", - "Microsoft.EntityFrameworkCore.Analyzers": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": {}, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Mono.TextTemplating": "2.2.1" - } - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "dependencies": { - "Microsoft.Data.SqlClient": "5.0.2", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "7.0.9.0", - "fileVersion": "7.0.923.31909" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "7.0.9" - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {}, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - } - }, - "Microsoft.Extensions.Features/7.0.9": { - "runtime": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.923.32110" - } - } - }, - "Microsoft.Extensions.Logging/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": {}, - "Microsoft.Extensions.Options/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Primitives/7.0.0": {}, - "Microsoft.Identity.Client/4.45.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.45.0.0", - "fileVersion": "4.45.0.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "dependencies": { - "Microsoft.Identity.Client": "4.45.0", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "2.19.3.0", - "fileVersion": "2.19.3.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.21.0", - "System.IdentityModel.Tokens.Jwt": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "6.21.0", - "System.Security.Cryptography.Cng": "5.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.NET.StringTools/17.3.2": { - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.NET.StringTools.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "17.3.2.46306" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.OpenApi/1.4.3": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.4.3.0", - "fileVersion": "1.4.3.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "7.0.8" - }, - "runtime": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Razor": "6.0.11", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "dependencies": { - "Microsoft.Build": "17.3.2", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration": "7.0.8" - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "assemblyVersion": "7.0.8.0", - "fileVersion": "7.0.823.36101" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.Microsoft.Win32.Primitives": "4.3.0" - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "dependencies": { - "System.CodeDom": "4.4.0" - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "dependencies": { - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.22727" - } - } - }, - "NuGet.Common/6.3.1": { - "dependencies": { - "NuGet.Frameworks": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Common.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Configuration/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "dependencies": { - "NuGet.Configuration": "6.3.1", - "NuGet.LibraryModel": "6.3.1", - "NuGet.Protocol": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Frameworks/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.LibraryModel/6.3.1": { - "dependencies": { - "NuGet.Common": "6.3.1", - "NuGet.Versioning": "6.3.1" - }, - "runtime": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Packaging/6.3.1": { - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "NuGet.Configuration": "6.3.1", - "NuGet.Versioning": "6.3.1", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Pkcs": "5.0.0" - }, - "runtime": { - "lib/net5.0/NuGet.Packaging.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.ProjectModel/6.3.1": { - "dependencies": { - "NuGet.DependencyResolver.Core": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Protocol/6.3.1": { - "dependencies": { - "NuGet.Packaging": "6.3.1" - }, - "runtime": { - "lib/net5.0/NuGet.Protocol.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "NuGet.Versioning/6.3.1": { - "runtime": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "assemblyVersion": "6.3.1.1", - "fileVersion": "6.3.1.1" - } - } - }, - "runtime.any.System.Collections/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": {}, - "runtime.any.System.Diagnostics.Tracing/4.3.0": {}, - "runtime.any.System.Globalization/4.3.0": {}, - "runtime.any.System.Globalization.Calendars/4.3.0": {}, - "runtime.any.System.IO/4.3.0": {}, - "runtime.any.System.Reflection/4.3.0": {}, - "runtime.any.System.Reflection.Extensions/4.3.0": {}, - "runtime.any.System.Reflection.Primitives/4.3.0": {}, - "runtime.any.System.Resources.ResourceManager/4.3.0": {}, - "runtime.any.System.Runtime/4.3.0": { - "dependencies": { - "System.Private.Uri": "4.3.0" - } - }, - "runtime.any.System.Runtime.Handles/4.3.0": {}, - "runtime.any.System.Runtime.InteropServices/4.3.0": {}, - "runtime.any.System.Text.Encoding/4.3.0": {}, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": {}, - "runtime.any.System.Threading.Tasks/4.3.0": {}, - "runtime.any.System.Threading.Timer/4.3.0": {}, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "runtime.win.System.Console/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": {}, - "runtime.win.System.IO.FileSystem/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Net.NameResolution": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "dependencies": { - "System.Private.Uri": "4.3.0" - } - }, - "Swashbuckle.AspNetCore/6.5.0": { - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" - } - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.5.1": {}, - "System.CodeDom/4.4.0": {}, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Collections": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Composition/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - } - }, - "System.Composition.AttributedModel/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Convention/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Hosting/6.0.0": { - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Runtime/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.TypedParts/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.win.System.Console": "4.3.0" - } - }, - "System.Data.DataSetExtensions/4.5.0": {}, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Diagnostics.Debug": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": {}, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tools": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tracing": "4.3.0" - } - }, - "System.DirectoryServices.Protocols/7.0.1": { - "runtime": { - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "7.0.0.1", - "fileVersion": "7.0.723.27404" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Formats.Asn1/5.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization.Calendars": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.any.System.IO": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.IO.FileSystem": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Pipelines/7.0.0": {}, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Memory/4.5.5": {}, - "System.Memory.Data/1.0.2": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "assemblyVersion": "1.0.2.0", - "fileVersion": "1.0.221.20802" - } - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.NameResolution/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.win.System.Net.Primitives": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.Net.Sockets": "4.3.0" - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Private.Uri/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Extensions": "4.3.0" - } - }, - "System.Reflection.Metadata/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - } - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "dependencies": { - "System.Collections.Immutable": "6.0.0", - "System.Reflection.Metadata": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Primitives": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Resources.ResourceManager": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.any.System.Runtime": "4.3.0" - } - }, - "System.Runtime.Caching/5.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Runtime.Extensions": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.any.System.Runtime.InteropServices": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.any.System.Text.Encoding.Extensions": "4.3.0" - } - }, - "System.Text.Encodings.Web/7.0.0": {}, - "System.Text.Json/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Overlapped/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Tasks.Dataflow/6.0.0": {}, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Timer": "4.3.0" - } - }, - "System.Windows.Extensions/6.0.0": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - } - } - }, - "libraries": { - "Microsoft.SelfService.Portal.Core.API/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==", - "path": "automapper/12.0.1", - "hashPath": "automapper.12.0.1.nupkg.sha512" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==", - "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1", - "hashPath": "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512" - }, - "Azure.Core/1.24.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==", - "path": "azure.core/1.24.0", - "hashPath": "azure.core.1.24.0.nupkg.sha512" - }, - "Azure.Identity/1.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==", - "path": "azure.identity/1.6.0", - "hashPath": "azure.identity.1.6.0.nupkg.sha512" - }, - "Humanizer/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", - "path": "humanizer/2.14.1", - "hashPath": "humanizer.2.14.1.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.af/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", - "path": "humanizer.core.af/2.14.1", - "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ar/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", - "path": "humanizer.core.ar/2.14.1", - "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.az/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", - "path": "humanizer.core.az/2.14.1", - "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bg/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", - "path": "humanizer.core.bg/2.14.1", - "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.bn-BD/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", - "path": "humanizer.core.bn-bd/2.14.1", - "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.cs/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", - "path": "humanizer.core.cs/2.14.1", - "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.da/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", - "path": "humanizer.core.da/2.14.1", - "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.de/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", - "path": "humanizer.core.de/2.14.1", - "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.el/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", - "path": "humanizer.core.el/2.14.1", - "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.es/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", - "path": "humanizer.core.es/2.14.1", - "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fa/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", - "path": "humanizer.core.fa/2.14.1", - "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fi-FI/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", - "path": "humanizer.core.fi-fi/2.14.1", - "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", - "path": "humanizer.core.fr/2.14.1", - "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.fr-BE/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", - "path": "humanizer.core.fr-be/2.14.1", - "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.he/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", - "path": "humanizer.core.he/2.14.1", - "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", - "path": "humanizer.core.hr/2.14.1", - "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hu/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", - "path": "humanizer.core.hu/2.14.1", - "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.hy/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", - "path": "humanizer.core.hy/2.14.1", - "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.id/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", - "path": "humanizer.core.id/2.14.1", - "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.is/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", - "path": "humanizer.core.is/2.14.1", - "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.it/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", - "path": "humanizer.core.it/2.14.1", - "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ja/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", - "path": "humanizer.core.ja/2.14.1", - "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ko-KR/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", - "path": "humanizer.core.ko-kr/2.14.1", - "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ku/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", - "path": "humanizer.core.ku/2.14.1", - "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.lv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", - "path": "humanizer.core.lv/2.14.1", - "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ms-MY/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", - "path": "humanizer.core.ms-my/2.14.1", - "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.mt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", - "path": "humanizer.core.mt/2.14.1", - "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", - "path": "humanizer.core.nb/2.14.1", - "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nb-NO/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", - "path": "humanizer.core.nb-no/2.14.1", - "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.nl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", - "path": "humanizer.core.nl/2.14.1", - "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", - "path": "humanizer.core.pl/2.14.1", - "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.pt/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", - "path": "humanizer.core.pt/2.14.1", - "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ro/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", - "path": "humanizer.core.ro/2.14.1", - "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.ru/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", - "path": "humanizer.core.ru/2.14.1", - "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", - "path": "humanizer.core.sk/2.14.1", - "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sl/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", - "path": "humanizer.core.sl/2.14.1", - "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", - "path": "humanizer.core.sr/2.14.1", - "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", - "path": "humanizer.core.sr-latn/2.14.1", - "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.sv/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", - "path": "humanizer.core.sv/2.14.1", - "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.th-TH/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", - "path": "humanizer.core.th-th/2.14.1", - "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.tr/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", - "path": "humanizer.core.tr/2.14.1", - "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uk/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", - "path": "humanizer.core.uk/2.14.1", - "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", - "path": "humanizer.core.uz-cyrl-uz/2.14.1", - "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", - "path": "humanizer.core.uz-latn-uz/2.14.1", - "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.vi/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", - "path": "humanizer.core.vi/2.14.1", - "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-CN/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", - "path": "humanizer.core.zh-cn/2.14.1", - "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", - "path": "humanizer.core.zh-hans/2.14.1", - "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512" - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", - "path": "humanizer.core.zh-hant/2.14.1", - "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Sh+zGJAgG5MwQcHATWrKsFn4IY5psaX2c1QtKwSNPlEuTjZIZe3aVjEWMHT/ou2jkQ12S2kjOzaW5nMeg/cBA==", - "path": "microsoft.aspnetcore.authentication.negotiate/7.0.9", - "hashPath": "microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/A7MkuL0g4r/oNuASR2gIukWoG2360/tuS9RoiU1dOwTlMYthHJaK8NEpswMihcImCDryiHp5dJCPTZHIs9TQ==", - "path": "microsoft.aspnetcore.connections.abstractions/7.0.9", - "hashPath": "microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6iMRtYIQZj7gMC7iVotL9bZjCjnbV2ZkAAduKYHfV6v+WQhEjk0iEGSFNVh6N9rTCNTeZ2xVgv3xi675GwyDzQ==", - "path": "microsoft.aspnetcore.jsonpatch/7.0.9", - "hashPath": "microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dhAFLGV3RfK6BAbLYpTKcVch1hcyP2qDWNy7Pk2wGrQEO/yWbWwiR9c13hk5kGWcPMGeVMkcuftUo6OAHe2yIA==", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.9", - "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5kBnHntQTJqmYV66Khdl9OJ/j2Pw8cOKj8kNQuLCpfCsPbSijp334Vaad3vaGnG9Wpgq/VbSUSRxZOoroOe8zQ==", - "path": "microsoft.aspnetcore.openapi/7.0.9", - "hashPath": "microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SPjSZIL7JFI5XbVfRMPG/fHLr/xfumSrmN+IOimyIf71WQQ8u2hpaE5+VvpcgjJ5VrJMhfDEhdEAB+Nj/S16dQ==", - "path": "microsoft.aspnetcore.razor.language/6.0.11", - "hashPath": "microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.Build/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k5+7CfF/aM/hykfnrF93VhbUnhGfpJkGaD+ce8VlhLnOqDyts7WV+8Up3YCP6qmXMZFeeH/Cp23w2wSliP0mBw==", - "path": "microsoft.build/17.3.2", - "hashPath": "microsoft.build.17.3.2.nupkg.sha512" - }, - "Microsoft.Build.Framework/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==", - "path": "microsoft.build.framework/17.3.2", - "hashPath": "microsoft.build.framework.17.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", - "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", - "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JfHupS/B7Jb5MZoYkFFABn3mux0wQgxi2D8F/rJYZeRBK2ZOyk7TjQ2Kq9rh6W/DCh0KNbbSbn5qoFar+ueHqw==", - "path": "microsoft.codeanalysis.common/4.4.0", - "hashPath": "microsoft.codeanalysis.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eD2w0xHRoaqK07hjlOKGR9eLNy3nimiGNeCClNax1NDgS/+DBtBqCjXelOa+TNy99kIB3nHhUqDmr46nDXy/RQ==", - "path": "microsoft.codeanalysis.csharp/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Un4XeiWD8Xo4A/Q6Wrkrt9UCas6EaP/ZfQAHXNjde5ULkvliWzvy0/ZlXzlPo6L/Xoon1BWOFMprIQWCjuLq9A==", - "path": "microsoft.codeanalysis.csharp.features/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ADmI2jcwJP9GgBsVx2l0Bo0v3Hn4hHBg1uJ5zHd230mkO8rUJBLZu2h3tCbpwJMkpAIRtrxuZDD5uNfiyz0Q5Q==", - "path": "microsoft.codeanalysis.csharp.workspaces/4.4.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", - "path": "microsoft.codeanalysis.elfie/1.0.0", - "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0LEXWpaDlZMl5lOnM872FuBmcDD99qKp4QmmFsMpJjnq7f21KuNchdyuSdh9pdpibl2JfdMWrvA56y5dKc6EPQ==", - "path": "microsoft.codeanalysis.features/4.4.0", - "hashPath": "microsoft.codeanalysis.features.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-40M7AHKPKvOw3LnWsaKmHitk0taBZ8982zoZBQstYzsfdH+tcIdeOewRHvuej23T7HV6d8se9MZdKC9O2I78vQ==", - "path": "microsoft.codeanalysis.razor/6.0.11", - "hashPath": "microsoft.codeanalysis.razor.6.0.11.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RkAwCFJ8LfN7TfbWDejm50nucPxVoG/vDh0qVIoGx1U2FZhaBct72U4lGIACLuYsa0dIlC7Y0ivBemfDHnqWmA==", - "path": "microsoft.codeanalysis.scripting.common/4.4.0", - "hashPath": "microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6KzmmTIUU7qInQldcSPaW0nkrO71zlFPhoiabFBhkokEit49rLx4Kr/G3agBchYzirScrXibqgTRQkvx9WcJTw==", - "path": "microsoft.codeanalysis.workspaces.common/4.4.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/5.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mxcYU9I5TLzUegLVXiTtOE89RXN3GafL1Y+ExIbXvivvQtxplI4wxOgsiZGO4TZC18OJqui7mLVmiYpdFFImRQ==", - "path": "microsoft.data.sqlclient/5.0.2", - "hashPath": "microsoft.data.sqlclient.5.0.2.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==", - "path": "microsoft.data.sqlclient.sni.runtime/5.0.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512" - }, - "Microsoft.DiaSymReader/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iLtWq5/W5ePzSraavAFeXAbasE6REDByizTz6M8yQO3e4jf+6pRqPLdNCSvnSfKRVqsF7y/lTVWhqlf89ttweg==", - "path": "microsoft.diasymreader/1.4.0", - "hashPath": "microsoft.diasymreader.1.4.0.nupkg.sha512" - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QXtyFZWYAwlKymbFCQT5O21BJ7hLmQcJGB/EdvUV0VuJyeWJMf/8JSI+ijw3IoOd7MUTBpGVNNE8UDM9gUm4Qw==", - "path": "microsoft.dotnet.scaffolding.shared/7.0.8", - "hashPath": "microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9YuCdQWuRAmYYHqwW1h5ukKMC1fmNvcVHdp3gb8zdHxwSQz7hkGpYOBEjm6dRXRmGRkpUyHL8rwUz4kd53Ev0A==", - "path": "microsoft.entityframeworkcore/7.0.9", - "hashPath": "microsoft.entityframeworkcore.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cfY6Fn7cnP/5pXndL8QYaey/B2nGn1fwze5aSaMJymmbqwqYzFiszHuWbsdVBCDYJc8ok7eB1m/nCc3/rltulQ==", - "path": "microsoft.entityframeworkcore.abstractions/7.0.9", - "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VvqFD3DdML6LhPCAR/lG2xNX66juylC8v57yUAAYnUSdEUOMRi3lNoT4OrNdG0rere3UOQPhvVl5FH2QdyoF8Q==", - "path": "microsoft.entityframeworkcore.analyzers/7.0.9", - "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tWsa+spzKZAwHrUP6vYM1LLh0P89UMcldEjerFPPZb0LcI/ONQmh7ldK4Q8TeRuIiuXxYgRYPElSgxwLp14oug==", - "path": "microsoft.entityframeworkcore.design/7.0.9", - "hashPath": "microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-u7iN6cNd6SJUlpdk24JVIbkji/UbkEEQ7pXncTyT4eXXj+Hz2y4NSZFOAywPGcioIgX1YzbKWDiJhk7hjSFxBQ==", - "path": "microsoft.entityframeworkcore.relational/7.0.9", - "hashPath": "microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-19S5BWZBcaShhLWzePi9iOq+meKIgL+dDlS0NQgPOQapu3wb3So3ZL0xgPmmlyq3GLYvXiCmQsK3Yv3vXYaMTg==", - "path": "microsoft.entityframeworkcore.sqlserver/7.0.9", - "hashPath": "microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GWOSIe8ltR/mqv2wpRvMhy6ULapdKhZXXpXSGWzG1fRxhYXjSGpe2Pqhxqo46o9RDGlk0WJUXrwyU+N4voPxMw==", - "path": "microsoft.entityframeworkcore.tools/7.0.9", - "hashPath": "microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", - "path": "microsoft.extensions.apidescription.server/6.0.5", - "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", - "path": "microsoft.extensions.caching.abstractions/7.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", - "path": "microsoft.extensions.caching.memory/7.0.0", - "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", - "path": "microsoft.extensions.configuration.abstractions/7.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", - "path": "microsoft.extensions.dependencyinjection/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", - "path": "microsoft.extensions.dependencymodel/7.0.0", - "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Features/7.0.9": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IJ2vdDt2OYCKyJ7ZJPIZKa4b0M0tsG36h0QUt1d/E8IMAnjIncI+1i9Am0nmheD/wpcVd9eDykiV4dklcwUd3Q==", - "path": "microsoft.extensions.features/7.0.9", - "hashPath": "microsoft.extensions.features.7.0.9.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", - "path": "microsoft.extensions.logging/7.0.0", - "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", - "path": "microsoft.extensions.logging.abstractions/7.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", - "path": "microsoft.extensions.options/7.0.0", - "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", - "path": "microsoft.extensions.primitives/7.0.0", - "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.45.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==", - "path": "microsoft.identity.client/4.45.0", - "hashPath": "microsoft.identity.client.4.45.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", - "path": "microsoft.identity.client.extensions.msal/2.19.3", - "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==", - "path": "microsoft.identitymodel.abstractions/6.21.0", - "hashPath": "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==", - "path": "microsoft.identitymodel.jsonwebtokens/6.21.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==", - "path": "microsoft.identitymodel.logging/6.21.0", - "hashPath": "microsoft.identitymodel.logging.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==", - "path": "microsoft.identitymodel.protocols/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==", - "path": "microsoft.identitymodel.tokens/6.21.0", - "hashPath": "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512" - }, - "Microsoft.NET.StringTools/17.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==", - "path": "microsoft.net.stringtools/17.3.2", - "hashPath": "microsoft.net.stringtools.17.3.2.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.OpenApi/1.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", - "path": "microsoft.openapi/1.4.3", - "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AbrSIuBwG/7+7JBMOSyHVYqcz8YdUdArGIx4Asckm/U8FWKdT6NSJmObZh3X2Da2/W176FqG3MPTPtw/P0kJag==", - "path": "microsoft.visualstudio.web.codegeneration/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wdud/mzEfFMHqPNBb+N+jVeI2INNSP5WlCrPepQqvoLqiZwM0wUvf7yWGrVbNHBMOjDk3lIavqjXNkY9PriOQg==", - "path": "microsoft.visualstudio.web.codegeneration.core/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-56UeN0J8SA5PJjvf6Mv0ZbhLWO6Cr+YGM5eOsNejpQDL+ba8pt8BR7SBMTnSrZIOEeOhY3nAPUkOUK3bh+v3Tg==", - "path": "microsoft.visualstudio.web.codegeneration.design/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlyRk0pmpvPCzCot0bY+Lt6bctGC4dqrQxk1vk2ep+wTdH/CZ8FflnWHEKGBpd+kMrwy93UbJZ8HSAxlBLksLA==", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JTepVMzR2XOr6BVgejMltlzi3O6LMpNb3dz0VKczsjKKX/l6ZT1iTUC6FjuHs9SNTc8rTlEK7hw2TIKpGy1tCQ==", - "path": "microsoft.visualstudio.web.codegeneration.templating/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5T6uK9MH6zWXXyVinlvmbz7fFiuA5/UIFa1wAWD6ylkReDlPTEOq5AMwlkdlEPZuqMgICH4N3BQAizY/EIAlzA==", - "path": "microsoft.visualstudio.web.codegeneration.utils/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512" - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xQIJfP4NpuAnFykWuXW5nr+1WyPLNVbMhqFS7SKX6CIm32Ak9iCMFS1NSbksl5bfIXaSg1rjJM8TpZYoKM+Ffg==", - "path": "microsoft.visualstudio.web.codegenerators.mvc/7.0.8", - "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "path": "mono.texttemplating/2.2.1", - "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "path": "newtonsoft.json.bson/1.0.2", - "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" - }, - "NuGet.Common/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==", - "path": "nuget.common/6.3.1", - "hashPath": "nuget.common.6.3.1.nupkg.sha512" - }, - "NuGet.Configuration/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==", - "path": "nuget.configuration/6.3.1", - "hashPath": "nuget.configuration.6.3.1.nupkg.sha512" - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wSr4XMNE5f82ZveuATVwj+kS1/dWyXARjOZcS70Aiaj+XEWL8uo4EFTwPIvqPHWCem5cxmavBRuWBwlQ4HWjeA==", - "path": "nuget.dependencyresolver.core/6.3.1", - "hashPath": "nuget.dependencyresolver.core.6.3.1.nupkg.sha512" - }, - "NuGet.Frameworks/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==", - "path": "nuget.frameworks/6.3.1", - "hashPath": "nuget.frameworks.6.3.1.nupkg.sha512" - }, - "NuGet.LibraryModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aEB4AesZ+ddLVTBbewQFNHagbVbwewobBk2+8mk0THWjn0qIUH2l4kLTMmiTD7DOthVB6pYds8bz1B8Z0rEPrQ==", - "path": "nuget.librarymodel/6.3.1", - "hashPath": "nuget.librarymodel.6.3.1.nupkg.sha512" - }, - "NuGet.Packaging/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==", - "path": "nuget.packaging/6.3.1", - "hashPath": "nuget.packaging.6.3.1.nupkg.sha512" - }, - "NuGet.ProjectModel/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TtC4zUKnMIkJBtM7P1GtvVK2jCh4Xi8SVK+bEsCUSoZ0rJf7Zqw2oBrmMNWe51IlfOcYkREmn6xif9mgJXOnmQ==", - "path": "nuget.projectmodel/6.3.1", - "hashPath": "nuget.projectmodel.6.3.1.nupkg.sha512" - }, - "NuGet.Protocol/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==", - "path": "nuget.protocol/6.3.1", - "hashPath": "nuget.protocol.6.3.1.nupkg.sha512" - }, - "NuGet.Versioning/6.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==", - "path": "nuget.versioning/6.3.1", - "hashPath": "nuget.versioning.6.3.1.nupkg.sha512" - }, - "runtime.any.System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", - "path": "runtime.any.system.collections/4.3.0", - "hashPath": "runtime.any.system.collections.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==", - "path": "runtime.any.system.diagnostics.tools/4.3.0", - "hashPath": "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", - "path": "runtime.any.system.diagnostics.tracing/4.3.0", - "hashPath": "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", - "path": "runtime.any.system.globalization/4.3.0", - "hashPath": "runtime.any.system.globalization.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", - "path": "runtime.any.system.globalization.calendars/4.3.0", - "hashPath": "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "runtime.any.System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", - "path": "runtime.any.system.io/4.3.0", - "hashPath": "runtime.any.system.io.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", - "path": "runtime.any.system.reflection/4.3.0", - "hashPath": "runtime.any.system.reflection.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==", - "path": "runtime.any.system.reflection.extensions/4.3.0", - "hashPath": "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", - "path": "runtime.any.system.reflection.primitives/4.3.0", - "hashPath": "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", - "path": "runtime.any.system.resources.resourcemanager/4.3.0", - "hashPath": "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", - "path": "runtime.any.system.runtime/4.3.0", - "hashPath": "runtime.any.system.runtime.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", - "path": "runtime.any.system.runtime.handles/4.3.0", - "hashPath": "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", - "path": "runtime.any.system.runtime.interopservices/4.3.0", - "hashPath": "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", - "path": "runtime.any.system.text.encoding/4.3.0", - "hashPath": "runtime.any.system.text.encoding.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", - "path": "runtime.any.system.text.encoding.extensions/4.3.0", - "hashPath": "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", - "path": "runtime.any.system.threading.tasks/4.3.0", - "hashPath": "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512" - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==", - "path": "runtime.any.system.threading.timer/4.3.0", - "hashPath": "runtime.any.system.threading.timer.4.3.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==", - "path": "runtime.win.microsoft.win32.primitives/4.3.0", - "hashPath": "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RRACWygml5dnmfgC1SW6tLGsFgwsUAKFtvhdyHnIEz4EhWyrd7pacDdY95CacQJy7BMXRDRCejC9aCRC0Y1sQA==", - "path": "runtime.win.system.console/4.3.0", - "hashPath": "runtime.win.system.console.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", - "path": "runtime.win.system.diagnostics.debug/4.3.0", - "hashPath": "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==", - "path": "runtime.win.system.io.filesystem/4.3.0", - "hashPath": "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==", - "path": "runtime.win.system.net.primitives/4.3.0", - "hashPath": "runtime.win.system.net.primitives.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==", - "path": "runtime.win.system.net.sockets/4.3.0", - "hashPath": "runtime.win.system.net.sockets.4.3.0.nupkg.sha512" - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", - "path": "runtime.win.system.runtime.extensions/4.3.0", - "hashPath": "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", - "path": "swashbuckle.aspnetcore/6.5.0", - "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", - "path": "swashbuckle.aspnetcore.swagger/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", - "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", - "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.CodeDom/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "path": "system.codedom/4.4.0", - "hashPath": "system.codedom.4.4.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", - "path": "system.composition/6.0.0", - "hashPath": "system.composition.6.0.0.nupkg.sha512" - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", - "path": "system.composition.attributedmodel/6.0.0", - "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", - "path": "system.composition.convention/6.0.0", - "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", - "path": "system.composition.hosting/6.0.0", - "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", - "path": "system.composition.runtime/6.0.0", - "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", - "path": "system.composition.typedparts/6.0.0", - "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", - "path": "system.data.datasetextensions/4.5.0", - "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/7.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", - "path": "system.directoryservices.protocols/7.0.1", - "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Formats.Asn1/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", - "path": "system.formats.asn1/5.0.0", - "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==", - "path": "system.identitymodel.tokens.jwt/6.21.0", - "hashPath": "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Pipelines/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", - "path": "system.io.pipelines/7.0.0", - "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "path": "system.memory/4.5.5", - "hashPath": "system.memory.4.5.5.nupkg.sha512" - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "path": "system.memory.data/1.0.2", - "hashPath": "system.memory.data.1.0.2.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.NameResolution/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", - "path": "system.net.nameresolution/4.3.0", - "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", - "path": "system.private.uri/4.3.0", - "hashPath": "system.private.uri.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sffDOcex1C3HO5kDolOYcWXTwRpZY/LvJujM6SMjn63fWMJWchYAAmkoAJXlbpZ5yf4d+KMgxd+LeETa4gD9sQ==", - "path": "system.reflection.metadata/6.0.0", - "hashPath": "system.reflection.metadata.6.0.0.nupkg.sha512" - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SuK8qTHbmG3PToLo1TEq8YSfY31FiKhASBmjozUTAleDgiX4H2X4jm0VPFb+K2soSSmYPyHTpHp35TctfNtDzQ==", - "path": "system.reflection.metadataloadcontext/6.0.0", - "hashPath": "system.reflection.metadataloadcontext.6.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", - "path": "system.runtime.caching/5.0.0", - "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "path": "system.security.cryptography.cng/5.0.0", - "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", - "path": "system.security.cryptography.pkcs/5.0.0", - "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" - }, - "System.Text.Json/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", - "path": "system.text.json/7.0.0", - "hashPath": "system.text.json.7.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", - "path": "system.threading.overlapped/4.3.0", - "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Dataflow/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+tyDCU3/B1lDdOOAJywHQoFwyXIUghIaP2BxG79uvhfTnO+D9qIgjVlL/JV2NTliYbMHpd6eKDmHp2VHpij7MA==", - "path": "system.threading.tasks.dataflow/6.0.0", - "hashPath": "system.threading.tasks.dataflow.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 3614b6e..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.exe b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.exe deleted file mode 100644 index 17fcb9f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.exe and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.pdb b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.pdb deleted file mode 100644 index e084b4c..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.pdb and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json deleted file mode 100644 index 10d7259..0000000 --- a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SelfService.Portal.Core.API.runtimeconfig.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net7.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "7.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "7.0.0" - } - ], - "configProperties": { - "System.GC.Server": true, - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SqlServer.Server.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SqlServer.Server.dll deleted file mode 100644 index ddeaa86..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.SqlServer.Server.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll deleted file mode 100644 index a5b93ee..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll deleted file mode 100644 index 534a126..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll deleted file mode 100644 index 99fe458..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll deleted file mode 100644 index 0391697..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.dll deleted file mode 100644 index a374651..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGeneration.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll deleted file mode 100644 index a1c3c0f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Win32.SystemEvents.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 66af198..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Newtonsoft.Json.Bson.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Newtonsoft.Json.Bson.dll deleted file mode 100644 index e9b1dd2..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Newtonsoft.Json.Bson.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Newtonsoft.Json.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Newtonsoft.Json.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Common.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Common.dll deleted file mode 100644 index ce4bda8..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Common.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Configuration.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Configuration.dll deleted file mode 100644 index cbe9417..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Configuration.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.DependencyResolver.Core.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.DependencyResolver.Core.dll deleted file mode 100644 index 908b3e6..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.DependencyResolver.Core.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Frameworks.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Frameworks.dll deleted file mode 100644 index 4eacf6a..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Frameworks.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.LibraryModel.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.LibraryModel.dll deleted file mode 100644 index ba03b76..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.LibraryModel.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Packaging.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Packaging.dll deleted file mode 100644 index a3ec988..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Packaging.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.ProjectModel.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.ProjectModel.dll deleted file mode 100644 index fe01820..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.ProjectModel.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Protocol.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Protocol.dll deleted file mode 100644 index 6b3aa97..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Protocol.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Versioning.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Versioning.dll deleted file mode 100644 index 60cbd1e..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/NuGet.Versioning.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll deleted file mode 100644 index fd052a3..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll deleted file mode 100644 index 2ea00ee..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll deleted file mode 100644 index 0571d0f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.AttributedModel.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.AttributedModel.dll deleted file mode 100644 index d37283b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.AttributedModel.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.Convention.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.Convention.dll deleted file mode 100644 index b6fa4ab..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.Convention.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.Hosting.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.Hosting.dll deleted file mode 100644 index c67f1c0..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.Hosting.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.Runtime.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.Runtime.dll deleted file mode 100644 index 2a4b38c..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.Runtime.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.TypedParts.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.TypedParts.dll deleted file mode 100644 index 7c0c780..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Composition.TypedParts.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Configuration.ConfigurationManager.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index d67c8a8..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.DirectoryServices.Protocols.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 951a113..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Drawing.Common.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Drawing.Common.dll deleted file mode 100644 index 7c9e87b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Drawing.Common.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index 131456c..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Memory.Data.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Memory.Data.dll deleted file mode 100644 index 6f2a3e0..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Memory.Data.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Reflection.MetadataLoadContext.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Reflection.MetadataLoadContext.dll deleted file mode 100644 index e87fcda..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Reflection.MetadataLoadContext.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Runtime.Caching.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Runtime.Caching.dll deleted file mode 100644 index 432ebb4..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Runtime.Caching.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 332dbfa..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Security.Permissions.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Security.Permissions.dll deleted file mode 100644 index 39dd4df..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Security.Permissions.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Windows.Extensions.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/System.Windows.Extensions.dll deleted file mode 100644 index 69f0d1b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/System.Windows.Extensions.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/af/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/af/Humanizer.resources.dll deleted file mode 100644 index e191f5f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/af/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/appsettings.Development.json b/obj/Release/net7.0/win-x64/PubTmp/Out/appsettings.Development.json deleted file mode 100644 index 0c208ae..0000000 --- a/obj/Release/net7.0/win-x64/PubTmp/Out/appsettings.Development.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/appsettings.json b/obj/Release/net7.0/win-x64/PubTmp/Out/appsettings.json deleted file mode 100644 index 005b7be..0000000 --- a/obj/Release/net7.0/win-x64/PubTmp/Out/appsettings.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "Context": "Server=RZ1VCMSQL001\\MSSSP;Database=SSP;TrustServerCertificate=True;Encrypt=False;Integrated Security=SSPI" - } -} \ No newline at end of file diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ar/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ar/Humanizer.resources.dll deleted file mode 100644 index 319af06..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ar/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/az/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/az/Humanizer.resources.dll deleted file mode 100644 index f51f16e..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/az/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/bg/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/bg/Humanizer.resources.dll deleted file mode 100644 index c6b47e9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/bg/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/bn-BD/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/bn-BD/Humanizer.resources.dll deleted file mode 100644 index dead005..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/bn-BD/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Humanizer.resources.dll deleted file mode 100644 index 43094ae..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 10a5b8f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 6e642b5..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 160cb79..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 3a0c7f5..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 9fda8a8..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 1c4018b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 1662edf..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/da/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/da/Humanizer.resources.dll deleted file mode 100644 index 25c518a..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/da/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/de/Humanizer.resources.dll deleted file mode 100644 index eca8773..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index b05c568..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 7d8f563..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d647fbf..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 8c7bda7..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 463b895..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d2b2ebe..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 41818f4..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/dotnet-aspnet-codegenerator-design.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/dotnet-aspnet-codegenerator-design.dll deleted file mode 100644 index e5d1b54..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/dotnet-aspnet-codegenerator-design.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/el/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/el/Humanizer.resources.dll deleted file mode 100644 index 7496654..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/el/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/es/Humanizer.resources.dll deleted file mode 100644 index a2ccea7..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 5a0e03d..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d91150f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2b1d73e..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 4ae1f61..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 58bac36..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 472b0bb..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 66145cb..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fa/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fa/Humanizer.resources.dll deleted file mode 100644 index 71fb905..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fa/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fi-FI/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fi-FI/Humanizer.resources.dll deleted file mode 100644 index 553a14d..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fi-FI/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fr-BE/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fr-BE/Humanizer.resources.dll deleted file mode 100644 index d75e247..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fr-BE/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Humanizer.resources.dll deleted file mode 100644 index 5fb44a9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 401ea0b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index cc8b864..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index a98d0ec..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 4b77322..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index ada43a9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 474cc07..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e6c12b5..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/he/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/he/Humanizer.resources.dll deleted file mode 100644 index deb8b6e..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/he/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/hr/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/hr/Humanizer.resources.dll deleted file mode 100644 index 4d50733..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/hr/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/hu/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/hu/Humanizer.resources.dll deleted file mode 100644 index f93d556..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/hu/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/hy/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/hy/Humanizer.resources.dll deleted file mode 100644 index a61b5e6..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/hy/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/id/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/id/Humanizer.resources.dll deleted file mode 100644 index e605f23..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/id/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/is/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/is/Humanizer.resources.dll deleted file mode 100644 index 40e36d7..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/is/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/it/Humanizer.resources.dll deleted file mode 100644 index 9434487..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 2315e95..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 23f6463..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index dd024d9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 5f2ca6f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index c4b443b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 798de46..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index a354025..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Humanizer.resources.dll deleted file mode 100644 index f949d63..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 7a9c62e..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 70682db..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 0a8ac29..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index dd8dced..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 752d6b7..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d02270a..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8ee1273..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ko-KR/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ko-KR/Humanizer.resources.dll deleted file mode 100644 index 6a5f6c7..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ko-KR/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 1c8a1a4..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 5101654..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 15249dd..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 45b5bfd..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 0d2793b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 32b471d..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 7881c82..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ku/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ku/Humanizer.resources.dll deleted file mode 100644 index 606d2b9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ku/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/lv/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/lv/Humanizer.resources.dll deleted file mode 100644 index 463bf2d..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/lv/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ms-MY/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ms-MY/Humanizer.resources.dll deleted file mode 100644 index 6494db8..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ms-MY/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/mt/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/mt/Humanizer.resources.dll deleted file mode 100644 index 7e056c7..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/mt/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/nb-NO/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/nb-NO/Humanizer.resources.dll deleted file mode 100644 index 4ff1965..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/nb-NO/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/nb/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/nb/Humanizer.resources.dll deleted file mode 100644 index 48d7d6e..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/nb/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/nl/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/nl/Humanizer.resources.dll deleted file mode 100644 index e1bca89..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/nl/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Humanizer.resources.dll deleted file mode 100644 index 1b81e27..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index b1648b9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ab1f415..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index f6565e0..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 1ea99f3..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 919a672..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index d1b15d9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 03b64a3..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index d146dec..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index d6ffabe..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index b179fd5..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 331d87c..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index a326d59..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 44a8a4a..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 186108a..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/pt/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/pt/Humanizer.resources.dll deleted file mode 100644 index 71daa56..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/pt/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ro/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ro/Humanizer.resources.dll deleted file mode 100644 index 0aea9b9..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ro/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Humanizer.resources.dll deleted file mode 100644 index dd2f875..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index c32fb26..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ca6f13a..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4b1c65a..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 7f4fca5..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 8bcb19b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index ff641b1..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 55cd313..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/sk/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/sk/Humanizer.resources.dll deleted file mode 100644 index 4c03f54..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/sk/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/sl/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/sl/Humanizer.resources.dll deleted file mode 100644 index b79bb3c..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/sl/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/sr-Latn/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/sr-Latn/Humanizer.resources.dll deleted file mode 100644 index e846785..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/sr-Latn/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/sr/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/sr/Humanizer.resources.dll deleted file mode 100644 index 7e36e26..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/sr/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/sv/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/sv/Humanizer.resources.dll deleted file mode 100644 index 70974a5..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/sv/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/th-TH/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/th-TH/Humanizer.resources.dll deleted file mode 100644 index 4dcc85d..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/th-TH/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Humanizer.resources.dll deleted file mode 100644 index eff6ad8..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 5eb7e9c..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index b870685..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d3514a4..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index f23a22f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 6df319d..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6110c60..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index edfdcf4..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/uk/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/uk/Humanizer.resources.dll deleted file mode 100644 index d4fb7a2..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/uk/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/uz-Cyrl-UZ/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/uz-Cyrl-UZ/Humanizer.resources.dll deleted file mode 100644 index c76160d..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/uz-Cyrl-UZ/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/uz-Latn-UZ/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/uz-Latn-UZ/Humanizer.resources.dll deleted file mode 100644 index da72030..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/uz-Latn-UZ/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/vi/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/vi/Humanizer.resources.dll deleted file mode 100644 index ff72d7e..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/vi/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/web.config b/obj/Release/net7.0/win-x64/PubTmp/Out/web.config deleted file mode 100644 index 3a891f5..0000000 --- a/obj/Release/net7.0/win-x64/PubTmp/Out/web.config +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-CN/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-CN/Humanizer.resources.dll deleted file mode 100644 index a80799f..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-CN/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Humanizer.resources.dll deleted file mode 100644 index c84c639..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index 96afd23..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index a0877d2..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 1c4359b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 15bbfaf..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index 2c11839..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6eaa45c..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 007dee6..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Humanizer.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Humanizer.resources.dll deleted file mode 100644 index d0cb506..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Humanizer.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll deleted file mode 100644 index c2f0f0b..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 8b76c06..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index dfe8129..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll deleted file mode 100644 index 9e42195..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll deleted file mode 100644 index ecb8019..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index bf9204d..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index f5308ff..0000000 Binary files a/obj/Release/net7.0/win-x64/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/PublishOutputs.6fee49add7.txt b/obj/Release/net7.0/win-x64/PublishOutputs.6fee49add7.txt deleted file mode 100644 index 0904e5e..0000000 --- a/obj/Release/net7.0/win-x64/PublishOutputs.6fee49add7.txt +++ /dev/null @@ -1,227 +0,0 @@ -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.exe -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\appsettings.Development.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\appsettings.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.runtimeconfig.json -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.pdb -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\AutoMapper.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Azure.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Azure.Identity.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Humanizer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.AspNetCore.Authentication.Negotiate.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.AspNetCore.Connections.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.AspNetCore.JsonPatch.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.AspNetCore.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.AspNetCore.Razor.Language.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.Build.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.Build.Framework.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.CodeAnalysis.AnalyzerUtilities.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.CodeAnalysis.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.CodeAnalysis.CSharp.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.CodeAnalysis.Elfie.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.CodeAnalysis.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.CodeAnalysis.Razor.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.CodeAnalysis.Scripting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.CodeAnalysis.Workspaces.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.Data.SqlClient.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.DiaSymReader.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.DotNet.Scaffolding.Shared.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.EntityFrameworkCore.SqlServer.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.Extensions.Features.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.Identity.Client.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.Identity.Client.Extensions.Msal.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.IdentityModel.Abstractions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.IdentityModel.JsonWebTokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.IdentityModel.Logging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.IdentityModel.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.IdentityModel.Tokens.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.NET.StringTools.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.OpenApi.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.SqlServer.Server.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\dotnet-aspnet-codegenerator-design.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.Win32.SystemEvents.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Newtonsoft.Json.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Newtonsoft.Json.Bson.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\NuGet.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\NuGet.Configuration.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\NuGet.DependencyResolver.Core.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\NuGet.Frameworks.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\NuGet.LibraryModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\NuGet.Packaging.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\NuGet.ProjectModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\NuGet.Protocol.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\NuGet.Versioning.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Composition.AttributedModel.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Composition.Convention.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Composition.Hosting.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Composition.Runtime.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Composition.TypedParts.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Configuration.ConfigurationManager.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.DirectoryServices.Protocols.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Drawing.Common.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.IdentityModel.Tokens.Jwt.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Memory.Data.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Reflection.MetadataLoadContext.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Runtime.Caching.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Security.Cryptography.ProtectedData.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Security.Permissions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\System.Windows.Extensions.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\af\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ar\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\az\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\bg\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\bn-BD\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\cs\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\da\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\de\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\el\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\es\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fa\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fi-FI\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fr-BE\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\he\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\hr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\hu\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\hy\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\id\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\is\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\it\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ja\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ko-KR\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ku\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\lv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ms-MY\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\mt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\nb\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\nb-NO\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\nl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pt\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ro\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ru\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\sk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\sl\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\sr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\sr-Latn\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\sv\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\th-TH\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\tr\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\uk\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\uz-Cyrl-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\uz-Latn-UZ\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\vi\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-CN\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hans\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hant\Humanizer.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\cs\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\de\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\es\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\it\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ja\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ko\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pl\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ru\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\tr\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\cs\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\de\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\es\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\it\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ja\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ko\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pl\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ru\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\tr\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.Data.SqlClient.SNI.dll -C:\Users\ASA_Administrator.CCIS-P01S01-CM\source\repos\Microsoft.SelfService.Portal.Core.API\Microsoft.SelfService.Portal.Core.API\obj\Release\net7.0\win-x64\PubTmp\Out\Microsoft.SelfService.Portal.Core.API.deps.json diff --git a/obj/Release/net7.0/win-x64/apphost.exe b/obj/Release/net7.0/win-x64/apphost.exe deleted file mode 100644 index 17fcb9f..0000000 Binary files a/obj/Release/net7.0/win-x64/apphost.exe and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/ref/Microsoft.SelfService.Portal.Core.API.dll b/obj/Release/net7.0/win-x64/ref/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 2ce351a..0000000 Binary files a/obj/Release/net7.0/win-x64/ref/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/refint/Microsoft.SelfService.Portal.Core.API.dll b/obj/Release/net7.0/win-x64/refint/Microsoft.SelfService.Portal.Core.API.dll deleted file mode 100644 index 2ce351a..0000000 Binary files a/obj/Release/net7.0/win-x64/refint/Microsoft.SelfService.Portal.Core.API.dll and /dev/null differ diff --git a/obj/Release/net7.0/win-x64/staticwebassets.build.json b/obj/Release/net7.0/win-x64/staticwebassets.build.json deleted file mode 100644 index c6d3b26..0000000 --- a/obj/Release/net7.0/win-x64/staticwebassets.build.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "Version": 1, - "Hash": "RfuVwFSrmDL42KLW9n4tsmvdD4doyOaYg171K58Ic/s=", - "Source": "Microsoft.SelfService.Portal.Core.API", - "BasePath": "_content/Microsoft.SelfService.Portal.Core.API", - "Mode": "Default", - "ManifestType": "Build", - "ReferencedProjectsConfiguration": [], - "DiscoveryPatterns": [], - "Assets": [] -} \ No newline at end of file diff --git a/obj/Release/net7.0/win-x64/staticwebassets.publish.json b/obj/Release/net7.0/win-x64/staticwebassets.publish.json deleted file mode 100644 index ee4a5ad..0000000 --- a/obj/Release/net7.0/win-x64/staticwebassets.publish.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "Version": 1, - "Hash": "EuzJJmKylrpbcZ1Inxr2GUPxGwlY8zXxEdAKl4qeBkk=", - "Source": "Microsoft.SelfService.Portal.Core.API", - "BasePath": "_content/Microsoft.SelfService.Portal.Core.API", - "Mode": "Default", - "ManifestType": "Publish", - "ReferencedProjectsConfiguration": [], - "DiscoveryPatterns": [], - "Assets": [] -} \ No newline at end of file diff --git a/obj/Release/net7.0/win-x64/staticwebassets/msbuild.build.Microsoft.SelfService.Portal.Core.API.props b/obj/Release/net7.0/win-x64/staticwebassets/msbuild.build.Microsoft.SelfService.Portal.Core.API.props deleted file mode 100644 index 5a6032a..0000000 --- a/obj/Release/net7.0/win-x64/staticwebassets/msbuild.build.Microsoft.SelfService.Portal.Core.API.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/Release/net7.0/win-x64/staticwebassets/msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props b/obj/Release/net7.0/win-x64/staticwebassets/msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props deleted file mode 100644 index f704301..0000000 --- a/obj/Release/net7.0/win-x64/staticwebassets/msbuild.buildMultiTargeting.Microsoft.SelfService.Portal.Core.API.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/Release/net7.0/win-x64/staticwebassets/msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props b/obj/Release/net7.0/win-x64/staticwebassets/msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props deleted file mode 100644 index b8faea7..0000000 --- a/obj/Release/net7.0/win-x64/staticwebassets/msbuild.buildTransitive.Microsoft.SelfService.Portal.Core.API.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json index ce856a2..6ca78dd 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -3842,7 +3842,7 @@ ] }, "packageFolders": { - "C:\\Users\\torst\\.nuget\\packages\\": {} + "C:\\Users\\torst\\.nuget\\packages": {} }, "project": { "version": "1.0.0", @@ -3850,7 +3850,7 @@ "projectUniqueName": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", "projectName": "Microsoft.SelfService.Portal.Core.API", "projectPath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", - "packagesPath": "C:\\Users\\torst\\.nuget\\packages\\", + "packagesPath": "C:\\Users\\torst\\.nuget\\packages", "outputPath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ @@ -4363,5 +4363,17 @@ } } } - } + }, + "logs": [ + { + "code": "NU1903", + "level": "Warning", + "warningLevel": 1, + "message": "Das Paket \"Microsoft.OpenApi\" 2.4.1 weist eine bekannte hoch Schweregrad-Sicherheitsanfälligkeit auf, https://github.com/advisories/GHSA-v5pm-xwqc-g5wc.", + "libraryId": "Microsoft.OpenApi", + "targetGraphs": [ + "net10.0" + ] + } + ] } \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index 86baad0..5d0ddbe 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "xEwEatw9DI8=", + "dgSpecHash": "hIFNBItN5tE=", "success": true, "projectFilePath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", "expectedPackageFiles": [ @@ -65,5 +65,18 @@ "C:\\Users\\torst\\.nuget\\packages\\system.security.cryptography.pkcs\\9.0.4\\system.security.cryptography.pkcs.9.0.4.nupkg.sha512", "C:\\Users\\torst\\.nuget\\packages\\system.security.cryptography.protecteddata\\9.0.4\\system.security.cryptography.protecteddata.9.0.4.nupkg.sha512" ], - "logs": [] + "logs": [ + { + "code": "NU1903", + "level": "Warning", + "message": "Das Paket \"Microsoft.OpenApi\" 2.4.1 weist eine bekannte hoch Schweregrad-Sicherheitsanfälligkeit auf, https://github.com/advisories/GHSA-v5pm-xwqc-g5wc.", + "projectPath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", + "warningLevel": 1, + "filePath": "F:\\Projekte\\Coding\\.Net\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", + "libraryId": "Microsoft.OpenApi", + "targetGraphs": [ + "net10.0" + ] + } + ] } \ No newline at end of file diff --git a/obj/publish/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json b/obj/publish/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json deleted file mode 100644 index d3a9df2..0000000 --- a/obj/publish/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.nuget.dgspec.json +++ /dev/null @@ -1,116 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj": {} - }, - "projects": { - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", - "projectName": "Microsoft.SelfService.Portal.Core.API", - "projectPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", - "packagesPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\", - "outputPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API\\obj\\publish\\win-x64\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net7.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\7.0.304\\Sdks\\Microsoft.NET.Sdk.Web\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net7.0": { - "targetAlias": "net7.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net7.0": { - "targetAlias": "net7.0", - "dependencies": { - "AutoMapper": { - "target": "Package", - "version": "[12.0.1, )" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection": { - "target": "Package", - "version": "[12.0.1, )" - }, - "Microsoft.AspNetCore.Authentication.Negotiate": { - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": { - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.AspNetCore.OpenApi": { - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.EntityFrameworkCore.SqlServer": { - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.EntityFrameworkCore.Tools": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design": { - "target": "Package", - "version": "[7.0.8, )" - }, - "Swashbuckle.AspNetCore": { - "target": "Package", - "version": "[6.5.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "win-x64": { - "#import": [] - } - } - } - } -} \ No newline at end of file diff --git a/obj/publish/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props b/obj/publish/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props deleted file mode 100644 index eb61f37..0000000 --- a/obj/publish/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.props +++ /dev/null @@ -1,27 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\ASA_Administrator.CCIS-P01S01-CM\.nuget\packages\ - PackageReference - 6.6.0 - - - - - - - - - - - - C:\Users\ASA_Administrator.CCIS-P01S01-CM\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 - C:\Users\ASA_Administrator.CCIS-P01S01-CM\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3 - C:\Users\ASA_Administrator.CCIS-P01S01-CM\.nuget\packages\microsoft.codeanalysis.analyzerutilities\3.3.0 - C:\Users\ASA_Administrator.CCIS-P01S01-CM\.nuget\packages\microsoft.entityframeworkcore.tools\7.0.9 - - \ No newline at end of file diff --git a/obj/publish/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets b/obj/publish/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets deleted file mode 100644 index 2c493a8..0000000 --- a/obj/publish/win-x64/Microsoft.SelfService.Portal.Core.API.csproj.nuget.g.targets +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/obj/publish/win-x64/project.assets.json b/obj/publish/win-x64/project.assets.json deleted file mode 100644 index d83fb75..0000000 --- a/obj/publish/win-x64/project.assets.json +++ /dev/null @@ -1,17196 +0,0 @@ -{ - "version": 3, - "targets": { - "net7.0": { - "AutoMapper/12.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "compile": { - "lib/netstandard2.1/AutoMapper.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "related": ".xml" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "type": "package", - "dependencies": { - "AutoMapper": "[12.0.1]", - "Microsoft.Extensions.Options": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - } - }, - "Azure.Core/1.24.0": { - "type": "package", - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "1.1.1", - "System.Diagnostics.DiagnosticSource": "4.6.0", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "4.7.2", - "System.Text.Json": "4.7.2", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/net5.0/Azure.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Azure.Core.dll": { - "related": ".xml" - } - } - }, - "Azure.Identity/1.6.0": { - "type": "package", - "dependencies": { - "Azure.Core": "1.24.0", - "Microsoft.Identity.Client": "4.39.0", - "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", - "System.Memory": "4.5.4", - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Text.Json": "4.7.2", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netstandard2.0/Azure.Identity.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "related": ".xml" - } - } - }, - "Humanizer/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core.af": "2.14.1", - "Humanizer.Core.ar": "2.14.1", - "Humanizer.Core.az": "2.14.1", - "Humanizer.Core.bg": "2.14.1", - "Humanizer.Core.bn-BD": "2.14.1", - "Humanizer.Core.cs": "2.14.1", - "Humanizer.Core.da": "2.14.1", - "Humanizer.Core.de": "2.14.1", - "Humanizer.Core.el": "2.14.1", - "Humanizer.Core.es": "2.14.1", - "Humanizer.Core.fa": "2.14.1", - "Humanizer.Core.fi-FI": "2.14.1", - "Humanizer.Core.fr": "2.14.1", - "Humanizer.Core.fr-BE": "2.14.1", - "Humanizer.Core.he": "2.14.1", - "Humanizer.Core.hr": "2.14.1", - "Humanizer.Core.hu": "2.14.1", - "Humanizer.Core.hy": "2.14.1", - "Humanizer.Core.id": "2.14.1", - "Humanizer.Core.is": "2.14.1", - "Humanizer.Core.it": "2.14.1", - "Humanizer.Core.ja": "2.14.1", - "Humanizer.Core.ko-KR": "2.14.1", - "Humanizer.Core.ku": "2.14.1", - "Humanizer.Core.lv": "2.14.1", - "Humanizer.Core.ms-MY": "2.14.1", - "Humanizer.Core.mt": "2.14.1", - "Humanizer.Core.nb": "2.14.1", - "Humanizer.Core.nb-NO": "2.14.1", - "Humanizer.Core.nl": "2.14.1", - "Humanizer.Core.pl": "2.14.1", - "Humanizer.Core.pt": "2.14.1", - "Humanizer.Core.ro": "2.14.1", - "Humanizer.Core.ru": "2.14.1", - "Humanizer.Core.sk": "2.14.1", - "Humanizer.Core.sl": "2.14.1", - "Humanizer.Core.sr": "2.14.1", - "Humanizer.Core.sr-Latn": "2.14.1", - "Humanizer.Core.sv": "2.14.1", - "Humanizer.Core.th-TH": "2.14.1", - "Humanizer.Core.tr": "2.14.1", - "Humanizer.Core.uk": "2.14.1", - "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", - "Humanizer.Core.uz-Latn-UZ": "2.14.1", - "Humanizer.Core.vi": "2.14.1", - "Humanizer.Core.zh-CN": "2.14.1", - "Humanizer.Core.zh-Hans": "2.14.1", - "Humanizer.Core.zh-Hant": "2.14.1" - } - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "compile": { - "lib/net6.0/Humanizer.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Humanizer.dll": { - "related": ".xml" - } - } - }, - "Humanizer.Core.af/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/af/Humanizer.resources.dll": { - "locale": "af" - } - } - }, - "Humanizer.Core.ar/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/ar/Humanizer.resources.dll": { - "locale": "ar" - } - } - }, - "Humanizer.Core.az/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/az/Humanizer.resources.dll": { - "locale": "az" - } - } - }, - "Humanizer.Core.bg/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/bg/Humanizer.resources.dll": { - "locale": "bg" - } - } - }, - "Humanizer.Core.bn-BD/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/bn-BD/Humanizer.resources.dll": { - "locale": "bn-BD" - } - } - }, - "Humanizer.Core.cs/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/cs/Humanizer.resources.dll": { - "locale": "cs" - } - } - }, - "Humanizer.Core.da/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/da/Humanizer.resources.dll": { - "locale": "da" - } - } - }, - "Humanizer.Core.de/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/de/Humanizer.resources.dll": { - "locale": "de" - } - } - }, - "Humanizer.Core.el/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/el/Humanizer.resources.dll": { - "locale": "el" - } - } - }, - "Humanizer.Core.es/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/es/Humanizer.resources.dll": { - "locale": "es" - } - } - }, - "Humanizer.Core.fa/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/fa/Humanizer.resources.dll": { - "locale": "fa" - } - } - }, - "Humanizer.Core.fi-FI/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/fi-FI/Humanizer.resources.dll": { - "locale": "fi-FI" - } - } - }, - "Humanizer.Core.fr/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/fr/Humanizer.resources.dll": { - "locale": "fr" - } - } - }, - "Humanizer.Core.fr-BE/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/fr-BE/Humanizer.resources.dll": { - "locale": "fr-BE" - } - } - }, - "Humanizer.Core.he/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/he/Humanizer.resources.dll": { - "locale": "he" - } - } - }, - "Humanizer.Core.hr/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/hr/Humanizer.resources.dll": { - "locale": "hr" - } - } - }, - "Humanizer.Core.hu/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/hu/Humanizer.resources.dll": { - "locale": "hu" - } - } - }, - "Humanizer.Core.hy/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/hy/Humanizer.resources.dll": { - "locale": "hy" - } - } - }, - "Humanizer.Core.id/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/id/Humanizer.resources.dll": { - "locale": "id" - } - } - }, - "Humanizer.Core.is/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/is/Humanizer.resources.dll": { - "locale": "is" - } - } - }, - "Humanizer.Core.it/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/it/Humanizer.resources.dll": { - "locale": "it" - } - } - }, - "Humanizer.Core.ja/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/ja/Humanizer.resources.dll": { - "locale": "ja" - } - } - }, - "Humanizer.Core.ko-KR/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { - "locale": "ko-KR" - } - } - }, - "Humanizer.Core.ku/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/ku/Humanizer.resources.dll": { - "locale": "ku" - } - } - }, - "Humanizer.Core.lv/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/lv/Humanizer.resources.dll": { - "locale": "lv" - } - } - }, - "Humanizer.Core.ms-MY/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { - "locale": "ms-MY" - } - } - }, - "Humanizer.Core.mt/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/netstandard2.0/mt/Humanizer.resources.dll": { - "locale": "mt" - } - } - }, - "Humanizer.Core.nb/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/nb/Humanizer.resources.dll": { - "locale": "nb" - } - } - }, - "Humanizer.Core.nb-NO/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/nb-NO/Humanizer.resources.dll": { - "locale": "nb-NO" - } - } - }, - "Humanizer.Core.nl/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/nl/Humanizer.resources.dll": { - "locale": "nl" - } - } - }, - "Humanizer.Core.pl/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/pl/Humanizer.resources.dll": { - "locale": "pl" - } - } - }, - "Humanizer.Core.pt/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/pt/Humanizer.resources.dll": { - "locale": "pt" - } - } - }, - "Humanizer.Core.ro/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/ro/Humanizer.resources.dll": { - "locale": "ro" - } - } - }, - "Humanizer.Core.ru/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/ru/Humanizer.resources.dll": { - "locale": "ru" - } - } - }, - "Humanizer.Core.sk/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/sk/Humanizer.resources.dll": { - "locale": "sk" - } - } - }, - "Humanizer.Core.sl/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/sl/Humanizer.resources.dll": { - "locale": "sl" - } - } - }, - "Humanizer.Core.sr/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/sr/Humanizer.resources.dll": { - "locale": "sr" - } - } - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/sr-Latn/Humanizer.resources.dll": { - "locale": "sr-Latn" - } - } - }, - "Humanizer.Core.sv/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/sv/Humanizer.resources.dll": { - "locale": "sv" - } - } - }, - "Humanizer.Core.th-TH/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { - "locale": "th-TH" - } - } - }, - "Humanizer.Core.tr/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/tr/Humanizer.resources.dll": { - "locale": "tr" - } - } - }, - "Humanizer.Core.uk/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/uk/Humanizer.resources.dll": { - "locale": "uk" - } - } - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { - "locale": "uz-Cyrl-UZ" - } - } - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { - "locale": "uz-Latn-UZ" - } - } - }, - "Humanizer.Core.vi/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/vi/Humanizer.resources.dll": { - "locale": "vi" - } - } - }, - "Humanizer.Core.zh-CN/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/zh-CN/Humanizer.resources.dll": { - "locale": "zh-CN" - } - } - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/zh-Hans/Humanizer.resources.dll": { - "locale": "zh-Hans" - } - } - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/zh-Hant/Humanizer.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "System.DirectoryServices.Protocols": "7.0.1" - }, - "compile": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Features": "7.0.9", - "System.IO.Pipelines": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Newtonsoft.Json": "13.0.1" - }, - "compile": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.9", - "Newtonsoft.Json": "13.0.1", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "compile": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "compile": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Build/17.3.2": { - "type": "package", - "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "System.Collections.Immutable": "6.0.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Reflection.Metadata": "6.0.0", - "System.Reflection.MetadataLoadContext": "6.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Json": "6.0.0", - "System.Threading.Tasks.Dataflow": "6.0.0" - }, - "compile": { - "ref/net6.0/Microsoft.Build.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Build.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.Build.Framework/17.3.2": { - "type": "package", - "dependencies": { - "System.Security.Permissions": "6.0.0" - }, - "compile": { - "ref/net6.0/Microsoft.Build.Framework.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Build.Framework.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "type": "package", - "build": { - "build/_._": {} - } - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "related": ".xml" - } - } - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "6.0.0", - "System.Memory": "4.5.5", - "System.Reflection.Metadata": "5.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.4.0]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "[4.4.0]", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "[4.4.0]", - "Microsoft.CodeAnalysis.Common": "[4.4.0]", - "Microsoft.CodeAnalysis.Features": "[4.4.0]", - "Microsoft.CodeAnalysis.Workspaces.Common": "[4.4.0]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "[4.4.0]", - "Microsoft.CodeAnalysis.Common": "[4.4.0]", - "Microsoft.CodeAnalysis.Workspaces.Common": "[4.4.0]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "4.5.0", - "System.Data.DataSetExtensions": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {} - } - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", - "Microsoft.CodeAnalysis.Common": "[4.4.0]", - "Microsoft.CodeAnalysis.Elfie": "1.0.0", - "Microsoft.CodeAnalysis.Scripting.Common": "[4.4.0]", - "Microsoft.CodeAnalysis.Workspaces.Common": "[4.4.0]", - "Microsoft.DiaSymReader": "1.4.0", - "System.Text.Json": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.0.0", - "Microsoft.CodeAnalysis.Common": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} - } - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.4.0]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "[4.4.0]", - "System.Composition": "6.0.0", - "System.IO.Pipelines": "6.0.3" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "Microsoft.Data.SqlClient/5.0.2": { - "type": "package", - "dependencies": { - "Azure.Identity": "1.6.0", - "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", - "Microsoft.SqlServer.Server": "1.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Caching": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "5.0.0", - "System.Text.Encodings.Web": "4.7.2" - }, - "compile": { - "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "related": ".pdb;.xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "type": "package", - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "assetType": "native", - "rid": "win-arm" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "assetType": "native", - "rid": "win-x86" - } - } - }, - "Microsoft.DiaSymReader/1.4.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "compile": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "type": "package", - "dependencies": { - "Humanizer": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Features": "4.4.0", - "Newtonsoft.Json": "13.0.1", - "NuGet.ProjectModel": "6.3.1" - }, - "compile": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9", - "Microsoft.EntityFrameworkCore.Analyzers": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Mono.TextTemplating": "2.2.1" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { - "related": ".xml" - } - }, - "build": { - "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.Data.SqlClient": "5.0.2", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "7.0.9" - }, - "compile": { - "lib/net6.0/_._": {} - }, - "runtime": { - "lib/net6.0/_._": {} - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "type": "package", - "build": { - "build/Microsoft.Extensions.ApiDescription.Server.props": {}, - "build/Microsoft.Extensions.ApiDescription.Server.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, - "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { - "type": "package", - "compile": { - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "compile": { - "lib/net7.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Features/7.0.9": { - "type": "package", - "compile": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Logging/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": { - "type": "package", - "compile": { - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Options/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "type": "package", - "compile": { - "lib/net7.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Identity.Client/4.45.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.18.0" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "type": "package", - "dependencies": { - "Microsoft.Identity.Client": "4.38.0", - "System.Security.Cryptography.ProtectedData": "4.5.0" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "compile": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "compile": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "compile": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.21.0", - "System.IdentityModel.Tokens.Jwt": "6.21.0" - }, - "compile": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.5.0", - "Microsoft.IdentityModel.Logging": "6.21.0", - "System.Security.Cryptography.Cng": "4.5.0" - }, - "compile": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.NET.StringTools/17.3.2": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "ref/net6.0/Microsoft.NET.StringTools.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.NET.StringTools.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.OpenApi/1.4.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "related": ".xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "related": ".xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "7.0.8" - }, - "compile": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "related": ".xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "7.0.8" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "related": ".runtimeconfig.json;.xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "related": ".runtimeconfig.json;.xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Razor": "6.0.11", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "7.0.8" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "related": ".xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.Build": "17.3.2", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "related": ".xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration": "7.0.8" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "dependencies": { - "System.CodeDom": "4.4.0" - }, - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Mono.TextTemplating.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "12.0.1" - }, - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "related": ".pdb;.xml" - } - } - }, - "NuGet.Common/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.Frameworks": "6.3.1" - }, - "compile": { - "lib/netstandard2.0/NuGet.Common.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.Common.dll": { - "related": ".xml" - } - } - }, - "NuGet.Configuration/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.Common": "6.3.1", - "System.Security.Cryptography.ProtectedData": "4.4.0" - }, - "compile": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "related": ".xml" - } - } - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.Configuration": "6.3.1", - "NuGet.LibraryModel": "6.3.1", - "NuGet.Protocol": "6.3.1" - }, - "compile": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "related": ".xml" - } - } - }, - "NuGet.Frameworks/6.3.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "related": ".xml" - } - } - }, - "NuGet.LibraryModel/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.Common": "6.3.1", - "NuGet.Versioning": "6.3.1" - }, - "compile": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "related": ".xml" - } - } - }, - "NuGet.Packaging/6.3.1": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "NuGet.Configuration": "6.3.1", - "NuGet.Versioning": "6.3.1", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Pkcs": "5.0.0" - }, - "compile": { - "lib/net5.0/NuGet.Packaging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/NuGet.Packaging.dll": { - "related": ".xml" - } - } - }, - "NuGet.ProjectModel/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.DependencyResolver.Core": "6.3.1" - }, - "compile": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "related": ".xml" - } - } - }, - "NuGet.Protocol/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.Packaging": "6.3.1" - }, - "compile": { - "lib/net5.0/NuGet.Protocol.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/NuGet.Protocol.dll": { - "related": ".xml" - } - } - }, - "NuGet.Versioning/6.3.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "related": ".xml" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "debian.8-x64" - } - } - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.23-x64" - } - } - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.24-x64" - } - } - }, - "runtime.native.System/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.13.2-x64" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.42.1-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "rhel.7-x64" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.14.04-x64" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.04-x64" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.10-x64" - } - } - }, - "Swashbuckle.AspNetCore/6.5.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" - }, - "build": { - "build/Swashbuckle.AspNetCore.props": {} - } - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "1.2.3" - }, - "compile": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "type": "package", - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" - }, - "compile": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "type": "package", - "compile": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.CodeDom/4.4.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.CodeDom.dll": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": { - "related": ".xml" - } - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Collections.Immutable.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Collections.Immutable.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Composition.Convention.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Composition.Hosting.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Composition.Runtime.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": { - "related": ".xml" - } - } - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Diagnostics.Tools.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } - } - }, - "System.DirectoryServices.Protocols/7.0.1": { - "type": "package", - "compile": { - "lib/net7.0/System.DirectoryServices.Protocols.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/System.DirectoryServices.Protocols.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Drawing.Common.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Formats.Asn1/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Formats.Asn1.dll": { - "related": ".xml" - } - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": { - "related": ".xml" - } - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": { - "related": ".xml" - } - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "compile": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Pipelines/7.0.0": { - "type": "package", - "compile": { - "lib/net7.0/System.IO.Pipelines.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/System.IO.Pipelines.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Memory/4.5.5": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "4.7.2", - "System.Text.Json": "4.6.0" - }, - "compile": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "related": ".xml" - } - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Http.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": { - "related": ".xml" - } - } - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Metadata/6.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Reflection.Metadata.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Reflection.Metadata.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "6.0.0", - "System.Reflection.Metadata": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": { - "related": ".xml" - } - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Caching/5.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Runtime.Caching.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.Numerics.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtimeTargets": { - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "dependencies": { - "System.Formats.Asn1": "5.0.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assetType": "runtime", - "rid": "unix" - } - } - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "type": "package", - "dependencies": { - "System.Formats.Asn1": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Security.Permissions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encodings.Web/7.0.0": { - "type": "package", - "compile": { - "lib/net7.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - }, - "runtimeTargets": { - "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": { - "assetType": "runtime", - "rid": "browser" - } - } - }, - "System.Text.Json/7.0.0": { - "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "7.0.0" - }, - "compile": { - "lib/net7.0/System.Text.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/System.Text.Json.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/System.Text.Json.targets": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } - } - }, - "System.Threading.Tasks.Dataflow/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Threading.Tasks.Dataflow.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Threading.Tasks.Dataflow.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.2/System.Threading.Timer.dll": { - "related": ".xml" - } - } - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Windows.Extensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - } - }, - "net7.0/win-x64": { - "AutoMapper/12.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "compile": { - "lib/netstandard2.1/AutoMapper.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "related": ".xml" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "type": "package", - "dependencies": { - "AutoMapper": "[12.0.1]", - "Microsoft.Extensions.Options": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - } - }, - "Azure.Core/1.24.0": { - "type": "package", - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "1.1.1", - "System.Diagnostics.DiagnosticSource": "4.6.0", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "4.7.2", - "System.Text.Json": "4.7.2", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/net5.0/Azure.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Azure.Core.dll": { - "related": ".xml" - } - } - }, - "Azure.Identity/1.6.0": { - "type": "package", - "dependencies": { - "Azure.Core": "1.24.0", - "Microsoft.Identity.Client": "4.39.0", - "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", - "System.Memory": "4.5.4", - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Text.Json": "4.7.2", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netstandard2.0/Azure.Identity.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "related": ".xml" - } - } - }, - "Humanizer/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core.af": "2.14.1", - "Humanizer.Core.ar": "2.14.1", - "Humanizer.Core.az": "2.14.1", - "Humanizer.Core.bg": "2.14.1", - "Humanizer.Core.bn-BD": "2.14.1", - "Humanizer.Core.cs": "2.14.1", - "Humanizer.Core.da": "2.14.1", - "Humanizer.Core.de": "2.14.1", - "Humanizer.Core.el": "2.14.1", - "Humanizer.Core.es": "2.14.1", - "Humanizer.Core.fa": "2.14.1", - "Humanizer.Core.fi-FI": "2.14.1", - "Humanizer.Core.fr": "2.14.1", - "Humanizer.Core.fr-BE": "2.14.1", - "Humanizer.Core.he": "2.14.1", - "Humanizer.Core.hr": "2.14.1", - "Humanizer.Core.hu": "2.14.1", - "Humanizer.Core.hy": "2.14.1", - "Humanizer.Core.id": "2.14.1", - "Humanizer.Core.is": "2.14.1", - "Humanizer.Core.it": "2.14.1", - "Humanizer.Core.ja": "2.14.1", - "Humanizer.Core.ko-KR": "2.14.1", - "Humanizer.Core.ku": "2.14.1", - "Humanizer.Core.lv": "2.14.1", - "Humanizer.Core.ms-MY": "2.14.1", - "Humanizer.Core.mt": "2.14.1", - "Humanizer.Core.nb": "2.14.1", - "Humanizer.Core.nb-NO": "2.14.1", - "Humanizer.Core.nl": "2.14.1", - "Humanizer.Core.pl": "2.14.1", - "Humanizer.Core.pt": "2.14.1", - "Humanizer.Core.ro": "2.14.1", - "Humanizer.Core.ru": "2.14.1", - "Humanizer.Core.sk": "2.14.1", - "Humanizer.Core.sl": "2.14.1", - "Humanizer.Core.sr": "2.14.1", - "Humanizer.Core.sr-Latn": "2.14.1", - "Humanizer.Core.sv": "2.14.1", - "Humanizer.Core.th-TH": "2.14.1", - "Humanizer.Core.tr": "2.14.1", - "Humanizer.Core.uk": "2.14.1", - "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", - "Humanizer.Core.uz-Latn-UZ": "2.14.1", - "Humanizer.Core.vi": "2.14.1", - "Humanizer.Core.zh-CN": "2.14.1", - "Humanizer.Core.zh-Hans": "2.14.1", - "Humanizer.Core.zh-Hant": "2.14.1" - } - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "compile": { - "lib/net6.0/Humanizer.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Humanizer.dll": { - "related": ".xml" - } - } - }, - "Humanizer.Core.af/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/af/Humanizer.resources.dll": { - "locale": "af" - } - } - }, - "Humanizer.Core.ar/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/ar/Humanizer.resources.dll": { - "locale": "ar" - } - } - }, - "Humanizer.Core.az/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/az/Humanizer.resources.dll": { - "locale": "az" - } - } - }, - "Humanizer.Core.bg/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/bg/Humanizer.resources.dll": { - "locale": "bg" - } - } - }, - "Humanizer.Core.bn-BD/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/bn-BD/Humanizer.resources.dll": { - "locale": "bn-BD" - } - } - }, - "Humanizer.Core.cs/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/cs/Humanizer.resources.dll": { - "locale": "cs" - } - } - }, - "Humanizer.Core.da/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/da/Humanizer.resources.dll": { - "locale": "da" - } - } - }, - "Humanizer.Core.de/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/de/Humanizer.resources.dll": { - "locale": "de" - } - } - }, - "Humanizer.Core.el/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/el/Humanizer.resources.dll": { - "locale": "el" - } - } - }, - "Humanizer.Core.es/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/es/Humanizer.resources.dll": { - "locale": "es" - } - } - }, - "Humanizer.Core.fa/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/fa/Humanizer.resources.dll": { - "locale": "fa" - } - } - }, - "Humanizer.Core.fi-FI/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/fi-FI/Humanizer.resources.dll": { - "locale": "fi-FI" - } - } - }, - "Humanizer.Core.fr/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/fr/Humanizer.resources.dll": { - "locale": "fr" - } - } - }, - "Humanizer.Core.fr-BE/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/fr-BE/Humanizer.resources.dll": { - "locale": "fr-BE" - } - } - }, - "Humanizer.Core.he/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/he/Humanizer.resources.dll": { - "locale": "he" - } - } - }, - "Humanizer.Core.hr/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/hr/Humanizer.resources.dll": { - "locale": "hr" - } - } - }, - "Humanizer.Core.hu/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/hu/Humanizer.resources.dll": { - "locale": "hu" - } - } - }, - "Humanizer.Core.hy/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/hy/Humanizer.resources.dll": { - "locale": "hy" - } - } - }, - "Humanizer.Core.id/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/id/Humanizer.resources.dll": { - "locale": "id" - } - } - }, - "Humanizer.Core.is/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/is/Humanizer.resources.dll": { - "locale": "is" - } - } - }, - "Humanizer.Core.it/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/it/Humanizer.resources.dll": { - "locale": "it" - } - } - }, - "Humanizer.Core.ja/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/ja/Humanizer.resources.dll": { - "locale": "ja" - } - } - }, - "Humanizer.Core.ko-KR/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { - "locale": "ko-KR" - } - } - }, - "Humanizer.Core.ku/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/ku/Humanizer.resources.dll": { - "locale": "ku" - } - } - }, - "Humanizer.Core.lv/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/lv/Humanizer.resources.dll": { - "locale": "lv" - } - } - }, - "Humanizer.Core.ms-MY/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { - "locale": "ms-MY" - } - } - }, - "Humanizer.Core.mt/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/netstandard2.0/mt/Humanizer.resources.dll": { - "locale": "mt" - } - } - }, - "Humanizer.Core.nb/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/nb/Humanizer.resources.dll": { - "locale": "nb" - } - } - }, - "Humanizer.Core.nb-NO/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/nb-NO/Humanizer.resources.dll": { - "locale": "nb-NO" - } - } - }, - "Humanizer.Core.nl/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/nl/Humanizer.resources.dll": { - "locale": "nl" - } - } - }, - "Humanizer.Core.pl/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/pl/Humanizer.resources.dll": { - "locale": "pl" - } - } - }, - "Humanizer.Core.pt/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/pt/Humanizer.resources.dll": { - "locale": "pt" - } - } - }, - "Humanizer.Core.ro/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/ro/Humanizer.resources.dll": { - "locale": "ro" - } - } - }, - "Humanizer.Core.ru/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/ru/Humanizer.resources.dll": { - "locale": "ru" - } - } - }, - "Humanizer.Core.sk/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/sk/Humanizer.resources.dll": { - "locale": "sk" - } - } - }, - "Humanizer.Core.sl/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/sl/Humanizer.resources.dll": { - "locale": "sl" - } - } - }, - "Humanizer.Core.sr/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/sr/Humanizer.resources.dll": { - "locale": "sr" - } - } - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/sr-Latn/Humanizer.resources.dll": { - "locale": "sr-Latn" - } - } - }, - "Humanizer.Core.sv/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/sv/Humanizer.resources.dll": { - "locale": "sv" - } - } - }, - "Humanizer.Core.th-TH/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { - "locale": "th-TH" - } - } - }, - "Humanizer.Core.tr/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/tr/Humanizer.resources.dll": { - "locale": "tr" - } - } - }, - "Humanizer.Core.uk/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/uk/Humanizer.resources.dll": { - "locale": "uk" - } - } - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { - "locale": "uz-Cyrl-UZ" - } - } - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { - "locale": "uz-Latn-UZ" - } - } - }, - "Humanizer.Core.vi/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/vi/Humanizer.resources.dll": { - "locale": "vi" - } - } - }, - "Humanizer.Core.zh-CN/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/zh-CN/Humanizer.resources.dll": { - "locale": "zh-CN" - } - } - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/zh-Hans/Humanizer.resources.dll": { - "locale": "zh-Hans" - } - } - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "type": "package", - "dependencies": { - "Humanizer.Core": "[2.14.1]" - }, - "resource": { - "lib/net6.0/zh-Hant/Humanizer.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "System.DirectoryServices.Protocols": "7.0.1" - }, - "compile": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Features": "7.0.9", - "System.IO.Pipelines": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Newtonsoft.Json": "13.0.1" - }, - "compile": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.9", - "Newtonsoft.Json": "13.0.1", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "compile": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "compile": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Build/17.3.2": { - "type": "package", - "dependencies": { - "Microsoft.Build.Framework": "17.3.2", - "Microsoft.NET.StringTools": "17.3.2", - "System.Collections.Immutable": "6.0.0", - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Reflection.Metadata": "6.0.0", - "System.Reflection.MetadataLoadContext": "6.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Json": "6.0.0", - "System.Threading.Tasks.Dataflow": "6.0.0" - }, - "compile": { - "ref/net6.0/Microsoft.Build.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Build.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.Build.Framework/17.3.2": { - "type": "package", - "dependencies": { - "System.Security.Permissions": "6.0.0" - }, - "compile": { - "ref/net6.0/Microsoft.Build.Framework.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Build.Framework.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "type": "package", - "build": { - "build/_._": {} - } - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { - "related": ".xml" - } - } - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "6.0.0", - "System.Memory": "4.5.5", - "System.Reflection.Metadata": "5.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.4.0]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "[4.4.0]", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "[4.4.0]", - "Microsoft.CodeAnalysis.Common": "[4.4.0]", - "Microsoft.CodeAnalysis.Features": "[4.4.0]", - "Microsoft.CodeAnalysis.Workspaces.Common": "[4.4.0]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "[4.4.0]", - "Microsoft.CodeAnalysis.Common": "[4.4.0]", - "Microsoft.CodeAnalysis.Workspaces.Common": "[4.4.0]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "4.5.0", - "System.Data.DataSetExtensions": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {} - } - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", - "Microsoft.CodeAnalysis.Common": "[4.4.0]", - "Microsoft.CodeAnalysis.Elfie": "1.0.0", - "Microsoft.CodeAnalysis.Scripting.Common": "[4.4.0]", - "Microsoft.CodeAnalysis.Workspaces.Common": "[4.4.0]", - "Microsoft.DiaSymReader": "1.4.0", - "System.Text.Json": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.0.0", - "Microsoft.CodeAnalysis.Common": "4.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} - } - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.4.0]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "[4.4.0]", - "System.Composition": "6.0.0", - "System.IO.Pipelines": "6.0.3" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "Microsoft.Data.SqlClient/5.0.2": { - "type": "package", - "dependencies": { - "Azure.Identity": "1.6.0", - "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", - "Microsoft.SqlServer.Server": "1.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Caching": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "5.0.0", - "System.Text.Encodings.Web": "4.7.2" - }, - "compile": { - "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "related": ".pdb" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "type": "package", - "native": { - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {} - } - }, - "Microsoft.DiaSymReader/1.4.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "compile": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard1.1/Microsoft.DiaSymReader.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "type": "package", - "dependencies": { - "Humanizer": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Features": "4.4.0", - "Newtonsoft.Json": "13.0.1", - "NuGet.ProjectModel": "6.3.1" - }, - "compile": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "7.0.9", - "Microsoft.EntityFrameworkCore.Analyzers": "7.0.9", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Mono.TextTemplating": "2.2.1" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { - "related": ".xml" - } - }, - "build": { - "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.9", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.Data.SqlClient": "5.0.2", - "Microsoft.EntityFrameworkCore.Relational": "7.0.9" - }, - "compile": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "7.0.9" - }, - "compile": { - "lib/net6.0/_._": {} - }, - "runtime": { - "lib/net6.0/_._": {} - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "type": "package", - "build": { - "build/Microsoft.Extensions.ApiDescription.Server.props": {}, - "build/Microsoft.Extensions.ApiDescription.Server.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, - "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { - "type": "package", - "compile": { - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "compile": { - "lib/net7.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Features/7.0.9": { - "type": "package", - "compile": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Features.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Logging/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": { - "type": "package", - "compile": { - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Options/7.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - }, - "compile": { - "lib/net7.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "type": "package", - "compile": { - "lib/net7.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Identity.Client/4.45.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.18.0" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "type": "package", - "dependencies": { - "Microsoft.Identity.Client": "4.38.0", - "System.Security.Cryptography.ProtectedData": "4.5.0" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "compile": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "compile": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "compile": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.21.0", - "System.IdentityModel.Tokens.Jwt": "6.21.0" - }, - "compile": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.5.0", - "Microsoft.IdentityModel.Logging": "6.21.0", - "System.Security.Cryptography.Cng": "4.5.0" - }, - "compile": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.NET.StringTools/17.3.2": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.5", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "ref/net6.0/Microsoft.NET.StringTools.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.NET.StringTools.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.OpenApi/1.4.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "7.0.8" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { - "related": ".xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { - "related": ".xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "7.0.8" - }, - "compile": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll": { - "related": ".xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration.Core": "7.0.8" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "related": ".runtimeconfig.json;.xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { - "related": ".runtimeconfig.json;.xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "6.0.11", - "Microsoft.CodeAnalysis.CSharp": "4.4.0", - "Microsoft.CodeAnalysis.Razor": "6.0.11", - "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "7.0.8" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { - "related": ".xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.Build": "17.3.2", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.4.0", - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Newtonsoft.Json": "13.0.1" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { - "related": ".xml" - } - } - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "type": "package", - "dependencies": { - "Microsoft.DotNet.Scaffolding.Shared": "7.0.8", - "Microsoft.VisualStudio.Web.CodeGeneration": "7.0.8" - }, - "compile": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.Microsoft.Win32.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "dependencies": { - "System.CodeDom": "4.4.0" - }, - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Mono.TextTemplating.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "12.0.1" - }, - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "related": ".pdb;.xml" - } - } - }, - "NuGet.Common/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.Frameworks": "6.3.1" - }, - "compile": { - "lib/netstandard2.0/NuGet.Common.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.Common.dll": { - "related": ".xml" - } - } - }, - "NuGet.Configuration/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.Common": "6.3.1", - "System.Security.Cryptography.ProtectedData": "4.4.0" - }, - "compile": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.Configuration.dll": { - "related": ".xml" - } - } - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.Configuration": "6.3.1", - "NuGet.LibraryModel": "6.3.1", - "NuGet.Protocol": "6.3.1" - }, - "compile": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/NuGet.DependencyResolver.Core.dll": { - "related": ".xml" - } - } - }, - "NuGet.Frameworks/6.3.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "related": ".xml" - } - } - }, - "NuGet.LibraryModel/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.Common": "6.3.1", - "NuGet.Versioning": "6.3.1" - }, - "compile": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.LibraryModel.dll": { - "related": ".xml" - } - } - }, - "NuGet.Packaging/6.3.1": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "13.0.1", - "NuGet.Configuration": "6.3.1", - "NuGet.Versioning": "6.3.1", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Pkcs": "5.0.0" - }, - "compile": { - "lib/net5.0/NuGet.Packaging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/NuGet.Packaging.dll": { - "related": ".xml" - } - } - }, - "NuGet.ProjectModel/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.DependencyResolver.Core": "6.3.1" - }, - "compile": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/NuGet.ProjectModel.dll": { - "related": ".xml" - } - } - }, - "NuGet.Protocol/6.3.1": { - "type": "package", - "dependencies": { - "NuGet.Packaging": "6.3.1" - }, - "compile": { - "lib/net5.0/NuGet.Protocol.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/NuGet.Protocol.dll": { - "related": ".xml" - } - } - }, - "NuGet.Versioning/6.3.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/NuGet.Versioning.dll": { - "related": ".xml" - } - } - }, - "runtime.any.System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.Tools.dll": {} - } - }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Diagnostics.Tracing.dll": {} - } - }, - "runtime.any.System.Globalization/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Globalization.dll": {} - } - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "runtime.any.System.IO/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.IO.dll": {} - } - }, - "runtime.any.System.Reflection/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.dll": {} - } - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Extensions.dll": {} - } - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Primitives.dll": {} - } - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} - } - }, - "runtime.any.System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Runtime.dll": {} - } - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} - } - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Timer.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package" - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "runtime.win.System.Console/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Console.dll": {} - } - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "type": "package", - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll": {} - } - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Net.NameResolution": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Private.Uri": "4.3.0" - }, - "compile": { - "ref/netstandard/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {} - } - }, - "Swashbuckle.AspNetCore/6.5.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" - }, - "build": { - "build/Swashbuckle.AspNetCore.props": {} - } - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "1.2.3" - }, - "compile": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "type": "package", - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" - }, - "compile": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "type": "package", - "compile": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.CodeDom/4.4.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.CodeDom.dll": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Collections": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": { - "related": ".xml" - } - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Collections.Immutable.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Collections.Immutable.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Composition.Convention.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Composition.Hosting.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Composition.Runtime.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.win.System.Console": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": { - "related": ".xml" - } - } - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Diagnostics.Debug": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tools": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Diagnostics.Tools.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Diagnostics.Tracing": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Diagnostics.Tracing.dll": { - "related": ".xml" - } - } - }, - "System.DirectoryServices.Protocols/7.0.1": { - "type": "package", - "compile": { - "lib/net7.0/System.DirectoryServices.Protocols.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Drawing.Common.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Formats.Asn1/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Formats.Asn1.dll": { - "related": ".xml" - } - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": { - "related": ".xml" - } - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Globalization.Calendars": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": { - "related": ".xml" - } - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {} - } - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "compile": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.any.System.IO": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": { - "related": ".xml" - } - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.IO.FileSystem": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": { - "related": ".xml" - } - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Pipelines/7.0.0": { - "type": "package", - "compile": { - "lib/net7.0/System.IO.Pipelines.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/System.IO.Pipelines.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Memory/4.5.5": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "4.7.2", - "System.Text.Json": "4.6.0" - }, - "compile": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "related": ".xml" - } - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Http.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {} - } - }, - "System.Net.NameResolution/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.NameResolution.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {} - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.win.System.Net.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.win.System.Net.Sockets": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": { - "related": ".xml" - } - } - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Private.Uri/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard/_._": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.Metadata/6.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Reflection.Metadata.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Reflection.Metadata.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "6.0.0", - "System.Reflection.Metadata": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Reflection.MetadataLoadContext.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Reflection.Primitives": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": { - "related": ".xml" - } - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Resources.ResourceManager": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": { - "related": ".xml" - } - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "runtime.any.System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Caching/5.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.win.System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": { - "related": ".xml" - } - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "runtime.any.System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.Numerics.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "dependencies": { - "System.Formats.Asn1": "5.0.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { - "related": ".xml" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {} - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} - } - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "type": "package", - "dependencies": { - "System.Formats.Asn1": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { - "related": ".xml" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {} - } - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Security.Permissions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.any.System.Text.Encoding.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Text.Encodings.Web/7.0.0": { - "type": "package", - "compile": { - "lib/net7.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Text.Json/7.0.0": { - "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "7.0.0" - }, - "compile": { - "lib/net7.0/System.Text.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net7.0/System.Text.Json.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/System.Text.Json.targets": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Overlapped.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": { - "related": ".xml" - } - } - }, - "System.Threading.Tasks.Dataflow/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Threading.Tasks.Dataflow.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Threading.Tasks.Dataflow.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "runtime.any.System.Threading.Timer": "4.3.0" - }, - "compile": { - "ref/netstandard1.2/System.Threading.Timer.dll": { - "related": ".xml" - } - } - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Windows.Extensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "related": ".xml" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - } - } - }, - "libraries": { - "AutoMapper/12.0.1": { - "sha512": "hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==", - "type": "package", - "path": "automapper/12.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "automapper.12.0.1.nupkg.sha512", - "automapper.nuspec", - "icon.png", - "lib/netstandard2.1/AutoMapper.dll", - "lib/netstandard2.1/AutoMapper.xml" - ] - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": { - "sha512": "+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==", - "type": "package", - "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512", - "automapper.extensions.microsoft.dependencyinjection.nuspec", - "icon.png", - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" - ] - }, - "Azure.Core/1.24.0": { - "sha512": "+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==", - "type": "package", - "path": "azure.core/1.24.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "README.md", - "azure.core.1.24.0.nupkg.sha512", - "azure.core.nuspec", - "azureicon.png", - "lib/net461/Azure.Core.dll", - "lib/net461/Azure.Core.xml", - "lib/net5.0/Azure.Core.dll", - "lib/net5.0/Azure.Core.xml", - "lib/netcoreapp2.1/Azure.Core.dll", - "lib/netcoreapp2.1/Azure.Core.xml", - "lib/netstandard2.0/Azure.Core.dll", - "lib/netstandard2.0/Azure.Core.xml" - ] - }, - "Azure.Identity/1.6.0": { - "sha512": "EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==", - "type": "package", - "path": "azure.identity/1.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "README.md", - "azure.identity.1.6.0.nupkg.sha512", - "azure.identity.nuspec", - "azureicon.png", - "lib/netstandard2.0/Azure.Identity.dll", - "lib/netstandard2.0/Azure.Identity.xml" - ] - }, - "Humanizer/2.14.1": { - "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", - "type": "package", - "path": "humanizer/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.2.14.1.nupkg.sha512", - "humanizer.nuspec", - "logo.png" - ] - }, - "Humanizer.Core/2.14.1": { - "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "type": "package", - "path": "humanizer.core/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.2.14.1.nupkg.sha512", - "humanizer.core.nuspec", - "lib/net6.0/Humanizer.dll", - "lib/net6.0/Humanizer.xml", - "lib/netstandard1.0/Humanizer.dll", - "lib/netstandard1.0/Humanizer.xml", - "lib/netstandard2.0/Humanizer.dll", - "lib/netstandard2.0/Humanizer.xml", - "logo.png" - ] - }, - "Humanizer.Core.af/2.14.1": { - "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", - "type": "package", - "path": "humanizer.core.af/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.af.2.14.1.nupkg.sha512", - "humanizer.core.af.nuspec", - "lib/net6.0/af/Humanizer.resources.dll", - "lib/netstandard1.0/af/Humanizer.resources.dll", - "lib/netstandard2.0/af/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.ar/2.14.1": { - "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", - "type": "package", - "path": "humanizer.core.ar/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.ar.2.14.1.nupkg.sha512", - "humanizer.core.ar.nuspec", - "lib/net6.0/ar/Humanizer.resources.dll", - "lib/netstandard1.0/ar/Humanizer.resources.dll", - "lib/netstandard2.0/ar/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.az/2.14.1": { - "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", - "type": "package", - "path": "humanizer.core.az/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.az.2.14.1.nupkg.sha512", - "humanizer.core.az.nuspec", - "lib/net6.0/az/Humanizer.resources.dll", - "lib/netstandard1.0/az/Humanizer.resources.dll", - "lib/netstandard2.0/az/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.bg/2.14.1": { - "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", - "type": "package", - "path": "humanizer.core.bg/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.bg.2.14.1.nupkg.sha512", - "humanizer.core.bg.nuspec", - "lib/net6.0/bg/Humanizer.resources.dll", - "lib/netstandard1.0/bg/Humanizer.resources.dll", - "lib/netstandard2.0/bg/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.bn-BD/2.14.1": { - "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", - "type": "package", - "path": "humanizer.core.bn-bd/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.bn-bd.2.14.1.nupkg.sha512", - "humanizer.core.bn-bd.nuspec", - "lib/net6.0/bn-BD/Humanizer.resources.dll", - "lib/netstandard1.0/bn-BD/Humanizer.resources.dll", - "lib/netstandard2.0/bn-BD/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.cs/2.14.1": { - "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", - "type": "package", - "path": "humanizer.core.cs/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.cs.2.14.1.nupkg.sha512", - "humanizer.core.cs.nuspec", - "lib/net6.0/cs/Humanizer.resources.dll", - "lib/netstandard1.0/cs/Humanizer.resources.dll", - "lib/netstandard2.0/cs/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.da/2.14.1": { - "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", - "type": "package", - "path": "humanizer.core.da/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.da.2.14.1.nupkg.sha512", - "humanizer.core.da.nuspec", - "lib/net6.0/da/Humanizer.resources.dll", - "lib/netstandard1.0/da/Humanizer.resources.dll", - "lib/netstandard2.0/da/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.de/2.14.1": { - "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", - "type": "package", - "path": "humanizer.core.de/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.de.2.14.1.nupkg.sha512", - "humanizer.core.de.nuspec", - "lib/net6.0/de/Humanizer.resources.dll", - "lib/netstandard1.0/de/Humanizer.resources.dll", - "lib/netstandard2.0/de/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.el/2.14.1": { - "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", - "type": "package", - "path": "humanizer.core.el/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.el.2.14.1.nupkg.sha512", - "humanizer.core.el.nuspec", - "lib/net6.0/el/Humanizer.resources.dll", - "lib/netstandard1.0/el/Humanizer.resources.dll", - "lib/netstandard2.0/el/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.es/2.14.1": { - "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", - "type": "package", - "path": "humanizer.core.es/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.es.2.14.1.nupkg.sha512", - "humanizer.core.es.nuspec", - "lib/net6.0/es/Humanizer.resources.dll", - "lib/netstandard1.0/es/Humanizer.resources.dll", - "lib/netstandard2.0/es/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.fa/2.14.1": { - "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", - "type": "package", - "path": "humanizer.core.fa/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.fa.2.14.1.nupkg.sha512", - "humanizer.core.fa.nuspec", - "lib/net6.0/fa/Humanizer.resources.dll", - "lib/netstandard1.0/fa/Humanizer.resources.dll", - "lib/netstandard2.0/fa/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.fi-FI/2.14.1": { - "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", - "type": "package", - "path": "humanizer.core.fi-fi/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.fi-fi.2.14.1.nupkg.sha512", - "humanizer.core.fi-fi.nuspec", - "lib/net6.0/fi-FI/Humanizer.resources.dll", - "lib/netstandard1.0/fi-FI/Humanizer.resources.dll", - "lib/netstandard2.0/fi-FI/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.fr/2.14.1": { - "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", - "type": "package", - "path": "humanizer.core.fr/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.fr.2.14.1.nupkg.sha512", - "humanizer.core.fr.nuspec", - "lib/net6.0/fr/Humanizer.resources.dll", - "lib/netstandard1.0/fr/Humanizer.resources.dll", - "lib/netstandard2.0/fr/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.fr-BE/2.14.1": { - "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", - "type": "package", - "path": "humanizer.core.fr-be/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.fr-be.2.14.1.nupkg.sha512", - "humanizer.core.fr-be.nuspec", - "lib/net6.0/fr-BE/Humanizer.resources.dll", - "lib/netstandard1.0/fr-BE/Humanizer.resources.dll", - "lib/netstandard2.0/fr-BE/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.he/2.14.1": { - "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", - "type": "package", - "path": "humanizer.core.he/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.he.2.14.1.nupkg.sha512", - "humanizer.core.he.nuspec", - "lib/net6.0/he/Humanizer.resources.dll", - "lib/netstandard1.0/he/Humanizer.resources.dll", - "lib/netstandard2.0/he/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.hr/2.14.1": { - "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", - "type": "package", - "path": "humanizer.core.hr/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.hr.2.14.1.nupkg.sha512", - "humanizer.core.hr.nuspec", - "lib/net6.0/hr/Humanizer.resources.dll", - "lib/netstandard1.0/hr/Humanizer.resources.dll", - "lib/netstandard2.0/hr/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.hu/2.14.1": { - "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", - "type": "package", - "path": "humanizer.core.hu/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.hu.2.14.1.nupkg.sha512", - "humanizer.core.hu.nuspec", - "lib/net6.0/hu/Humanizer.resources.dll", - "lib/netstandard1.0/hu/Humanizer.resources.dll", - "lib/netstandard2.0/hu/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.hy/2.14.1": { - "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", - "type": "package", - "path": "humanizer.core.hy/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.hy.2.14.1.nupkg.sha512", - "humanizer.core.hy.nuspec", - "lib/net6.0/hy/Humanizer.resources.dll", - "lib/netstandard1.0/hy/Humanizer.resources.dll", - "lib/netstandard2.0/hy/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.id/2.14.1": { - "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", - "type": "package", - "path": "humanizer.core.id/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.id.2.14.1.nupkg.sha512", - "humanizer.core.id.nuspec", - "lib/net6.0/id/Humanizer.resources.dll", - "lib/netstandard1.0/id/Humanizer.resources.dll", - "lib/netstandard2.0/id/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.is/2.14.1": { - "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", - "type": "package", - "path": "humanizer.core.is/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.is.2.14.1.nupkg.sha512", - "humanizer.core.is.nuspec", - "lib/net6.0/is/Humanizer.resources.dll", - "lib/netstandard1.0/is/Humanizer.resources.dll", - "lib/netstandard2.0/is/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.it/2.14.1": { - "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", - "type": "package", - "path": "humanizer.core.it/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.it.2.14.1.nupkg.sha512", - "humanizer.core.it.nuspec", - "lib/net6.0/it/Humanizer.resources.dll", - "lib/netstandard1.0/it/Humanizer.resources.dll", - "lib/netstandard2.0/it/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.ja/2.14.1": { - "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", - "type": "package", - "path": "humanizer.core.ja/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.ja.2.14.1.nupkg.sha512", - "humanizer.core.ja.nuspec", - "lib/net6.0/ja/Humanizer.resources.dll", - "lib/netstandard1.0/ja/Humanizer.resources.dll", - "lib/netstandard2.0/ja/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.ko-KR/2.14.1": { - "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", - "type": "package", - "path": "humanizer.core.ko-kr/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.ko-kr.2.14.1.nupkg.sha512", - "humanizer.core.ko-kr.nuspec", - "lib/netstandard1.0/ko-KR/Humanizer.resources.dll", - "lib/netstandard2.0/ko-KR/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.ku/2.14.1": { - "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", - "type": "package", - "path": "humanizer.core.ku/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.ku.2.14.1.nupkg.sha512", - "humanizer.core.ku.nuspec", - "lib/net6.0/ku/Humanizer.resources.dll", - "lib/netstandard1.0/ku/Humanizer.resources.dll", - "lib/netstandard2.0/ku/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.lv/2.14.1": { - "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", - "type": "package", - "path": "humanizer.core.lv/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.lv.2.14.1.nupkg.sha512", - "humanizer.core.lv.nuspec", - "lib/net6.0/lv/Humanizer.resources.dll", - "lib/netstandard1.0/lv/Humanizer.resources.dll", - "lib/netstandard2.0/lv/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.ms-MY/2.14.1": { - "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", - "type": "package", - "path": "humanizer.core.ms-my/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.ms-my.2.14.1.nupkg.sha512", - "humanizer.core.ms-my.nuspec", - "lib/netstandard1.0/ms-MY/Humanizer.resources.dll", - "lib/netstandard2.0/ms-MY/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.mt/2.14.1": { - "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", - "type": "package", - "path": "humanizer.core.mt/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.mt.2.14.1.nupkg.sha512", - "humanizer.core.mt.nuspec", - "lib/netstandard1.0/mt/Humanizer.resources.dll", - "lib/netstandard2.0/mt/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.nb/2.14.1": { - "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", - "type": "package", - "path": "humanizer.core.nb/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.nb.2.14.1.nupkg.sha512", - "humanizer.core.nb.nuspec", - "lib/net6.0/nb/Humanizer.resources.dll", - "lib/netstandard1.0/nb/Humanizer.resources.dll", - "lib/netstandard2.0/nb/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.nb-NO/2.14.1": { - "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", - "type": "package", - "path": "humanizer.core.nb-no/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.nb-no.2.14.1.nupkg.sha512", - "humanizer.core.nb-no.nuspec", - "lib/net6.0/nb-NO/Humanizer.resources.dll", - "lib/netstandard1.0/nb-NO/Humanizer.resources.dll", - "lib/netstandard2.0/nb-NO/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.nl/2.14.1": { - "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", - "type": "package", - "path": "humanizer.core.nl/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.nl.2.14.1.nupkg.sha512", - "humanizer.core.nl.nuspec", - "lib/net6.0/nl/Humanizer.resources.dll", - "lib/netstandard1.0/nl/Humanizer.resources.dll", - "lib/netstandard2.0/nl/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.pl/2.14.1": { - "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", - "type": "package", - "path": "humanizer.core.pl/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.pl.2.14.1.nupkg.sha512", - "humanizer.core.pl.nuspec", - "lib/net6.0/pl/Humanizer.resources.dll", - "lib/netstandard1.0/pl/Humanizer.resources.dll", - "lib/netstandard2.0/pl/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.pt/2.14.1": { - "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", - "type": "package", - "path": "humanizer.core.pt/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.pt.2.14.1.nupkg.sha512", - "humanizer.core.pt.nuspec", - "lib/net6.0/pt/Humanizer.resources.dll", - "lib/netstandard1.0/pt/Humanizer.resources.dll", - "lib/netstandard2.0/pt/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.ro/2.14.1": { - "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", - "type": "package", - "path": "humanizer.core.ro/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.ro.2.14.1.nupkg.sha512", - "humanizer.core.ro.nuspec", - "lib/net6.0/ro/Humanizer.resources.dll", - "lib/netstandard1.0/ro/Humanizer.resources.dll", - "lib/netstandard2.0/ro/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.ru/2.14.1": { - "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", - "type": "package", - "path": "humanizer.core.ru/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.ru.2.14.1.nupkg.sha512", - "humanizer.core.ru.nuspec", - "lib/net6.0/ru/Humanizer.resources.dll", - "lib/netstandard1.0/ru/Humanizer.resources.dll", - "lib/netstandard2.0/ru/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.sk/2.14.1": { - "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", - "type": "package", - "path": "humanizer.core.sk/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.sk.2.14.1.nupkg.sha512", - "humanizer.core.sk.nuspec", - "lib/net6.0/sk/Humanizer.resources.dll", - "lib/netstandard1.0/sk/Humanizer.resources.dll", - "lib/netstandard2.0/sk/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.sl/2.14.1": { - "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", - "type": "package", - "path": "humanizer.core.sl/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.sl.2.14.1.nupkg.sha512", - "humanizer.core.sl.nuspec", - "lib/net6.0/sl/Humanizer.resources.dll", - "lib/netstandard1.0/sl/Humanizer.resources.dll", - "lib/netstandard2.0/sl/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.sr/2.14.1": { - "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", - "type": "package", - "path": "humanizer.core.sr/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.sr.2.14.1.nupkg.sha512", - "humanizer.core.sr.nuspec", - "lib/net6.0/sr/Humanizer.resources.dll", - "lib/netstandard1.0/sr/Humanizer.resources.dll", - "lib/netstandard2.0/sr/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.sr-Latn/2.14.1": { - "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", - "type": "package", - "path": "humanizer.core.sr-latn/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.sr-latn.2.14.1.nupkg.sha512", - "humanizer.core.sr-latn.nuspec", - "lib/net6.0/sr-Latn/Humanizer.resources.dll", - "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll", - "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.sv/2.14.1": { - "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", - "type": "package", - "path": "humanizer.core.sv/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.sv.2.14.1.nupkg.sha512", - "humanizer.core.sv.nuspec", - "lib/net6.0/sv/Humanizer.resources.dll", - "lib/netstandard1.0/sv/Humanizer.resources.dll", - "lib/netstandard2.0/sv/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.th-TH/2.14.1": { - "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", - "type": "package", - "path": "humanizer.core.th-th/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.th-th.2.14.1.nupkg.sha512", - "humanizer.core.th-th.nuspec", - "lib/netstandard1.0/th-TH/Humanizer.resources.dll", - "lib/netstandard2.0/th-TH/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.tr/2.14.1": { - "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", - "type": "package", - "path": "humanizer.core.tr/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.tr.2.14.1.nupkg.sha512", - "humanizer.core.tr.nuspec", - "lib/net6.0/tr/Humanizer.resources.dll", - "lib/netstandard1.0/tr/Humanizer.resources.dll", - "lib/netstandard2.0/tr/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.uk/2.14.1": { - "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", - "type": "package", - "path": "humanizer.core.uk/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.uk.2.14.1.nupkg.sha512", - "humanizer.core.uk.nuspec", - "lib/net6.0/uk/Humanizer.resources.dll", - "lib/netstandard1.0/uk/Humanizer.resources.dll", - "lib/netstandard2.0/uk/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { - "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", - "type": "package", - "path": "humanizer.core.uz-cyrl-uz/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", - "humanizer.core.uz-cyrl-uz.nuspec", - "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll", - "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll", - "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.uz-Latn-UZ/2.14.1": { - "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", - "type": "package", - "path": "humanizer.core.uz-latn-uz/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", - "humanizer.core.uz-latn-uz.nuspec", - "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll", - "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll", - "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.vi/2.14.1": { - "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", - "type": "package", - "path": "humanizer.core.vi/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.vi.2.14.1.nupkg.sha512", - "humanizer.core.vi.nuspec", - "lib/net6.0/vi/Humanizer.resources.dll", - "lib/netstandard1.0/vi/Humanizer.resources.dll", - "lib/netstandard2.0/vi/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.zh-CN/2.14.1": { - "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", - "type": "package", - "path": "humanizer.core.zh-cn/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.zh-cn.2.14.1.nupkg.sha512", - "humanizer.core.zh-cn.nuspec", - "lib/net6.0/zh-CN/Humanizer.resources.dll", - "lib/netstandard1.0/zh-CN/Humanizer.resources.dll", - "lib/netstandard2.0/zh-CN/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.zh-Hans/2.14.1": { - "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", - "type": "package", - "path": "humanizer.core.zh-hans/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.zh-hans.2.14.1.nupkg.sha512", - "humanizer.core.zh-hans.nuspec", - "lib/net6.0/zh-Hans/Humanizer.resources.dll", - "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll", - "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll", - "logo.png" - ] - }, - "Humanizer.Core.zh-Hant/2.14.1": { - "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", - "type": "package", - "path": "humanizer.core.zh-hant/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.zh-hant.2.14.1.nupkg.sha512", - "humanizer.core.zh-hant.nuspec", - "lib/net6.0/zh-Hant/Humanizer.resources.dll", - "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll", - "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll", - "logo.png" - ] - }, - "Microsoft.AspNetCore.Authentication.Negotiate/7.0.9": { - "sha512": "/Sh+zGJAgG5MwQcHATWrKsFn4IY5psaX2c1QtKwSNPlEuTjZIZe3aVjEWMHT/ou2jkQ12S2kjOzaW5nMeg/cBA==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.negotiate/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.dll", - "lib/net7.0/Microsoft.AspNetCore.Authentication.Negotiate.xml", - "microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512", - "microsoft.aspnetcore.authentication.negotiate.nuspec" - ] - }, - "Microsoft.AspNetCore.Connections.Abstractions/7.0.9": { - "sha512": "T/A7MkuL0g4r/oNuASR2gIukWoG2360/tuS9RoiU1dOwTlMYthHJaK8NEpswMihcImCDryiHp5dJCPTZHIs9TQ==", - "type": "package", - "path": "microsoft.aspnetcore.connections.abstractions/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net462/Microsoft.AspNetCore.Connections.Abstractions.dll", - "lib/net462/Microsoft.AspNetCore.Connections.Abstractions.xml", - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.dll", - "lib/net7.0/Microsoft.AspNetCore.Connections.Abstractions.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.xml", - "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.dll", - "lib/netstandard2.1/Microsoft.AspNetCore.Connections.Abstractions.xml", - "microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512", - "microsoft.aspnetcore.connections.abstractions.nuspec" - ] - }, - "Microsoft.AspNetCore.JsonPatch/7.0.9": { - "sha512": "6iMRtYIQZj7gMC7iVotL9bZjCjnbV2ZkAAduKYHfV6v+WQhEjk0iEGSFNVh6N9rTCNTeZ2xVgv3xi675GwyDzQ==", - "type": "package", - "path": "microsoft.aspnetcore.jsonpatch/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net462/Microsoft.AspNetCore.JsonPatch.dll", - "lib/net462/Microsoft.AspNetCore.JsonPatch.xml", - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll", - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", - "microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512", - "microsoft.aspnetcore.jsonpatch.nuspec" - ] - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.9": { - "sha512": "dhAFLGV3RfK6BAbLYpTKcVch1hcyP2qDWNy7Pk2wGrQEO/yWbWwiR9c13hk5kGWcPMGeVMkcuftUo6OAHe2yIA==", - "type": "package", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", - "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512", - "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" - ] - }, - "Microsoft.AspNetCore.OpenApi/7.0.9": { - "sha512": "5kBnHntQTJqmYV66Khdl9OJ/j2Pw8cOKj8kNQuLCpfCsPbSijp334Vaad3vaGnG9Wpgq/VbSUSRxZOoroOe8zQ==", - "type": "package", - "path": "microsoft.aspnetcore.openapi/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll", - "lib/net7.0/Microsoft.AspNetCore.OpenApi.xml", - "microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512", - "microsoft.aspnetcore.openapi.nuspec" - ] - }, - "Microsoft.AspNetCore.Razor.Language/6.0.11": { - "sha512": "SPjSZIL7JFI5XbVfRMPG/fHLr/xfumSrmN+IOimyIf71WQQ8u2hpaE5+VvpcgjJ5VrJMhfDEhdEAB+Nj/S16dQ==", - "type": "package", - "path": "microsoft.aspnetcore.razor.language/6.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", - "microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512", - "microsoft.aspnetcore.razor.language.nuspec" - ] - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "type": "package", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", - "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", - "microsoft.bcl.asyncinterfaces.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Build/17.3.2": { - "sha512": "k5+7CfF/aM/hykfnrF93VhbUnhGfpJkGaD+ce8VlhLnOqDyts7WV+8Up3YCP6qmXMZFeeH/Cp23w2wSliP0mBw==", - "type": "package", - "path": "microsoft.build/17.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "MSBuild-NuGet-Icon.png", - "README.md", - "lib/net472/Microsoft.Build.dll", - "lib/net472/Microsoft.Build.pdb", - "lib/net472/Microsoft.Build.xml", - "lib/net6.0/Microsoft.Build.dll", - "lib/net6.0/Microsoft.Build.pdb", - "lib/net6.0/Microsoft.Build.xml", - "microsoft.build.17.3.2.nupkg.sha512", - "microsoft.build.nuspec", - "notices/THIRDPARTYNOTICES.txt", - "ref/net472/Microsoft.Build.dll", - "ref/net472/Microsoft.Build.xml", - "ref/net6.0/Microsoft.Build.dll", - "ref/net6.0/Microsoft.Build.xml" - ] - }, - "Microsoft.Build.Framework/17.3.2": { - "sha512": "iGfJt6rm/vIEowBG6qNX2Udn7UagI6MzalDwwdkDUkSwhvvrGCnDLphyRABAwrrsWHTD/LJlUAJsbW1SkC4CUQ==", - "type": "package", - "path": "microsoft.build.framework/17.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "MSBuild-NuGet-Icon.png", - "README.md", - "lib/net472/Microsoft.Build.Framework.dll", - "lib/net472/Microsoft.Build.Framework.pdb", - "lib/net472/Microsoft.Build.Framework.xml", - "lib/net6.0/Microsoft.Build.Framework.dll", - "lib/net6.0/Microsoft.Build.Framework.pdb", - "lib/net6.0/Microsoft.Build.Framework.xml", - "microsoft.build.framework.17.3.2.nupkg.sha512", - "microsoft.build.framework.nuspec", - "notices/THIRDPARTYNOTICES.txt", - "ref/net472/Microsoft.Build.Framework.dll", - "ref/net472/Microsoft.Build.Framework.xml", - "ref/net6.0/Microsoft.Build.Framework.dll", - "ref/net6.0/Microsoft.Build.Framework.xml", - "ref/netstandard2.0/Microsoft.Build.Framework.dll", - "ref/netstandard2.0/Microsoft.Build.Framework.xml" - ] - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "type": "package", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", - "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", - "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", - "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", - "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "build/Microsoft.CodeAnalysis.Analyzers.props", - "build/Microsoft.CodeAnalysis.Analyzers.targets", - "build/config/analysislevel_2_9_8_all.editorconfig", - "build/config/analysislevel_2_9_8_default.editorconfig", - "build/config/analysislevel_2_9_8_minimum.editorconfig", - "build/config/analysislevel_2_9_8_none.editorconfig", - "build/config/analysislevel_2_9_8_recommended.editorconfig", - "build/config/analysislevel_3_3_all.editorconfig", - "build/config/analysislevel_3_3_default.editorconfig", - "build/config/analysislevel_3_3_minimum.editorconfig", - "build/config/analysislevel_3_3_none.editorconfig", - "build/config/analysislevel_3_3_recommended.editorconfig", - "build/config/analysislevel_3_all.editorconfig", - "build/config/analysislevel_3_default.editorconfig", - "build/config/analysislevel_3_minimum.editorconfig", - "build/config/analysislevel_3_none.editorconfig", - "build/config/analysislevel_3_recommended.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_all.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_default.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_none.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig", - "build/config/analysislevelcorrectness_3_3_all.editorconfig", - "build/config/analysislevelcorrectness_3_3_default.editorconfig", - "build/config/analysislevelcorrectness_3_3_minimum.editorconfig", - "build/config/analysislevelcorrectness_3_3_none.editorconfig", - "build/config/analysislevelcorrectness_3_3_recommended.editorconfig", - "build/config/analysislevelcorrectness_3_all.editorconfig", - "build/config/analysislevelcorrectness_3_default.editorconfig", - "build/config/analysislevelcorrectness_3_minimum.editorconfig", - "build/config/analysislevelcorrectness_3_none.editorconfig", - "build/config/analysislevelcorrectness_3_recommended.editorconfig", - "build/config/analysislevellibrary_2_9_8_all.editorconfig", - "build/config/analysislevellibrary_2_9_8_default.editorconfig", - "build/config/analysislevellibrary_2_9_8_minimum.editorconfig", - "build/config/analysislevellibrary_2_9_8_none.editorconfig", - "build/config/analysislevellibrary_2_9_8_recommended.editorconfig", - "build/config/analysislevellibrary_3_3_all.editorconfig", - "build/config/analysislevellibrary_3_3_default.editorconfig", - "build/config/analysislevellibrary_3_3_minimum.editorconfig", - "build/config/analysislevellibrary_3_3_none.editorconfig", - "build/config/analysislevellibrary_3_3_recommended.editorconfig", - "build/config/analysislevellibrary_3_all.editorconfig", - "build/config/analysislevellibrary_3_default.editorconfig", - "build/config/analysislevellibrary_3_minimum.editorconfig", - "build/config/analysislevellibrary_3_none.editorconfig", - "build/config/analysislevellibrary_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig", - "documentation/Analyzer Configuration.md", - "documentation/Microsoft.CodeAnalysis.Analyzers.md", - "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", - "editorconfig/AllRulesDefault/.editorconfig", - "editorconfig/AllRulesDisabled/.editorconfig", - "editorconfig/AllRulesEnabled/.editorconfig", - "editorconfig/CorrectnessRulesDefault/.editorconfig", - "editorconfig/CorrectnessRulesEnabled/.editorconfig", - "editorconfig/DataflowRulesDefault/.editorconfig", - "editorconfig/DataflowRulesEnabled/.editorconfig", - "editorconfig/LibraryRulesDefault/.editorconfig", - "editorconfig/LibraryRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", - "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", - "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", - "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512", - "microsoft.codeanalysis.analyzers.nuspec", - "rulesets/AllRulesDefault.ruleset", - "rulesets/AllRulesDisabled.ruleset", - "rulesets/AllRulesEnabled.ruleset", - "rulesets/CorrectnessRulesDefault.ruleset", - "rulesets/CorrectnessRulesEnabled.ruleset", - "rulesets/DataflowRulesDefault.ruleset", - "rulesets/DataflowRulesEnabled.ruleset", - "rulesets/LibraryRulesDefault.ruleset", - "rulesets/LibraryRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", - "rulesets/PortedFromFxCopRulesDefault.ruleset", - "rulesets/PortedFromFxCopRulesEnabled.ruleset", - "tools/install.ps1", - "tools/uninstall.ps1" - ] - }, - "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { - "sha512": "gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", - "type": "package", - "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "EULA.rtf", - "ThirdPartyNotices.rtf", - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.xml", - "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512", - "microsoft.codeanalysis.analyzerutilities.nuspec", - "tools/install.ps1", - "tools/uninstall.ps1" - ] - }, - "Microsoft.CodeAnalysis.Common/4.4.0": { - "sha512": "JfHupS/B7Jb5MZoYkFFABn3mux0wQgxi2D8F/rJYZeRBK2ZOyk7TjQ2Kq9rh6W/DCh0KNbbSbn5qoFar+ueHqw==", - "type": "package", - "path": "microsoft.codeanalysis.common/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", - "microsoft.codeanalysis.common.4.4.0.nupkg.sha512", - "microsoft.codeanalysis.common.nuspec" - ] - }, - "Microsoft.CodeAnalysis.CSharp/4.4.0": { - "sha512": "eD2w0xHRoaqK07hjlOKGR9eLNy3nimiGNeCClNax1NDgS/+DBtBqCjXelOa+TNy99kIB3nHhUqDmr46nDXy/RQ==", - "type": "package", - "path": "microsoft.codeanalysis.csharp/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", - "microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.nuspec" - ] - }, - "Microsoft.CodeAnalysis.CSharp.Features/4.4.0": { - "sha512": "Un4XeiWD8Xo4A/Q6Wrkrt9UCas6EaP/ZfQAHXNjde5ULkvliWzvy0/ZlXzlPo6L/Xoon1BWOFMprIQWCjuLq9A==", - "type": "package", - "path": "microsoft.codeanalysis.csharp.features/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", - "microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.features.nuspec" - ] - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.4.0": { - "sha512": "ADmI2jcwJP9GgBsVx2l0Bo0v3Hn4hHBg1uJ5zHd230mkO8rUJBLZu2h3tCbpwJMkpAIRtrxuZDD5uNfiyz0Q5Q==", - "type": "package", - "path": "microsoft.codeanalysis.csharp.workspaces/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.workspaces.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Elfie/1.0.0": { - "sha512": "r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", - "type": "package", - "path": "microsoft.codeanalysis.elfie/1.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.CodeAnalysis.Elfie.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll", - "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512", - "microsoft.codeanalysis.elfie.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Features/4.4.0": { - "sha512": "0LEXWpaDlZMl5lOnM872FuBmcDD99qKp4QmmFsMpJjnq7f21KuNchdyuSdh9pdpibl2JfdMWrvA56y5dKc6EPQ==", - "type": "package", - "path": "microsoft.codeanalysis.features/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll", - "microsoft.codeanalysis.features.4.4.0.nupkg.sha512", - "microsoft.codeanalysis.features.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Razor/6.0.11": { - "sha512": "40M7AHKPKvOw3LnWsaKmHitk0taBZ8982zoZBQstYzsfdH+tcIdeOewRHvuej23T7HV6d8se9MZdKC9O2I78vQ==", - "type": "package", - "path": "microsoft.codeanalysis.razor/6.0.11", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", - "microsoft.codeanalysis.razor.6.0.11.nupkg.sha512", - "microsoft.codeanalysis.razor.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Scripting.Common/4.4.0": { - "sha512": "RkAwCFJ8LfN7TfbWDejm50nucPxVoG/vDh0qVIoGx1U2FZhaBct72U4lGIACLuYsa0dIlC7Y0ivBemfDHnqWmA==", - "type": "package", - "path": "microsoft.codeanalysis.scripting.common/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", - "microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512", - "microsoft.codeanalysis.scripting.common.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.4.0": { - "sha512": "6KzmmTIUU7qInQldcSPaW0nkrO71zlFPhoiabFBhkokEit49rLx4Kr/G3agBchYzirScrXibqgTRQkvx9WcJTw==", - "type": "package", - "path": "microsoft.codeanalysis.workspaces.common/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512", - "microsoft.codeanalysis.workspaces.common.nuspec" - ] - }, - "Microsoft.CSharp/4.7.0": { - "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "type": "package", - "path": "microsoft.csharp/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.xml", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/uap10.0.16299/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.7.0.nupkg.sha512", - "microsoft.csharp.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard2.0/Microsoft.CSharp.dll", - "ref/netstandard2.0/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/uap10.0.16299/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Data.SqlClient/5.0.2": { - "sha512": "mxcYU9I5TLzUegLVXiTtOE89RXN3GafL1Y+ExIbXvivvQtxplI4wxOgsiZGO4TZC18OJqui7mLVmiYpdFFImRQ==", - "type": "package", - "path": "microsoft.data.sqlclient/5.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dotnet.png", - "lib/net462/Microsoft.Data.SqlClient.dll", - "lib/net462/Microsoft.Data.SqlClient.pdb", - "lib/net462/Microsoft.Data.SqlClient.xml", - "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml", - "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", - "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", - "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", - "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", - "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", - "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", - "microsoft.data.sqlclient.5.0.2.nupkg.sha512", - "microsoft.data.sqlclient.nuspec", - "ref/net462/Microsoft.Data.SqlClient.dll", - "ref/net462/Microsoft.Data.SqlClient.pdb", - "ref/net462/Microsoft.Data.SqlClient.xml", - "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll", - "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", - "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml", - "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", - "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", - "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", - "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", - "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", - "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", - "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", - "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", - "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", - "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb", - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll", - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb", - "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", - "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" - ] - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "sha512": "y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==", - "type": "package", - "path": "microsoft.data.sqlclient.sni.runtime/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "dotnet.png", - "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512", - "microsoft.data.sqlclient.sni.runtime.nuspec", - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" - ] - }, - "Microsoft.DiaSymReader/1.4.0": { - "sha512": "iLtWq5/W5ePzSraavAFeXAbasE6REDByizTz6M8yQO3e4jf+6pRqPLdNCSvnSfKRVqsF7y/lTVWhqlf89ttweg==", - "type": "package", - "path": "microsoft.diasymreader/1.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net20/Microsoft.DiaSymReader.dll", - "lib/net20/Microsoft.DiaSymReader.pdb", - "lib/net20/Microsoft.DiaSymReader.xml", - "lib/netstandard1.1/Microsoft.DiaSymReader.dll", - "lib/netstandard1.1/Microsoft.DiaSymReader.pdb", - "lib/netstandard1.1/Microsoft.DiaSymReader.xml", - "microsoft.diasymreader.1.4.0.nupkg.sha512", - "microsoft.diasymreader.nuspec" - ] - }, - "Microsoft.DotNet.Scaffolding.Shared/7.0.8": { - "sha512": "QXtyFZWYAwlKymbFCQT5O21BJ7hLmQcJGB/EdvUV0VuJyeWJMf/8JSI+ijw3IoOd7MUTBpGVNNE8UDM9gUm4Qw==", - "type": "package", - "path": "microsoft.dotnet.scaffolding.shared/7.0.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.dll", - "lib/net7.0/Microsoft.DotNet.Scaffolding.Shared.xml", - "microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512", - "microsoft.dotnet.scaffolding.shared.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/7.0.9": { - "sha512": "9YuCdQWuRAmYYHqwW1h5ukKMC1fmNvcVHdp3gb8zdHxwSQz7hkGpYOBEjm6dRXRmGRkpUyHL8rwUz4kd53Ev0A==", - "type": "package", - "path": "microsoft.entityframeworkcore/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props", - "lib/net6.0/Microsoft.EntityFrameworkCore.dll", - "lib/net6.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.7.0.9.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.9": { - "sha512": "cfY6Fn7cnP/5pXndL8QYaey/B2nGn1fwze5aSaMJymmbqwqYzFiszHuWbsdVBCDYJc8ok7eB1m/nCc3/rltulQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.9": { - "sha512": "VvqFD3DdML6LhPCAR/lG2xNX66juylC8v57yUAAYnUSdEUOMRi3lNoT4OrNdG0rere3UOQPhvVl5FH2QdyoF8Q==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Design/7.0.9": { - "sha512": "tWsa+spzKZAwHrUP6vYM1LLh0P89UMcldEjerFPPZb0LcI/ONQmh7ldK4Q8TeRuIiuXxYgRYPElSgxwLp14oug==", - "type": "package", - "path": "microsoft.entityframeworkcore.design/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/net6.0/Microsoft.EntityFrameworkCore.Design.props", - "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll", - "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml", - "microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512", - "microsoft.entityframeworkcore.design.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.9": { - "sha512": "u7iN6cNd6SJUlpdk24JVIbkji/UbkEEQ7pXncTyT4eXXj+Hz2y4NSZFOAywPGcioIgX1YzbKWDiJhk7hjSFxBQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.9": { - "sha512": "19S5BWZBcaShhLWzePi9iOq+meKIgL+dDlS0NQgPOQapu3wb3So3ZL0xgPmmlyq3GLYvXiCmQsK3Yv3vXYaMTg==", - "type": "package", - "path": "microsoft.entityframeworkcore.sqlserver/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll", - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.xml", - "microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512", - "microsoft.entityframeworkcore.sqlserver.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.9": { - "sha512": "GWOSIe8ltR/mqv2wpRvMhy6ULapdKhZXXpXSGWzG1fRxhYXjSGpe2Pqhxqo46o9RDGlk0WJUXrwyU+N4voPxMw==", - "type": "package", - "path": "microsoft.entityframeworkcore.tools/7.0.9", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net6.0/_._", - "microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512", - "microsoft.entityframeworkcore.tools.nuspec", - "tools/EntityFrameworkCore.PS2.psd1", - "tools/EntityFrameworkCore.PS2.psm1", - "tools/EntityFrameworkCore.psd1", - "tools/EntityFrameworkCore.psm1", - "tools/about_EntityFrameworkCore.help.txt", - "tools/init.ps1", - "tools/net461/any/ef.exe", - "tools/net461/win-arm64/ef.exe", - "tools/net461/win-x86/ef.exe", - "tools/netcoreapp2.0/any/ef.dll", - "tools/netcoreapp2.0/any/ef.runtimeconfig.json" - ] - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", - "type": "package", - "path": "microsoft.extensions.apidescription.server/6.0.5", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/Microsoft.Extensions.ApiDescription.Server.props", - "build/Microsoft.Extensions.ApiDescription.Server.targets", - "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", - "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", - "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", - "microsoft.extensions.apidescription.server.nuspec", - "tools/Newtonsoft.Json.dll", - "tools/dotnet-getdocument.deps.json", - "tools/dotnet-getdocument.dll", - "tools/dotnet-getdocument.runtimeconfig.json", - "tools/net461-x86/GetDocument.Insider.exe", - "tools/net461-x86/GetDocument.Insider.exe.config", - "tools/net461-x86/Microsoft.Win32.Primitives.dll", - "tools/net461-x86/System.AppContext.dll", - "tools/net461-x86/System.Buffers.dll", - "tools/net461-x86/System.Collections.Concurrent.dll", - "tools/net461-x86/System.Collections.NonGeneric.dll", - "tools/net461-x86/System.Collections.Specialized.dll", - "tools/net461-x86/System.Collections.dll", - "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll", - "tools/net461-x86/System.ComponentModel.Primitives.dll", - "tools/net461-x86/System.ComponentModel.TypeConverter.dll", - "tools/net461-x86/System.ComponentModel.dll", - "tools/net461-x86/System.Console.dll", - "tools/net461-x86/System.Data.Common.dll", - "tools/net461-x86/System.Diagnostics.Contracts.dll", - "tools/net461-x86/System.Diagnostics.Debug.dll", - "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll", - "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll", - "tools/net461-x86/System.Diagnostics.Process.dll", - "tools/net461-x86/System.Diagnostics.StackTrace.dll", - "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll", - "tools/net461-x86/System.Diagnostics.Tools.dll", - "tools/net461-x86/System.Diagnostics.TraceSource.dll", - "tools/net461-x86/System.Diagnostics.Tracing.dll", - "tools/net461-x86/System.Drawing.Primitives.dll", - "tools/net461-x86/System.Dynamic.Runtime.dll", - "tools/net461-x86/System.Globalization.Calendars.dll", - "tools/net461-x86/System.Globalization.Extensions.dll", - "tools/net461-x86/System.Globalization.dll", - "tools/net461-x86/System.IO.Compression.ZipFile.dll", - "tools/net461-x86/System.IO.Compression.dll", - "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll", - "tools/net461-x86/System.IO.FileSystem.Primitives.dll", - "tools/net461-x86/System.IO.FileSystem.Watcher.dll", - "tools/net461-x86/System.IO.FileSystem.dll", - "tools/net461-x86/System.IO.IsolatedStorage.dll", - "tools/net461-x86/System.IO.MemoryMappedFiles.dll", - "tools/net461-x86/System.IO.Pipes.dll", - "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll", - "tools/net461-x86/System.IO.dll", - "tools/net461-x86/System.Linq.Expressions.dll", - "tools/net461-x86/System.Linq.Parallel.dll", - "tools/net461-x86/System.Linq.Queryable.dll", - "tools/net461-x86/System.Linq.dll", - "tools/net461-x86/System.Memory.dll", - "tools/net461-x86/System.Net.Http.dll", - "tools/net461-x86/System.Net.NameResolution.dll", - "tools/net461-x86/System.Net.NetworkInformation.dll", - "tools/net461-x86/System.Net.Ping.dll", - "tools/net461-x86/System.Net.Primitives.dll", - "tools/net461-x86/System.Net.Requests.dll", - "tools/net461-x86/System.Net.Security.dll", - "tools/net461-x86/System.Net.Sockets.dll", - "tools/net461-x86/System.Net.WebHeaderCollection.dll", - "tools/net461-x86/System.Net.WebSockets.Client.dll", - "tools/net461-x86/System.Net.WebSockets.dll", - "tools/net461-x86/System.Numerics.Vectors.dll", - "tools/net461-x86/System.ObjectModel.dll", - "tools/net461-x86/System.Reflection.Extensions.dll", - "tools/net461-x86/System.Reflection.Primitives.dll", - "tools/net461-x86/System.Reflection.dll", - "tools/net461-x86/System.Resources.Reader.dll", - "tools/net461-x86/System.Resources.ResourceManager.dll", - "tools/net461-x86/System.Resources.Writer.dll", - "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll", - "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll", - "tools/net461-x86/System.Runtime.Extensions.dll", - "tools/net461-x86/System.Runtime.Handles.dll", - "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll", - "tools/net461-x86/System.Runtime.InteropServices.dll", - "tools/net461-x86/System.Runtime.Numerics.dll", - "tools/net461-x86/System.Runtime.Serialization.Formatters.dll", - "tools/net461-x86/System.Runtime.Serialization.Json.dll", - "tools/net461-x86/System.Runtime.Serialization.Primitives.dll", - "tools/net461-x86/System.Runtime.Serialization.Xml.dll", - "tools/net461-x86/System.Runtime.dll", - "tools/net461-x86/System.Security.Claims.dll", - "tools/net461-x86/System.Security.Cryptography.Algorithms.dll", - "tools/net461-x86/System.Security.Cryptography.Csp.dll", - "tools/net461-x86/System.Security.Cryptography.Encoding.dll", - "tools/net461-x86/System.Security.Cryptography.Primitives.dll", - "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll", - "tools/net461-x86/System.Security.Principal.dll", - "tools/net461-x86/System.Security.SecureString.dll", - "tools/net461-x86/System.Text.Encoding.Extensions.dll", - "tools/net461-x86/System.Text.Encoding.dll", - "tools/net461-x86/System.Text.RegularExpressions.dll", - "tools/net461-x86/System.Threading.Overlapped.dll", - "tools/net461-x86/System.Threading.Tasks.Parallel.dll", - "tools/net461-x86/System.Threading.Tasks.dll", - "tools/net461-x86/System.Threading.Thread.dll", - "tools/net461-x86/System.Threading.ThreadPool.dll", - "tools/net461-x86/System.Threading.Timer.dll", - "tools/net461-x86/System.Threading.dll", - "tools/net461-x86/System.ValueTuple.dll", - "tools/net461-x86/System.Xml.ReaderWriter.dll", - "tools/net461-x86/System.Xml.XDocument.dll", - "tools/net461-x86/System.Xml.XPath.XDocument.dll", - "tools/net461-x86/System.Xml.XPath.dll", - "tools/net461-x86/System.Xml.XmlDocument.dll", - "tools/net461-x86/System.Xml.XmlSerializer.dll", - "tools/net461-x86/netstandard.dll", - "tools/net461/GetDocument.Insider.exe", - "tools/net461/GetDocument.Insider.exe.config", - "tools/net461/Microsoft.Win32.Primitives.dll", - "tools/net461/System.AppContext.dll", - "tools/net461/System.Buffers.dll", - "tools/net461/System.Collections.Concurrent.dll", - "tools/net461/System.Collections.NonGeneric.dll", - "tools/net461/System.Collections.Specialized.dll", - "tools/net461/System.Collections.dll", - "tools/net461/System.ComponentModel.EventBasedAsync.dll", - "tools/net461/System.ComponentModel.Primitives.dll", - "tools/net461/System.ComponentModel.TypeConverter.dll", - "tools/net461/System.ComponentModel.dll", - "tools/net461/System.Console.dll", - "tools/net461/System.Data.Common.dll", - "tools/net461/System.Diagnostics.Contracts.dll", - "tools/net461/System.Diagnostics.Debug.dll", - "tools/net461/System.Diagnostics.DiagnosticSource.dll", - "tools/net461/System.Diagnostics.FileVersionInfo.dll", - "tools/net461/System.Diagnostics.Process.dll", - "tools/net461/System.Diagnostics.StackTrace.dll", - "tools/net461/System.Diagnostics.TextWriterTraceListener.dll", - "tools/net461/System.Diagnostics.Tools.dll", - "tools/net461/System.Diagnostics.TraceSource.dll", - "tools/net461/System.Diagnostics.Tracing.dll", - "tools/net461/System.Drawing.Primitives.dll", - "tools/net461/System.Dynamic.Runtime.dll", - "tools/net461/System.Globalization.Calendars.dll", - "tools/net461/System.Globalization.Extensions.dll", - "tools/net461/System.Globalization.dll", - "tools/net461/System.IO.Compression.ZipFile.dll", - "tools/net461/System.IO.Compression.dll", - "tools/net461/System.IO.FileSystem.DriveInfo.dll", - "tools/net461/System.IO.FileSystem.Primitives.dll", - "tools/net461/System.IO.FileSystem.Watcher.dll", - "tools/net461/System.IO.FileSystem.dll", - "tools/net461/System.IO.IsolatedStorage.dll", - "tools/net461/System.IO.MemoryMappedFiles.dll", - "tools/net461/System.IO.Pipes.dll", - "tools/net461/System.IO.UnmanagedMemoryStream.dll", - "tools/net461/System.IO.dll", - "tools/net461/System.Linq.Expressions.dll", - "tools/net461/System.Linq.Parallel.dll", - "tools/net461/System.Linq.Queryable.dll", - "tools/net461/System.Linq.dll", - "tools/net461/System.Memory.dll", - "tools/net461/System.Net.Http.dll", - "tools/net461/System.Net.NameResolution.dll", - "tools/net461/System.Net.NetworkInformation.dll", - "tools/net461/System.Net.Ping.dll", - "tools/net461/System.Net.Primitives.dll", - "tools/net461/System.Net.Requests.dll", - "tools/net461/System.Net.Security.dll", - "tools/net461/System.Net.Sockets.dll", - "tools/net461/System.Net.WebHeaderCollection.dll", - "tools/net461/System.Net.WebSockets.Client.dll", - "tools/net461/System.Net.WebSockets.dll", - "tools/net461/System.Numerics.Vectors.dll", - "tools/net461/System.ObjectModel.dll", - "tools/net461/System.Reflection.Extensions.dll", - "tools/net461/System.Reflection.Primitives.dll", - "tools/net461/System.Reflection.dll", - "tools/net461/System.Resources.Reader.dll", - "tools/net461/System.Resources.ResourceManager.dll", - "tools/net461/System.Resources.Writer.dll", - "tools/net461/System.Runtime.CompilerServices.Unsafe.dll", - "tools/net461/System.Runtime.CompilerServices.VisualC.dll", - "tools/net461/System.Runtime.Extensions.dll", - "tools/net461/System.Runtime.Handles.dll", - "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll", - "tools/net461/System.Runtime.InteropServices.dll", - "tools/net461/System.Runtime.Numerics.dll", - "tools/net461/System.Runtime.Serialization.Formatters.dll", - "tools/net461/System.Runtime.Serialization.Json.dll", - "tools/net461/System.Runtime.Serialization.Primitives.dll", - "tools/net461/System.Runtime.Serialization.Xml.dll", - "tools/net461/System.Runtime.dll", - "tools/net461/System.Security.Claims.dll", - "tools/net461/System.Security.Cryptography.Algorithms.dll", - "tools/net461/System.Security.Cryptography.Csp.dll", - "tools/net461/System.Security.Cryptography.Encoding.dll", - "tools/net461/System.Security.Cryptography.Primitives.dll", - "tools/net461/System.Security.Cryptography.X509Certificates.dll", - "tools/net461/System.Security.Principal.dll", - "tools/net461/System.Security.SecureString.dll", - "tools/net461/System.Text.Encoding.Extensions.dll", - "tools/net461/System.Text.Encoding.dll", - "tools/net461/System.Text.RegularExpressions.dll", - "tools/net461/System.Threading.Overlapped.dll", - "tools/net461/System.Threading.Tasks.Parallel.dll", - "tools/net461/System.Threading.Tasks.dll", - "tools/net461/System.Threading.Thread.dll", - "tools/net461/System.Threading.ThreadPool.dll", - "tools/net461/System.Threading.Timer.dll", - "tools/net461/System.Threading.dll", - "tools/net461/System.ValueTuple.dll", - "tools/net461/System.Xml.ReaderWriter.dll", - "tools/net461/System.Xml.XDocument.dll", - "tools/net461/System.Xml.XPath.XDocument.dll", - "tools/net461/System.Xml.XPath.dll", - "tools/net461/System.Xml.XmlDocument.dll", - "tools/net461/System.Xml.XmlSerializer.dll", - "tools/net461/netstandard.dll", - "tools/netcoreapp2.1/GetDocument.Insider.deps.json", - "tools/netcoreapp2.1/GetDocument.Insider.dll", - "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", - "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "sha512": "IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "sha512": "xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", - "type": "package", - "path": "microsoft.extensions.caching.memory/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", - "lib/net462/Microsoft.Extensions.Caching.Memory.dll", - "lib/net462/Microsoft.Extensions.Caching.Memory.xml", - "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "lib/net462/Microsoft.Extensions.DependencyInjection.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { - "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "sha512": "oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", - "type": "package", - "path": "microsoft.extensions.dependencymodel/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "README.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", - "lib/net462/Microsoft.Extensions.DependencyModel.dll", - "lib/net462/Microsoft.Extensions.DependencyModel.xml", - "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", - "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", - "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512", - "microsoft.extensions.dependencymodel.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Features/7.0.9": { - "sha512": "IJ2vdDt2OYCKyJ7ZJPIZKa4b0M0tsG36h0QUt1d/E8IMAnjIncI+1i9Am0nmheD/wpcVd9eDykiV4dklcwUd3Q==", - "type": "package", - "path": "microsoft.extensions.features/7.0.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net462/Microsoft.Extensions.Features.dll", - "lib/net462/Microsoft.Extensions.Features.xml", - "lib/net7.0/Microsoft.Extensions.Features.dll", - "lib/net7.0/Microsoft.Extensions.Features.xml", - "lib/netstandard2.0/Microsoft.Extensions.Features.dll", - "lib/netstandard2.0/Microsoft.Extensions.Features.xml", - "microsoft.extensions.features.7.0.9.nupkg.sha512", - "microsoft.extensions.features.nuspec" - ] - }, - "Microsoft.Extensions.Logging/7.0.0": { - "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", - "type": "package", - "path": "microsoft.extensions.logging/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", - "lib/net462/Microsoft.Extensions.Logging.dll", - "lib/net462/Microsoft.Extensions.Logging.xml", - "lib/net6.0/Microsoft.Extensions.Logging.dll", - "lib/net6.0/Microsoft.Extensions.Logging.xml", - "lib/net7.0/Microsoft.Extensions.Logging.dll", - "lib/net7.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.7.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": { - "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/7.0.0": { - "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", - "type": "package", - "path": "microsoft.extensions.options/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Options.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", - "lib/net462/Microsoft.Extensions.Options.dll", - "lib/net462/Microsoft.Extensions.Options.xml", - "lib/net6.0/Microsoft.Extensions.Options.dll", - "lib/net6.0/Microsoft.Extensions.Options.xml", - "lib/net7.0/Microsoft.Extensions.Options.dll", - "lib/net7.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.7.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", - "type": "package", - "path": "microsoft.extensions.primitives/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "lib/net462/Microsoft.Extensions.Primitives.dll", - "lib/net462/Microsoft.Extensions.Primitives.xml", - "lib/net6.0/Microsoft.Extensions.Primitives.dll", - "lib/net6.0/Microsoft.Extensions.Primitives.xml", - "lib/net7.0/Microsoft.Extensions.Primitives.dll", - "lib/net7.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.7.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Identity.Client/4.45.0": { - "sha512": "ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==", - "type": "package", - "path": "microsoft.identity.client/4.45.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/monoandroid10.0/Microsoft.Identity.Client.dll", - "lib/monoandroid10.0/Microsoft.Identity.Client.xml", - "lib/monoandroid90/Microsoft.Identity.Client.dll", - "lib/monoandroid90/Microsoft.Identity.Client.xml", - "lib/net45/Microsoft.Identity.Client.dll", - "lib/net45/Microsoft.Identity.Client.xml", - "lib/net461/Microsoft.Identity.Client.dll", - "lib/net461/Microsoft.Identity.Client.xml", - "lib/net5.0-windows10.0.17763/Microsoft.Identity.Client.dll", - "lib/net5.0-windows10.0.17763/Microsoft.Identity.Client.xml", - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll", - "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", - "lib/netstandard2.0/Microsoft.Identity.Client.dll", - "lib/netstandard2.0/Microsoft.Identity.Client.xml", - "lib/uap10.0.17763/Microsoft.Identity.Client.dll", - "lib/uap10.0.17763/Microsoft.Identity.Client.pri", - "lib/uap10.0.17763/Microsoft.Identity.Client.xml", - "lib/xamarinios10/Microsoft.Identity.Client.dll", - "lib/xamarinios10/Microsoft.Identity.Client.xml", - "lib/xamarinmac20/Microsoft.Identity.Client.dll", - "lib/xamarinmac20/Microsoft.Identity.Client.xml", - "microsoft.identity.client.4.45.0.nupkg.sha512", - "microsoft.identity.client.nuspec" - ] - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "sha512": "zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", - "type": "package", - "path": "microsoft.identity.client.extensions.msal/2.19.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.Identity.Client.Extensions.Msal.dll", - "lib/net45/Microsoft.Identity.Client.Extensions.Msal.xml", - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll", - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.xml", - "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", - "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", - "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512", - "microsoft.identity.client.extensions.msal.nuspec" - ] - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "sha512": "XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/6.21.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Abstractions.dll", - "lib/net45/Microsoft.IdentityModel.Abstractions.xml", - "lib/net461/Microsoft.IdentityModel.Abstractions.dll", - "lib/net461/Microsoft.IdentityModel.Abstractions.xml", - "lib/net472/Microsoft.IdentityModel.Abstractions.dll", - "lib/net472/Microsoft.IdentityModel.Abstractions.xml", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "sha512": "d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/6.21.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "sha512": "tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==", - "type": "package", - "path": "microsoft.identitymodel.logging/6.21.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Logging.dll", - "lib/net45/Microsoft.IdentityModel.Logging.xml", - "lib/net461/Microsoft.IdentityModel.Logging.dll", - "lib/net461/Microsoft.IdentityModel.Logging.xml", - "lib/net472/Microsoft.IdentityModel.Logging.dll", - "lib/net472/Microsoft.IdentityModel.Logging.xml", - "lib/net6.0/Microsoft.IdentityModel.Logging.dll", - "lib/net6.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.6.21.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "sha512": "0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==", - "type": "package", - "path": "microsoft.identitymodel.protocols/6.21.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Protocols.dll", - "lib/net45/Microsoft.IdentityModel.Protocols.xml", - "lib/net461/Microsoft.IdentityModel.Protocols.dll", - "lib/net461/Microsoft.IdentityModel.Protocols.xml", - "lib/net472/Microsoft.IdentityModel.Protocols.dll", - "lib/net472/Microsoft.IdentityModel.Protocols.xml", - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", - "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", - "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512", - "microsoft.identitymodel.protocols.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "sha512": "vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==", - "type": "package", - "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512", - "microsoft.identitymodel.protocols.openidconnect.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "sha512": "AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==", - "type": "package", - "path": "microsoft.identitymodel.tokens/6.21.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Microsoft.IdentityModel.Tokens.dll", - "lib/net45/Microsoft.IdentityModel.Tokens.xml", - "lib/net461/Microsoft.IdentityModel.Tokens.dll", - "lib/net461/Microsoft.IdentityModel.Tokens.xml", - "lib/net472/Microsoft.IdentityModel.Tokens.dll", - "lib/net472/Microsoft.IdentityModel.Tokens.xml", - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Microsoft.NET.StringTools/17.3.2": { - "sha512": "3sIZECEDSY9kP7BqPLOSIHLsiqv0TSU5cIGAMung+NrefIooo1tBMVRt598CGz+kUF1xlbOsO8nPAYpgfokx/Q==", - "type": "package", - "path": "microsoft.net.stringtools/17.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "MSBuild-NuGet-Icon.png", - "README.md", - "lib/net35/Microsoft.NET.StringTools.net35.dll", - "lib/net35/Microsoft.NET.StringTools.net35.pdb", - "lib/net35/Microsoft.NET.StringTools.net35.xml", - "lib/net472/Microsoft.NET.StringTools.dll", - "lib/net472/Microsoft.NET.StringTools.pdb", - "lib/net472/Microsoft.NET.StringTools.xml", - "lib/net6.0/Microsoft.NET.StringTools.dll", - "lib/net6.0/Microsoft.NET.StringTools.pdb", - "lib/net6.0/Microsoft.NET.StringTools.xml", - "microsoft.net.stringtools.17.3.2.nupkg.sha512", - "microsoft.net.stringtools.nuspec", - "notices/THIRDPARTYNOTICES.txt", - "ref/net35/Microsoft.NET.StringTools.net35.dll", - "ref/net35/Microsoft.NET.StringTools.net35.xml", - "ref/net472/Microsoft.NET.StringTools.dll", - "ref/net472/Microsoft.NET.StringTools.xml", - "ref/net6.0/Microsoft.NET.StringTools.dll", - "ref/net6.0/Microsoft.NET.StringTools.xml", - "ref/netstandard2.0/Microsoft.NET.StringTools.dll", - "ref/netstandard2.0/Microsoft.NET.StringTools.xml" - ] - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "type": "package", - "path": "microsoft.netcore.platforms/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets/1.1.0": { - "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "type": "package", - "path": "microsoft.netcore.targets/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.1.1.0.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json" - ] - }, - "Microsoft.OpenApi/1.4.3": { - "sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", - "type": "package", - "path": "microsoft.openapi/1.4.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.OpenApi.dll", - "lib/netstandard2.0/Microsoft.OpenApi.pdb", - "lib/netstandard2.0/Microsoft.OpenApi.xml", - "microsoft.openapi.1.4.3.nupkg.sha512", - "microsoft.openapi.nuspec" - ] - }, - "Microsoft.SqlServer.Server/1.0.0": { - "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "type": "package", - "path": "microsoft.sqlserver.server/1.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dotnet.png", - "lib/net46/Microsoft.SqlServer.Server.dll", - "lib/net46/Microsoft.SqlServer.Server.pdb", - "lib/net46/Microsoft.SqlServer.Server.xml", - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", - "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", - "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", - "microsoft.sqlserver.server.1.0.0.nupkg.sha512", - "microsoft.sqlserver.server.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration/7.0.8": { - "sha512": "AbrSIuBwG/7+7JBMOSyHVYqcz8YdUdArGIx4Asckm/U8FWKdT6NSJmObZh3X2Da2/W176FqG3MPTPtw/P0kJag==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration/7.0.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.dll", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.xml", - "microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Core/7.0.8": { - "sha512": "Wdud/mzEfFMHqPNBb+N+jVeI2INNSP5WlCrPepQqvoLqiZwM0wUvf7yWGrVbNHBMOjDk3lIavqjXNkY9PriOQg==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.core/7.0.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", - "microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.core.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design/7.0.8": { - "sha512": "56UeN0J8SA5PJjvf6Mv0ZbhLWO6Cr+YGM5eOsNejpQDL+ba8pt8BR7SBMTnSrZIOEeOhY3nAPUkOUK3bh+v3Tg==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.design/7.0.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "README.md", - "lib/net7.0/dotnet-aspnet-codegenerator-design.dll", - "lib/net7.0/dotnet-aspnet-codegenerator-design.xml", - "microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.design.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/7.0.8": { - "sha512": "xlyRk0pmpvPCzCot0bY+Lt6bctGC4dqrQxk1vk2ep+wTdH/CZ8FflnWHEKGBpd+kMrwy93UbJZ8HSAxlBLksLA==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/7.0.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "Templates/DbContext/NewLocalDbContext.cshtml", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.runtimeconfig.json", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", - "microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Templating/7.0.8": { - "sha512": "JTepVMzR2XOr6BVgejMltlzi3O6LMpNb3dz0VKczsjKKX/l6ZT1iTUC6FjuHs9SNTc8rTlEK7hw2TIKpGy1tCQ==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.templating/7.0.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", - "microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.templating.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Utils/7.0.8": { - "sha512": "5T6uK9MH6zWXXyVinlvmbz7fFiuA5/UIFa1wAWD6ylkReDlPTEOq5AMwlkdlEPZuqMgICH4N3BQAizY/EIAlzA==", - "type": "package", - "path": "microsoft.visualstudio.web.codegeneration.utils/7.0.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", - "microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512", - "microsoft.visualstudio.web.codegeneration.utils.nuspec" - ] - }, - "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/7.0.8": { - "sha512": "xQIJfP4NpuAnFykWuXW5nr+1WyPLNVbMhqFS7SKX6CIm32Ak9iCMFS1NSbksl5bfIXaSg1rjJM8TpZYoKM+Ffg==", - "type": "package", - "path": "microsoft.visualstudio.web.codegenerators.mvc/7.0.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Generators/ParameterDefinitions/area.json", - "Generators/ParameterDefinitions/controller.json", - "Generators/ParameterDefinitions/identity.json", - "Generators/ParameterDefinitions/minimalapi.json", - "Generators/ParameterDefinitions/razorpage.json", - "Generators/ParameterDefinitions/view.json", - "Icon.png", - "Templates/ControllerGenerator/ApiControllerWithActions.cshtml", - "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", - "Templates/ControllerGenerator/ApiEmptyController.cshtml", - "Templates/ControllerGenerator/ControllerWithActions.cshtml", - "Templates/ControllerGenerator/EmptyController.cshtml", - "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", - "Templates/Identity/Data/ApplicationDbContext.cshtml", - "Templates/Identity/Data/ApplicationUser.cshtml", - "Templates/Identity/IdentityHostingStartup.cshtml", - "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml", - "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml", - "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml", - "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml", - "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", - "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Lockout.cshtml", - "Templates/Identity/Pages/Account/Account.Login.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Login.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", - "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml", - "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Logout.cshtml", - "Templates/Identity/Pages/Account/Account.Register.cs.cshtml", - "Templates/Identity/Pages/Account/Account.Register.cshtml", - "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml", - "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml", - "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", - "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml", - "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml", - "Templates/Identity/Pages/Account/Account._ViewImports.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", - "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewStart.cshtml", - "Templates/Identity/Pages/Error.cs.cshtml", - "Templates/Identity/Pages/Error.cshtml", - "Templates/Identity/Pages/_Layout.cshtml", - "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml", - "Templates/Identity/Pages/_ViewImports.cshtml", - "Templates/Identity/Pages/_ViewStart.cshtml", - "Templates/Identity/ScaffoldingReadme.cshtml", - "Templates/Identity/SupportPages._CookieConsentPartial.cshtml", - "Templates/Identity/SupportPages._ViewImports.cshtml", - "Templates/Identity/SupportPages._ViewStart.cshtml", - "Templates/Identity/_LoginPartial.cshtml", - "Templates/Identity/wwwroot/css/site.css", - "Templates/Identity/wwwroot/favicon.ico", - "Templates/Identity/wwwroot/js/site.js", - "Templates/Identity/wwwroot/lib/bootstrap/LICENSE", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css", - "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", - "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", - "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", - "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js", - "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", - "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js", - "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map", - "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml", - "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._StatusMessage.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml", - "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml", - "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js", - "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map", - "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationDbContext.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationUser.cshtml", - "Templates/Identity_Versioned/Bootstrap4/IdentityHostingStartup.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._StatusMessage.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._Layout.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cs.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/_Layout.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/_ValidationScriptsPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewStart.cshtml", - "Templates/Identity_Versioned/Bootstrap4/ScaffoldingReadme.cshtml", - "Templates/Identity_Versioned/Bootstrap4/SupportPages._CookieConsentPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewImports.cshtml", - "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewStart.cshtml", - "Templates/Identity_Versioned/Bootstrap4/_LoginPartial.cshtml", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/css/site.css", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/favicon.ico", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/js/site.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/LICENSE", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/LICENSE.md", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/LICENSE.txt", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.js", - "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.map", - "Templates/MinimalApi/MinimalApi.cshtml", - "Templates/MinimalApi/MinimalApiEf.cshtml", - "Templates/MinimalApi/MinimalApiEfNoClass.cshtml", - "Templates/MinimalApi/MinimalApiNoClass.cshtml", - "Templates/MvcLayout/Error.cshtml", - "Templates/MvcLayout/_Layout.cshtml", - "Templates/RazorPageGenerator/Create.cshtml", - "Templates/RazorPageGenerator/CreatePageModel.cshtml", - "Templates/RazorPageGenerator/Delete.cshtml", - "Templates/RazorPageGenerator/DeletePageModel.cshtml", - "Templates/RazorPageGenerator/Details.cshtml", - "Templates/RazorPageGenerator/DetailsPageModel.cshtml", - "Templates/RazorPageGenerator/Edit.cshtml", - "Templates/RazorPageGenerator/EditPageModel.cshtml", - "Templates/RazorPageGenerator/Empty.cshtml", - "Templates/RazorPageGenerator/EmptyPageModel.cshtml", - "Templates/RazorPageGenerator/List.cshtml", - "Templates/RazorPageGenerator/ListPageModel.cshtml", - "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/Create.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/CreatePageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/Delete.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/DeletePageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/Details.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/DetailsPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/Edit.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/EditPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/Empty.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/EmptyPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/List.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/ListPageModel.cshtml", - "Templates/RazorPageGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml", - "Templates/Startup/ReadMe.cshtml", - "Templates/Startup/Startup.cshtml", - "Templates/ViewGenerator/Create.cshtml", - "Templates/ViewGenerator/Delete.cshtml", - "Templates/ViewGenerator/Details.cshtml", - "Templates/ViewGenerator/Edit.cshtml", - "Templates/ViewGenerator/Empty.cshtml", - "Templates/ViewGenerator/List.cshtml", - "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap4/Create.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap4/Delete.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap4/Details.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap4/Edit.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap4/Empty.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap4/List.cshtml", - "Templates/ViewGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", - "lib/net7.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", - "lib/net7.0/bootstrap3_identitygeneratorfilesconfig.json", - "lib/net7.0/bootstrap4_identitygeneratorfilesconfig.json", - "lib/net7.0/bootstrap5_identitygeneratorfilesconfig.json", - "lib/net7.0/identityMinimalHostingChanges.json", - "lib/net7.0/minimalApiChanges.json", - "microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512", - "microsoft.visualstudio.web.codegenerators.mvc.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.3.0": { - "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "type": "package", - "path": "microsoft.win32.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.3.0.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.Win32.Registry/5.0.0": { - "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "type": "package", - "path": "microsoft.win32.registry/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.xml", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "microsoft.win32.registry.5.0.0.nupkg.sha512", - "microsoft.win32.registry.nuspec", - "ref/net46/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/Microsoft.Win32.Registry.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", - "ref/netstandard2.0/Microsoft.Win32.Registry.dll", - "ref/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "type": "package", - "path": "microsoft.win32.systemevents/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Win32.SystemEvents.dll", - "lib/net461/Microsoft.Win32.SystemEvents.xml", - "lib/net6.0/Microsoft.Win32.SystemEvents.dll", - "lib/net6.0/Microsoft.Win32.SystemEvents.xml", - "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", - "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "microsoft.win32.systemevents.nuspec", - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", - "useSharedDesignerContext.txt" - ] - }, - "Mono.TextTemplating/2.2.1": { - "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "type": "package", - "path": "mono.texttemplating/2.2.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net472/Mono.TextTemplating.dll", - "lib/netstandard2.0/Mono.TextTemplating.dll", - "mono.texttemplating.2.2.1.nupkg.sha512", - "mono.texttemplating.nuspec" - ] - }, - "NETStandard.Library/1.6.1": { - "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "type": "package", - "path": "netstandard.library/1.6.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "netstandard.library.1.6.1.nupkg.sha512", - "netstandard.library.nuspec" - ] - }, - "Newtonsoft.Json/13.0.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "Newtonsoft.Json.Bson/1.0.2": { - "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "type": "package", - "path": "newtonsoft.json.bson/1.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net45/Newtonsoft.Json.Bson.dll", - "lib/net45/Newtonsoft.Json.Bson.pdb", - "lib/net45/Newtonsoft.Json.Bson.xml", - "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", - "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", - "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", - "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", - "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", - "newtonsoft.json.bson.1.0.2.nupkg.sha512", - "newtonsoft.json.bson.nuspec" - ] - }, - "NuGet.Common/6.3.1": { - "sha512": "/WgxNyc9dXl+ZrQJDf5BXaqtMbl0CcDC5GEQITecbHZBQHApTMuxeTMMEqa0Y+PD1CIxTtbRY4jmotKS5dsLuA==", - "type": "package", - "path": "nuget.common/6.3.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net472/NuGet.Common.dll", - "lib/net472/NuGet.Common.xml", - "lib/netstandard2.0/NuGet.Common.dll", - "lib/netstandard2.0/NuGet.Common.xml", - "nuget.common.6.3.1.nupkg.sha512", - "nuget.common.nuspec" - ] - }, - "NuGet.Configuration/6.3.1": { - "sha512": "ja227AmXuDVgPXi3p2VTZFTYI/4xwwLSPYtd9Y9WIfCrRqSNDa96J5hm70wXhBCOQYvoRVDjp3ufgDnnqZ0bYA==", - "type": "package", - "path": "nuget.configuration/6.3.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net472/NuGet.Configuration.dll", - "lib/net472/NuGet.Configuration.xml", - "lib/netstandard2.0/NuGet.Configuration.dll", - "lib/netstandard2.0/NuGet.Configuration.xml", - "nuget.configuration.6.3.1.nupkg.sha512", - "nuget.configuration.nuspec" - ] - }, - "NuGet.DependencyResolver.Core/6.3.1": { - "sha512": "wSr4XMNE5f82ZveuATVwj+kS1/dWyXARjOZcS70Aiaj+XEWL8uo4EFTwPIvqPHWCem5cxmavBRuWBwlQ4HWjeA==", - "type": "package", - "path": "nuget.dependencyresolver.core/6.3.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net472/NuGet.DependencyResolver.Core.dll", - "lib/net472/NuGet.DependencyResolver.Core.xml", - "lib/net5.0/NuGet.DependencyResolver.Core.dll", - "lib/net5.0/NuGet.DependencyResolver.Core.xml", - "lib/netstandard2.0/NuGet.DependencyResolver.Core.dll", - "lib/netstandard2.0/NuGet.DependencyResolver.Core.xml", - "nuget.dependencyresolver.core.6.3.1.nupkg.sha512", - "nuget.dependencyresolver.core.nuspec" - ] - }, - "NuGet.Frameworks/6.3.1": { - "sha512": "Ae1vRjHDbNU7EQwQnDlxFRl+O9iQLp2H9Z/sRB/EAmO8+neUOeOfbkLClO7ZNcTcW5p1FDABrPakXICtQ0JCRw==", - "type": "package", - "path": "nuget.frameworks/6.3.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net472/NuGet.Frameworks.dll", - "lib/net472/NuGet.Frameworks.xml", - "lib/netstandard2.0/NuGet.Frameworks.dll", - "lib/netstandard2.0/NuGet.Frameworks.xml", - "nuget.frameworks.6.3.1.nupkg.sha512", - "nuget.frameworks.nuspec" - ] - }, - "NuGet.LibraryModel/6.3.1": { - "sha512": "aEB4AesZ+ddLVTBbewQFNHagbVbwewobBk2+8mk0THWjn0qIUH2l4kLTMmiTD7DOthVB6pYds8bz1B8Z0rEPrQ==", - "type": "package", - "path": "nuget.librarymodel/6.3.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net472/NuGet.LibraryModel.dll", - "lib/net472/NuGet.LibraryModel.xml", - "lib/netstandard2.0/NuGet.LibraryModel.dll", - "lib/netstandard2.0/NuGet.LibraryModel.xml", - "nuget.librarymodel.6.3.1.nupkg.sha512", - "nuget.librarymodel.nuspec" - ] - }, - "NuGet.Packaging/6.3.1": { - "sha512": "/GI2ujy3t00I8qFGvuLrVMNAEMFgEHfW+GNACZna2zgjADrxqrCeONStYZR2hHt3eI2/5HbiaoX4NCP17JCYzw==", - "type": "package", - "path": "nuget.packaging/6.3.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net472/NuGet.Packaging.dll", - "lib/net472/NuGet.Packaging.xml", - "lib/net5.0/NuGet.Packaging.dll", - "lib/net5.0/NuGet.Packaging.xml", - "lib/netstandard2.0/NuGet.Packaging.dll", - "lib/netstandard2.0/NuGet.Packaging.xml", - "nuget.packaging.6.3.1.nupkg.sha512", - "nuget.packaging.nuspec" - ] - }, - "NuGet.ProjectModel/6.3.1": { - "sha512": "TtC4zUKnMIkJBtM7P1GtvVK2jCh4Xi8SVK+bEsCUSoZ0rJf7Zqw2oBrmMNWe51IlfOcYkREmn6xif9mgJXOnmQ==", - "type": "package", - "path": "nuget.projectmodel/6.3.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net472/NuGet.ProjectModel.dll", - "lib/net472/NuGet.ProjectModel.xml", - "lib/net5.0/NuGet.ProjectModel.dll", - "lib/net5.0/NuGet.ProjectModel.xml", - "lib/netstandard2.0/NuGet.ProjectModel.dll", - "lib/netstandard2.0/NuGet.ProjectModel.xml", - "nuget.projectmodel.6.3.1.nupkg.sha512", - "nuget.projectmodel.nuspec" - ] - }, - "NuGet.Protocol/6.3.1": { - "sha512": "1x3jozJNwoECAo88hrhYNuKkRrv9V2VoVxlCntpwr9jX5h6sTV3uHnXAN7vaVQ2/NRX9LLRIiD8K0NOTCG5EmQ==", - "type": "package", - "path": "nuget.protocol/6.3.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net472/NuGet.Protocol.dll", - "lib/net472/NuGet.Protocol.xml", - "lib/net5.0/NuGet.Protocol.dll", - "lib/net5.0/NuGet.Protocol.xml", - "lib/netstandard2.0/NuGet.Protocol.dll", - "lib/netstandard2.0/NuGet.Protocol.xml", - "nuget.protocol.6.3.1.nupkg.sha512", - "nuget.protocol.nuspec" - ] - }, - "NuGet.Versioning/6.3.1": { - "sha512": "T/igBDLXCd+pH3YTWgGVNvYSOwbwaT30NyyM9ONjvlHlmaUjKBJpr9kH0AeL+Ado4EJsBhU3qxXVc6lyrpRcMw==", - "type": "package", - "path": "nuget.versioning/6.3.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net472/NuGet.Versioning.dll", - "lib/net472/NuGet.Versioning.xml", - "lib/netstandard2.0/NuGet.Versioning.dll", - "lib/netstandard2.0/NuGet.Versioning.xml", - "nuget.versioning.6.3.1.nupkg.sha512", - "nuget.versioning.nuspec" - ] - }, - "runtime.any.System.Collections/4.3.0": { - "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", - "type": "package", - "path": "runtime.any.system.collections/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.dll", - "lib/netstandard1.3/System.Collections.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.collections.4.3.0.nupkg.sha512", - "runtime.any.system.collections.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Diagnostics.Tools/4.3.0": { - "sha512": "S/GPBmfPBB48ZghLxdDR7kDAJVAqgAuThyDJho3OLP5OS4tWD2ydyL8LKm8lhiBxce10OKe9X2zZ6DUjAqEbPg==", - "type": "package", - "path": "runtime.any.system.diagnostics.tools/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/netstandard1.3/System.Diagnostics.Tools.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", - "runtime.any.system.diagnostics.tools.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Diagnostics.Tracing/4.3.0": { - "sha512": "1lpifymjGDzoYIaam6/Hyqf8GhBI3xXYLK2TgEvTtuZMorG3Kb9QnMTIKhLjJYXIiu1JvxjngHvtVFQQlpQ3HQ==", - "type": "package", - "path": "runtime.any.system.diagnostics.tracing/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/netstandard1.5/System.Diagnostics.Tracing.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", - "runtime.any.system.diagnostics.tracing.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Globalization/4.3.0": { - "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", - "type": "package", - "path": "runtime.any.system.globalization/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Globalization.dll", - "lib/netstandard1.3/System.Globalization.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.globalization.4.3.0.nupkg.sha512", - "runtime.any.system.globalization.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Globalization.Calendars/4.3.0": { - "sha512": "M1r+760j1CNA6M/ZaW6KX8gOS8nxPRqloqDcJYVidRG566Ykwcs29AweZs2JF+nMOCgWDiMfPSTMfvwOI9F77w==", - "type": "package", - "path": "runtime.any.system.globalization.calendars/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net/_._", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/netstandard1.3/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512", - "runtime.any.system.globalization.calendars.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.IO/4.3.0": { - "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", - "type": "package", - "path": "runtime.any.system.io/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.IO.dll", - "lib/netstandard1.5/System.IO.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.io.4.3.0.nupkg.sha512", - "runtime.any.system.io.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection/4.3.0": { - "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", - "type": "package", - "path": "runtime.any.system.reflection/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.dll", - "lib/netstandard1.5/System.Reflection.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.4.3.0.nupkg.sha512", - "runtime.any.system.reflection.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Extensions/4.3.0": { - "sha512": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==", - "type": "package", - "path": "runtime.any.system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/netstandard1.3/System.Reflection.Extensions.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", - "runtime.any.system.reflection.extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Reflection.Primitives/4.3.0": { - "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", - "type": "package", - "path": "runtime.any.system.reflection.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/netstandard1.3/System.Reflection.Primitives.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", - "runtime.any.system.reflection.primitives.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Resources.ResourceManager/4.3.0": { - "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", - "type": "package", - "path": "runtime.any.system.resources.resourcemanager/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/netstandard1.3/System.Resources.ResourceManager.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", - "runtime.any.system.resources.resourcemanager.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime/4.3.0": { - "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", - "type": "package", - "path": "runtime.any.system.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.dll", - "lib/netstandard1.5/System.Runtime.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.4.3.0.nupkg.sha512", - "runtime.any.system.runtime.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.Handles/4.3.0": { - "sha512": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", - "type": "package", - "path": "runtime.any.system.runtime.handles/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/netstandard1.3/System.Runtime.Handles.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", - "runtime.any.system.runtime.handles.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Runtime.InteropServices/4.3.0": { - "sha512": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", - "type": "package", - "path": "runtime.any.system.runtime.interopservices/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/netstandard1.5/System.Runtime.InteropServices.dll", - "lib/netstandard1.6/System.Runtime.InteropServices.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", - "runtime.any.system.runtime.interopservices.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding/4.3.0": { - "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", - "type": "package", - "path": "runtime.any.system.text.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.dll", - "lib/netstandard1.3/System.Text.Encoding.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.text.encoding.4.3.0.nupkg.sha512", - "runtime.any.system.text.encoding.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Text.Encoding.Extensions/4.3.0": { - "sha512": "NLrxmLsfRrOuVqPWG+2lrQZnE53MLVeo+w9c54EV+TUo4c8rILpsDXfY8pPiOy9kHpUHHP07ugKmtsU3vVW5Jg==", - "type": "package", - "path": "runtime.any.system.text.encoding.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/netstandard1.3/System.Text.Encoding.Extensions.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", - "runtime.any.system.text.encoding.extensions.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Threading.Tasks/4.3.0": { - "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", - "type": "package", - "path": "runtime.any.system.threading.tasks/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/netstandard1.3/System.Threading.Tasks.dll", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", - "runtime.any.system.threading.tasks.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.any.System.Threading.Timer/4.3.0": { - "sha512": "w4ehZJ+AwXYmGwYu+rMvym6RvMaRiUEQR1u6dwcyuKHxz8Heu/mO9AG1MquEgTyucnhv3M43X0iKpDOoN17C0w==", - "type": "package", - "path": "runtime.any.system.threading.timer/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.Timer.dll", - "lib/netstandard1.3/System.Threading.Timer.dll", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/netstandard/_._", - "runtime.any.system.threading.timer.4.3.0.nupkg.sha512", - "runtime.any.system.threading.timer.nuspec", - "runtimes/aot/lib/netcore50/_._" - ] - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "type": "package", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "type": "package", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "type": "package", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.native.System/4.3.0": { - "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "type": "package", - "path": "runtime.native.system/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.4.3.0.nupkg.sha512", - "runtime.native.system.nuspec" - ] - }, - "runtime.native.System.IO.Compression/4.3.0": { - "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "type": "package", - "path": "runtime.native.system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.native.system.io.compression.nuspec" - ] - }, - "runtime.native.System.Net.Http/4.3.0": { - "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "type": "package", - "path": "runtime.native.system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.net.http.4.3.0.nupkg.sha512", - "runtime.native.system.net.http.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "type": "package", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.apple.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "type": "package", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.openssl.nuspec" - ] - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "type": "package", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "type": "package", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" - ] - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "type": "package", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "type": "package", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "type": "package", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "type": "package", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.win.Microsoft.Win32.Primitives/4.3.0": { - "sha512": "NU51SEt/ZaD2MF48sJ17BIqx7rjeNNLXUevfMOjqQIetdndXwYjZfZsT6jD+rSWp/FYxjesdK4xUSl4OTEI0jw==", - "type": "package", - "path": "runtime.win.microsoft.win32.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512", - "runtime.win.microsoft.win32.primitives.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Primitives.dll" - ] - }, - "runtime.win.System.Console/4.3.0": { - "sha512": "RRACWygml5dnmfgC1SW6tLGsFgwsUAKFtvhdyHnIEz4EhWyrd7pacDdY95CacQJy7BMXRDRCejC9aCRC0Y1sQA==", - "type": "package", - "path": "runtime.win.system.console/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.console.4.3.0.nupkg.sha512", - "runtime.win.system.console.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Console.dll", - "runtimes/win/lib/netstandard1.3/System.Console.dll" - ] - }, - "runtime.win.System.Diagnostics.Debug/4.3.0": { - "sha512": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", - "type": "package", - "path": "runtime.win.system.diagnostics.debug/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512", - "runtime.win.system.diagnostics.debug.nuspec", - "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll", - "runtimes/win/lib/win8/_._", - "runtimes/win/lib/wp80/_._", - "runtimes/win/lib/wpa81/_._" - ] - }, - "runtime.win.System.IO.FileSystem/4.3.0": { - "sha512": "Z37zcSCpXuGCYtFbqYO0TwOVXxS2d+BXgSoDFZmRg8BC4Cuy54edjyIvhhcfCrDQA9nl+EPFTgHN54dRAK7mNA==", - "type": "package", - "path": "runtime.win.system.io.filesystem/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.io.filesystem.4.3.0.nupkg.sha512", - "runtime.win.system.io.filesystem.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.IO.FileSystem.dll", - "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.dll", - "runtimes/win/lib/win8/_._", - "runtimes/win/lib/wp8/_._", - "runtimes/win/lib/wpa81/_._" - ] - }, - "runtime.win.System.Net.Primitives/4.3.0": { - "sha512": "lkXXykakvXUU+Zq2j0pC6EO20lEhijjqMc01XXpp1CJN+DeCwl3nsj4t5Xbpz3kA7yQyTqw6d9SyIzsyLsV3zA==", - "type": "package", - "path": "runtime.win.system.net.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.net.primitives.4.3.0.nupkg.sha512", - "runtime.win.system.net.primitives.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Net.Primitives.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Primitives.dll" - ] - }, - "runtime.win.System.Net.Sockets/4.3.0": { - "sha512": "FK/2gX6MmuLIKNCGsV59Fe4IYrLrI5n9pQ1jh477wiivEM/NCXDT2dRetH5FSfY0bQ+VgTLcS3zcmjQ8my3nxQ==", - "type": "package", - "path": "runtime.win.system.net.sockets/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.net.sockets.4.3.0.nupkg.sha512", - "runtime.win.system.net.sockets.nuspec", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Net.Sockets.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Sockets.dll" - ] - }, - "runtime.win.System.Runtime.Extensions/4.3.0": { - "sha512": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", - "type": "package", - "path": "runtime.win.system.runtime.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", - "runtime.win.system.runtime.extensions.nuspec", - "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll", - "runtimes/win/lib/net/_._", - "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll", - "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll" - ] - }, - "Swashbuckle.AspNetCore/6.5.0": { - "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", - "type": "package", - "path": "swashbuckle.aspnetcore/6.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/Swashbuckle.AspNetCore.props", - "swashbuckle.aspnetcore.6.5.0.nupkg.sha512", - "swashbuckle.aspnetcore.nuspec" - ] - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", - "type": "package", - "path": "swashbuckle.aspnetcore.swagger/6.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", - "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512", - "swashbuckle.aspnetcore.swagger.nuspec" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", - "type": "package", - "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512", - "swashbuckle.aspnetcore.swaggergen.nuspec" - ] - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", - "type": "package", - "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512", - "swashbuckle.aspnetcore.swaggerui.nuspec" - ] - }, - "System.AppContext/4.3.0": { - "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "type": "package", - "path": "system.appcontext/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll", - "system.appcontext.4.3.0.nupkg.sha512", - "system.appcontext.nuspec" - ] - }, - "System.Buffers/4.5.1": { - "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "type": "package", - "path": "system.buffers/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Buffers.dll", - "lib/net461/System.Buffers.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.1.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.CodeDom/4.4.0": { - "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "type": "package", - "path": "system.codedom/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.CodeDom.dll", - "lib/netstandard2.0/System.CodeDom.dll", - "ref/net461/System.CodeDom.dll", - "ref/net461/System.CodeDom.xml", - "ref/netstandard2.0/System.CodeDom.dll", - "ref/netstandard2.0/System.CodeDom.xml", - "system.codedom.4.4.0.nupkg.sha512", - "system.codedom.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "type": "package", - "path": "system.collections/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.3.0": { - "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "type": "package", - "path": "system.collections.concurrent/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.3.0.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Collections.Immutable/6.0.0": { - "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "type": "package", - "path": "system.collections.immutable/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/net6.0/System.Collections.Immutable.dll", - "lib/net6.0/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "system.collections.immutable.6.0.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition/6.0.0": { - "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", - "type": "package", - "path": "system.composition/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.targets", - "buildTransitive/netcoreapp3.1/_._", - "system.composition.6.0.0.nupkg.sha512", - "system.composition.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition.AttributedModel/6.0.0": { - "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", - "type": "package", - "path": "system.composition.attributedmodel/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Composition.AttributedModel.dll", - "lib/net461/System.Composition.AttributedModel.xml", - "lib/net6.0/System.Composition.AttributedModel.dll", - "lib/net6.0/System.Composition.AttributedModel.xml", - "lib/netstandard2.0/System.Composition.AttributedModel.dll", - "lib/netstandard2.0/System.Composition.AttributedModel.xml", - "system.composition.attributedmodel.6.0.0.nupkg.sha512", - "system.composition.attributedmodel.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition.Convention/6.0.0": { - "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", - "type": "package", - "path": "system.composition.convention/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Composition.Convention.dll", - "lib/net461/System.Composition.Convention.xml", - "lib/net6.0/System.Composition.Convention.dll", - "lib/net6.0/System.Composition.Convention.xml", - "lib/netstandard2.0/System.Composition.Convention.dll", - "lib/netstandard2.0/System.Composition.Convention.xml", - "system.composition.convention.6.0.0.nupkg.sha512", - "system.composition.convention.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition.Hosting/6.0.0": { - "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", - "type": "package", - "path": "system.composition.hosting/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Composition.Hosting.dll", - "lib/net461/System.Composition.Hosting.xml", - "lib/net6.0/System.Composition.Hosting.dll", - "lib/net6.0/System.Composition.Hosting.xml", - "lib/netstandard2.0/System.Composition.Hosting.dll", - "lib/netstandard2.0/System.Composition.Hosting.xml", - "system.composition.hosting.6.0.0.nupkg.sha512", - "system.composition.hosting.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition.Runtime/6.0.0": { - "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", - "type": "package", - "path": "system.composition.runtime/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Composition.Runtime.dll", - "lib/net461/System.Composition.Runtime.xml", - "lib/net6.0/System.Composition.Runtime.dll", - "lib/net6.0/System.Composition.Runtime.xml", - "lib/netstandard2.0/System.Composition.Runtime.dll", - "lib/netstandard2.0/System.Composition.Runtime.xml", - "system.composition.runtime.6.0.0.nupkg.sha512", - "system.composition.runtime.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition.TypedParts/6.0.0": { - "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", - "type": "package", - "path": "system.composition.typedparts/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Composition.TypedParts.dll", - "lib/net461/System.Composition.TypedParts.xml", - "lib/net6.0/System.Composition.TypedParts.dll", - "lib/net6.0/System.Composition.TypedParts.xml", - "lib/netstandard2.0/System.Composition.TypedParts.dll", - "lib/netstandard2.0/System.Composition.TypedParts.xml", - "system.composition.typedparts.6.0.0.nupkg.sha512", - "system.composition.typedparts.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "type": "package", - "path": "system.configuration.configurationmanager/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Configuration.ConfigurationManager.dll", - "lib/net461/System.Configuration.ConfigurationManager.xml", - "lib/net6.0/System.Configuration.ConfigurationManager.dll", - "lib/net6.0/System.Configuration.ConfigurationManager.xml", - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", - "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", - "system.configuration.configurationmanager.6.0.0.nupkg.sha512", - "system.configuration.configurationmanager.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Console/4.3.0": { - "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "type": "package", - "path": "system.console/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.3.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "System.Data.DataSetExtensions/4.5.0": { - "sha512": "221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", - "type": "package", - "path": "system.data.datasetextensions/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/_._", - "lib/netstandard2.0/System.Data.DataSetExtensions.dll", - "ref/net45/_._", - "ref/netstandard2.0/System.Data.DataSetExtensions.dll", - "system.data.datasetextensions.4.5.0.nupkg.sha512", - "system.data.datasetextensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.Debug/4.3.0": { - "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "type": "package", - "path": "system.diagnostics.debug/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/System.Diagnostics.Debug.dll", - "ref/netstandard1.0/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/System.Diagnostics.Debug.dll", - "ref/netstandard1.3/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.debug.4.3.0.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.Tools/4.3.0": { - "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "type": "package", - "path": "system.diagnostics.tools/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/System.Diagnostics.Tools.dll", - "ref/netstandard1.0/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tools.4.3.0.nupkg.sha512", - "system.diagnostics.tools.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.3.0": { - "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "type": "package", - "path": "system.diagnostics.tracing/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.3.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.DirectoryServices.Protocols/7.0.1": { - "sha512": "t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", - "type": "package", - "path": "system.directoryservices.protocols/7.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets", - "lib/net462/_._", - "lib/net6.0/System.DirectoryServices.Protocols.dll", - "lib/net6.0/System.DirectoryServices.Protocols.xml", - "lib/net7.0/System.DirectoryServices.Protocols.dll", - "lib/net7.0/System.DirectoryServices.Protocols.xml", - "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", - "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll", - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml", - "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll", - "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.xml", - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll", - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml", - "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll", - "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.xml", - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll", - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml", - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll", - "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.xml", - "system.directoryservices.protocols.7.0.1.nupkg.sha512", - "system.directoryservices.protocols.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Drawing.Common/6.0.0": { - "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "type": "package", - "path": "system.drawing.common/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Drawing.Common.dll", - "lib/net461/System.Drawing.Common.xml", - "lib/net6.0/System.Drawing.Common.dll", - "lib/net6.0/System.Drawing.Common.xml", - "lib/netcoreapp3.1/System.Drawing.Common.dll", - "lib/netcoreapp3.1/System.Drawing.Common.xml", - "lib/netstandard2.0/System.Drawing.Common.dll", - "lib/netstandard2.0/System.Drawing.Common.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", - "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", - "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", - "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", - "runtimes/win/lib/net6.0/System.Drawing.Common.dll", - "runtimes/win/lib/net6.0/System.Drawing.Common.xml", - "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", - "system.drawing.common.6.0.0.nupkg.sha512", - "system.drawing.common.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Formats.Asn1/5.0.0": { - "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", - "type": "package", - "path": "system.formats.asn1/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Formats.Asn1.dll", - "lib/net461/System.Formats.Asn1.xml", - "lib/netstandard2.0/System.Formats.Asn1.dll", - "lib/netstandard2.0/System.Formats.Asn1.xml", - "system.formats.asn1.5.0.0.nupkg.sha512", - "system.formats.asn1.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Globalization/4.3.0": { - "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "type": "package", - "path": "system.globalization/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/netstandard1.0/System.Globalization.dll", - "ref/netstandard1.0/System.Globalization.xml", - "ref/netstandard1.0/de/System.Globalization.xml", - "ref/netstandard1.0/es/System.Globalization.xml", - "ref/netstandard1.0/fr/System.Globalization.xml", - "ref/netstandard1.0/it/System.Globalization.xml", - "ref/netstandard1.0/ja/System.Globalization.xml", - "ref/netstandard1.0/ko/System.Globalization.xml", - "ref/netstandard1.0/ru/System.Globalization.xml", - "ref/netstandard1.0/zh-hans/System.Globalization.xml", - "ref/netstandard1.0/zh-hant/System.Globalization.xml", - "ref/netstandard1.3/System.Globalization.dll", - "ref/netstandard1.3/System.Globalization.xml", - "ref/netstandard1.3/de/System.Globalization.xml", - "ref/netstandard1.3/es/System.Globalization.xml", - "ref/netstandard1.3/fr/System.Globalization.xml", - "ref/netstandard1.3/it/System.Globalization.xml", - "ref/netstandard1.3/ja/System.Globalization.xml", - "ref/netstandard1.3/ko/System.Globalization.xml", - "ref/netstandard1.3/ru/System.Globalization.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.4.3.0.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.Globalization.Calendars/4.3.0": { - "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "type": "package", - "path": "system.globalization.calendars/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.xml", - "ref/netstandard1.3/de/System.Globalization.Calendars.xml", - "ref/netstandard1.3/es/System.Globalization.Calendars.xml", - "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", - "ref/netstandard1.3/it/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.calendars.4.3.0.nupkg.sha512", - "system.globalization.calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.3.0": { - "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "type": "package", - "path": "system.globalization.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", - "system.globalization.extensions.4.3.0.nupkg.sha512", - "system.globalization.extensions.nuspec" - ] - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "sha512": "JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==", - "type": "package", - "path": "system.identitymodel.tokens.jwt/6.21.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/System.IdentityModel.Tokens.Jwt.dll", - "lib/net45/System.IdentityModel.Tokens.Jwt.xml", - "lib/net461/System.IdentityModel.Tokens.Jwt.dll", - "lib/net461/System.IdentityModel.Tokens.Jwt.xml", - "lib/net472/System.IdentityModel.Tokens.Jwt.dll", - "lib/net472/System.IdentityModel.Tokens.Jwt.xml", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", - "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512", - "system.identitymodel.tokens.jwt.nuspec" - ] - }, - "System.IO/4.3.0": { - "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "type": "package", - "path": "system.io/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.IO.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.IO.dll", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/netstandard1.0/System.IO.dll", - "ref/netstandard1.0/System.IO.xml", - "ref/netstandard1.0/de/System.IO.xml", - "ref/netstandard1.0/es/System.IO.xml", - "ref/netstandard1.0/fr/System.IO.xml", - "ref/netstandard1.0/it/System.IO.xml", - "ref/netstandard1.0/ja/System.IO.xml", - "ref/netstandard1.0/ko/System.IO.xml", - "ref/netstandard1.0/ru/System.IO.xml", - "ref/netstandard1.0/zh-hans/System.IO.xml", - "ref/netstandard1.0/zh-hant/System.IO.xml", - "ref/netstandard1.3/System.IO.dll", - "ref/netstandard1.3/System.IO.xml", - "ref/netstandard1.3/de/System.IO.xml", - "ref/netstandard1.3/es/System.IO.xml", - "ref/netstandard1.3/fr/System.IO.xml", - "ref/netstandard1.3/it/System.IO.xml", - "ref/netstandard1.3/ja/System.IO.xml", - "ref/netstandard1.3/ko/System.IO.xml", - "ref/netstandard1.3/ru/System.IO.xml", - "ref/netstandard1.3/zh-hans/System.IO.xml", - "ref/netstandard1.3/zh-hant/System.IO.xml", - "ref/netstandard1.5/System.IO.dll", - "ref/netstandard1.5/System.IO.xml", - "ref/netstandard1.5/de/System.IO.xml", - "ref/netstandard1.5/es/System.IO.xml", - "ref/netstandard1.5/fr/System.IO.xml", - "ref/netstandard1.5/it/System.IO.xml", - "ref/netstandard1.5/ja/System.IO.xml", - "ref/netstandard1.5/ko/System.IO.xml", - "ref/netstandard1.5/ru/System.IO.xml", - "ref/netstandard1.5/zh-hans/System.IO.xml", - "ref/netstandard1.5/zh-hant/System.IO.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.4.3.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.Compression/4.3.0": { - "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "type": "package", - "path": "system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.IO.Compression.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/netcore50/de/System.IO.Compression.xml", - "ref/netcore50/es/System.IO.Compression.xml", - "ref/netcore50/fr/System.IO.Compression.xml", - "ref/netcore50/it/System.IO.Compression.xml", - "ref/netcore50/ja/System.IO.Compression.xml", - "ref/netcore50/ko/System.IO.Compression.xml", - "ref/netcore50/ru/System.IO.Compression.xml", - "ref/netcore50/zh-hans/System.IO.Compression.xml", - "ref/netcore50/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.1/System.IO.Compression.dll", - "ref/netstandard1.1/System.IO.Compression.xml", - "ref/netstandard1.1/de/System.IO.Compression.xml", - "ref/netstandard1.1/es/System.IO.Compression.xml", - "ref/netstandard1.1/fr/System.IO.Compression.xml", - "ref/netstandard1.1/it/System.IO.Compression.xml", - "ref/netstandard1.1/ja/System.IO.Compression.xml", - "ref/netstandard1.1/ko/System.IO.Compression.xml", - "ref/netstandard1.1/ru/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.3/System.IO.Compression.dll", - "ref/netstandard1.3/System.IO.Compression.xml", - "ref/netstandard1.3/de/System.IO.Compression.xml", - "ref/netstandard1.3/es/System.IO.Compression.xml", - "ref/netstandard1.3/fr/System.IO.Compression.xml", - "ref/netstandard1.3/it/System.IO.Compression.xml", - "ref/netstandard1.3/ja/System.IO.Compression.xml", - "ref/netstandard1.3/ko/System.IO.Compression.xml", - "ref/netstandard1.3/ru/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win/lib/net46/System.IO.Compression.dll", - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", - "system.io.compression.4.3.0.nupkg.sha512", - "system.io.compression.nuspec" - ] - }, - "System.IO.Compression.ZipFile/4.3.0": { - "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "type": "package", - "path": "system.io.compression.zipfile/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.compression.zipfile.4.3.0.nupkg.sha512", - "system.io.compression.zipfile.nuspec" - ] - }, - "System.IO.FileSystem/4.3.0": { - "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "type": "package", - "path": "system.io.filesystem/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.3.0.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "type": "package", - "path": "system.io.filesystem.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.IO.Pipelines/7.0.0": { - "sha512": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", - "type": "package", - "path": "system.io.pipelines/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.IO.Pipelines.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", - "lib/net462/System.IO.Pipelines.dll", - "lib/net462/System.IO.Pipelines.xml", - "lib/net6.0/System.IO.Pipelines.dll", - "lib/net6.0/System.IO.Pipelines.xml", - "lib/net7.0/System.IO.Pipelines.dll", - "lib/net7.0/System.IO.Pipelines.xml", - "lib/netstandard2.0/System.IO.Pipelines.dll", - "lib/netstandard2.0/System.IO.Pipelines.xml", - "system.io.pipelines.7.0.0.nupkg.sha512", - "system.io.pipelines.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.Memory/4.5.5": { - "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", - "type": "package", - "path": "system.memory/4.5.5", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.5.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Memory.Data/1.0.2": { - "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "type": "package", - "path": "system.memory.data/1.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "DotNetPackageIcon.png", - "README.md", - "lib/net461/System.Memory.Data.dll", - "lib/net461/System.Memory.Data.xml", - "lib/netstandard2.0/System.Memory.Data.dll", - "lib/netstandard2.0/System.Memory.Data.xml", - "system.memory.data.1.0.2.nupkg.sha512", - "system.memory.data.nuspec" - ] - }, - "System.Net.Http/4.3.0": { - "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "type": "package", - "path": "system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/Xamarinmac20/_._", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.Http.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/Xamarinmac20/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.Http.dll", - "ref/net46/System.Net.Http.xml", - "ref/net46/de/System.Net.Http.xml", - "ref/net46/es/System.Net.Http.xml", - "ref/net46/fr/System.Net.Http.xml", - "ref/net46/it/System.Net.Http.xml", - "ref/net46/ja/System.Net.Http.xml", - "ref/net46/ko/System.Net.Http.xml", - "ref/net46/ru/System.Net.Http.xml", - "ref/net46/zh-hans/System.Net.Http.xml", - "ref/net46/zh-hant/System.Net.Http.xml", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/netcore50/de/System.Net.Http.xml", - "ref/netcore50/es/System.Net.Http.xml", - "ref/netcore50/fr/System.Net.Http.xml", - "ref/netcore50/it/System.Net.Http.xml", - "ref/netcore50/ja/System.Net.Http.xml", - "ref/netcore50/ko/System.Net.Http.xml", - "ref/netcore50/ru/System.Net.Http.xml", - "ref/netcore50/zh-hans/System.Net.Http.xml", - "ref/netcore50/zh-hant/System.Net.Http.xml", - "ref/netstandard1.1/System.Net.Http.dll", - "ref/netstandard1.1/System.Net.Http.xml", - "ref/netstandard1.1/de/System.Net.Http.xml", - "ref/netstandard1.1/es/System.Net.Http.xml", - "ref/netstandard1.1/fr/System.Net.Http.xml", - "ref/netstandard1.1/it/System.Net.Http.xml", - "ref/netstandard1.1/ja/System.Net.Http.xml", - "ref/netstandard1.1/ko/System.Net.Http.xml", - "ref/netstandard1.1/ru/System.Net.Http.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.xml", - "ref/netstandard1.3/System.Net.Http.dll", - "ref/netstandard1.3/System.Net.Http.xml", - "ref/netstandard1.3/de/System.Net.Http.xml", - "ref/netstandard1.3/es/System.Net.Http.xml", - "ref/netstandard1.3/fr/System.Net.Http.xml", - "ref/netstandard1.3/it/System.Net.Http.xml", - "ref/netstandard1.3/ja/System.Net.Http.xml", - "ref/netstandard1.3/ko/System.Net.Http.xml", - "ref/netstandard1.3/ru/System.Net.Http.xml", - "ref/netstandard1.3/zh-hans/System.Net.Http.xml", - "ref/netstandard1.3/zh-hant/System.Net.Http.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", - "runtimes/win/lib/net46/System.Net.Http.dll", - "runtimes/win/lib/netcore50/System.Net.Http.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", - "system.net.http.4.3.0.nupkg.sha512", - "system.net.http.nuspec" - ] - }, - "System.Net.NameResolution/4.3.0": { - "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", - "type": "package", - "path": "system.net.nameresolution/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.NameResolution.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.NameResolution.dll", - "ref/netstandard1.3/System.Net.NameResolution.dll", - "ref/netstandard1.3/System.Net.NameResolution.xml", - "ref/netstandard1.3/de/System.Net.NameResolution.xml", - "ref/netstandard1.3/es/System.Net.NameResolution.xml", - "ref/netstandard1.3/fr/System.Net.NameResolution.xml", - "ref/netstandard1.3/it/System.Net.NameResolution.xml", - "ref/netstandard1.3/ja/System.Net.NameResolution.xml", - "ref/netstandard1.3/ko/System.Net.NameResolution.xml", - "ref/netstandard1.3/ru/System.Net.NameResolution.xml", - "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", - "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", - "runtimes/win/lib/net46/System.Net.NameResolution.dll", - "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", - "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", - "system.net.nameresolution.4.3.0.nupkg.sha512", - "system.net.nameresolution.nuspec" - ] - }, - "System.Net.Primitives/4.3.0": { - "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "type": "package", - "path": "system.net.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.0/System.Net.Primitives.dll", - "ref/netstandard1.0/System.Net.Primitives.xml", - "ref/netstandard1.0/de/System.Net.Primitives.xml", - "ref/netstandard1.0/es/System.Net.Primitives.xml", - "ref/netstandard1.0/fr/System.Net.Primitives.xml", - "ref/netstandard1.0/it/System.Net.Primitives.xml", - "ref/netstandard1.0/ja/System.Net.Primitives.xml", - "ref/netstandard1.0/ko/System.Net.Primitives.xml", - "ref/netstandard1.0/ru/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.1/System.Net.Primitives.dll", - "ref/netstandard1.1/System.Net.Primitives.xml", - "ref/netstandard1.1/de/System.Net.Primitives.xml", - "ref/netstandard1.1/es/System.Net.Primitives.xml", - "ref/netstandard1.1/fr/System.Net.Primitives.xml", - "ref/netstandard1.1/it/System.Net.Primitives.xml", - "ref/netstandard1.1/ja/System.Net.Primitives.xml", - "ref/netstandard1.1/ko/System.Net.Primitives.xml", - "ref/netstandard1.1/ru/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.3/System.Net.Primitives.dll", - "ref/netstandard1.3/System.Net.Primitives.xml", - "ref/netstandard1.3/de/System.Net.Primitives.xml", - "ref/netstandard1.3/es/System.Net.Primitives.xml", - "ref/netstandard1.3/fr/System.Net.Primitives.xml", - "ref/netstandard1.3/it/System.Net.Primitives.xml", - "ref/netstandard1.3/ja/System.Net.Primitives.xml", - "ref/netstandard1.3/ko/System.Net.Primitives.xml", - "ref/netstandard1.3/ru/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.primitives.4.3.0.nupkg.sha512", - "system.net.primitives.nuspec" - ] - }, - "System.Net.Sockets/4.3.0": { - "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "type": "package", - "path": "system.net.sockets/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.xml", - "ref/netstandard1.3/de/System.Net.Sockets.xml", - "ref/netstandard1.3/es/System.Net.Sockets.xml", - "ref/netstandard1.3/fr/System.Net.Sockets.xml", - "ref/netstandard1.3/it/System.Net.Sockets.xml", - "ref/netstandard1.3/ja/System.Net.Sockets.xml", - "ref/netstandard1.3/ko/System.Net.Sockets.xml", - "ref/netstandard1.3/ru/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.sockets.4.3.0.nupkg.sha512", - "system.net.sockets.nuspec" - ] - }, - "System.Numerics.Vectors/4.5.0": { - "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "type": "package", - "path": "system.numerics.vectors/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.Numerics.Vectors.dll", - "lib/netstandard1.0/System.Numerics.Vectors.xml", - "lib/netstandard2.0/System.Numerics.Vectors.dll", - "lib/netstandard2.0/System.Numerics.Vectors.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.Numerics.Vectors.dll", - "ref/net45/System.Numerics.Vectors.xml", - "ref/net46/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/System.Numerics.Vectors.dll", - "ref/netstandard1.0/System.Numerics.Vectors.xml", - "ref/netstandard2.0/System.Numerics.Vectors.dll", - "ref/netstandard2.0/System.Numerics.Vectors.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.numerics.vectors.4.5.0.nupkg.sha512", - "system.numerics.vectors.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Private.Uri/4.3.0": { - "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", - "type": "package", - "path": "system.private.uri/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "ref/netstandard/_._", - "system.private.uri.4.3.0.nupkg.sha512", - "system.private.uri.nuspec" - ] - }, - "System.Reflection/4.3.0": { - "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "type": "package", - "path": "system.reflection/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Reflection.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Reflection.dll", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/netstandard1.0/System.Reflection.dll", - "ref/netstandard1.0/System.Reflection.xml", - "ref/netstandard1.0/de/System.Reflection.xml", - "ref/netstandard1.0/es/System.Reflection.xml", - "ref/netstandard1.0/fr/System.Reflection.xml", - "ref/netstandard1.0/it/System.Reflection.xml", - "ref/netstandard1.0/ja/System.Reflection.xml", - "ref/netstandard1.0/ko/System.Reflection.xml", - "ref/netstandard1.0/ru/System.Reflection.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.xml", - "ref/netstandard1.3/System.Reflection.dll", - "ref/netstandard1.3/System.Reflection.xml", - "ref/netstandard1.3/de/System.Reflection.xml", - "ref/netstandard1.3/es/System.Reflection.xml", - "ref/netstandard1.3/fr/System.Reflection.xml", - "ref/netstandard1.3/it/System.Reflection.xml", - "ref/netstandard1.3/ja/System.Reflection.xml", - "ref/netstandard1.3/ko/System.Reflection.xml", - "ref/netstandard1.3/ru/System.Reflection.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.xml", - "ref/netstandard1.5/System.Reflection.dll", - "ref/netstandard1.5/System.Reflection.xml", - "ref/netstandard1.5/de/System.Reflection.xml", - "ref/netstandard1.5/es/System.Reflection.xml", - "ref/netstandard1.5/fr/System.Reflection.xml", - "ref/netstandard1.5/it/System.Reflection.xml", - "ref/netstandard1.5/ja/System.Reflection.xml", - "ref/netstandard1.5/ko/System.Reflection.xml", - "ref/netstandard1.5/ru/System.Reflection.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.4.3.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.3.0": { - "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "type": "package", - "path": "system.reflection.emit/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/xamarinmac20/_._", - "system.reflection.emit.4.3.0.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Metadata/6.0.0": { - "sha512": "sffDOcex1C3HO5kDolOYcWXTwRpZY/LvJujM6SMjn63fWMJWchYAAmkoAJXlbpZ5yf4d+KMgxd+LeETa4gD9sQ==", - "type": "package", - "path": "system.reflection.metadata/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Reflection.Metadata.dll", - "lib/net461/System.Reflection.Metadata.xml", - "lib/net6.0/System.Reflection.Metadata.dll", - "lib/net6.0/System.Reflection.Metadata.xml", - "lib/netstandard2.0/System.Reflection.Metadata.dll", - "lib/netstandard2.0/System.Reflection.Metadata.xml", - "system.reflection.metadata.6.0.0.nupkg.sha512", - "system.reflection.metadata.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Reflection.MetadataLoadContext/6.0.0": { - "sha512": "SuK8qTHbmG3PToLo1TEq8YSfY31FiKhASBmjozUTAleDgiX4H2X4jm0VPFb+K2soSSmYPyHTpHp35TctfNtDzQ==", - "type": "package", - "path": "system.reflection.metadataloadcontext/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Reflection.MetadataLoadContext.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Reflection.MetadataLoadContext.dll", - "lib/net461/System.Reflection.MetadataLoadContext.xml", - "lib/net6.0/System.Reflection.MetadataLoadContext.dll", - "lib/net6.0/System.Reflection.MetadataLoadContext.xml", - "lib/netcoreapp3.1/System.Reflection.MetadataLoadContext.dll", - "lib/netcoreapp3.1/System.Reflection.MetadataLoadContext.xml", - "lib/netstandard2.0/System.Reflection.MetadataLoadContext.dll", - "lib/netstandard2.0/System.Reflection.MetadataLoadContext.xml", - "system.reflection.metadataloadcontext.6.0.0.nupkg.sha512", - "system.reflection.metadataloadcontext.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Reflection.Primitives/4.3.0": { - "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "type": "package", - "path": "system.reflection.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/netcore50/de/System.Reflection.Primitives.xml", - "ref/netcore50/es/System.Reflection.Primitives.xml", - "ref/netcore50/fr/System.Reflection.Primitives.xml", - "ref/netcore50/it/System.Reflection.Primitives.xml", - "ref/netcore50/ja/System.Reflection.Primitives.xml", - "ref/netcore50/ko/System.Reflection.Primitives.xml", - "ref/netcore50/ru/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", - "ref/netstandard1.0/System.Reflection.Primitives.dll", - "ref/netstandard1.0/System.Reflection.Primitives.xml", - "ref/netstandard1.0/de/System.Reflection.Primitives.xml", - "ref/netstandard1.0/es/System.Reflection.Primitives.xml", - "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", - "ref/netstandard1.0/it/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.primitives.4.3.0.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.3.0": { - "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "type": "package", - "path": "system.resources.resourcemanager/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/System.Resources.ResourceManager.dll", - "ref/netstandard1.0/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.resources.resourcemanager.4.3.0.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.3.0": { - "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "type": "package", - "path": "system.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.dll", - "lib/portable-net45+win8+wp80+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.dll", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/netstandard1.0/System.Runtime.dll", - "ref/netstandard1.0/System.Runtime.xml", - "ref/netstandard1.0/de/System.Runtime.xml", - "ref/netstandard1.0/es/System.Runtime.xml", - "ref/netstandard1.0/fr/System.Runtime.xml", - "ref/netstandard1.0/it/System.Runtime.xml", - "ref/netstandard1.0/ja/System.Runtime.xml", - "ref/netstandard1.0/ko/System.Runtime.xml", - "ref/netstandard1.0/ru/System.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.xml", - "ref/netstandard1.2/System.Runtime.dll", - "ref/netstandard1.2/System.Runtime.xml", - "ref/netstandard1.2/de/System.Runtime.xml", - "ref/netstandard1.2/es/System.Runtime.xml", - "ref/netstandard1.2/fr/System.Runtime.xml", - "ref/netstandard1.2/it/System.Runtime.xml", - "ref/netstandard1.2/ja/System.Runtime.xml", - "ref/netstandard1.2/ko/System.Runtime.xml", - "ref/netstandard1.2/ru/System.Runtime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.xml", - "ref/netstandard1.3/System.Runtime.dll", - "ref/netstandard1.3/System.Runtime.xml", - "ref/netstandard1.3/de/System.Runtime.xml", - "ref/netstandard1.3/es/System.Runtime.xml", - "ref/netstandard1.3/fr/System.Runtime.xml", - "ref/netstandard1.3/it/System.Runtime.xml", - "ref/netstandard1.3/ja/System.Runtime.xml", - "ref/netstandard1.3/ko/System.Runtime.xml", - "ref/netstandard1.3/ru/System.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.xml", - "ref/netstandard1.5/System.Runtime.dll", - "ref/netstandard1.5/System.Runtime.xml", - "ref/netstandard1.5/de/System.Runtime.xml", - "ref/netstandard1.5/es/System.Runtime.xml", - "ref/netstandard1.5/fr/System.Runtime.xml", - "ref/netstandard1.5/it/System.Runtime.xml", - "ref/netstandard1.5/ja/System.Runtime.xml", - "ref/netstandard1.5/ko/System.Runtime.xml", - "ref/netstandard1.5/ru/System.Runtime.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.xml", - "ref/portable-net45+win8+wp80+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.4.3.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.Caching/5.0.0": { - "sha512": "30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", - "type": "package", - "path": "system.runtime.caching/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netstandard2.0/System.Runtime.Caching.dll", - "lib/netstandard2.0/System.Runtime.Caching.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard2.0/System.Runtime.Caching.dll", - "ref/netstandard2.0/System.Runtime.Caching.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", - "system.runtime.caching.5.0.0.nupkg.sha512", - "system.runtime.caching.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Runtime.Extensions/4.3.0": { - "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "type": "package", - "path": "system.runtime.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.0/System.Runtime.Extensions.dll", - "ref/netstandard1.0/System.Runtime.Extensions.xml", - "ref/netstandard1.0/de/System.Runtime.Extensions.xml", - "ref/netstandard1.0/es/System.Runtime.Extensions.xml", - "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.0/it/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.3/System.Runtime.Extensions.dll", - "ref/netstandard1.3/System.Runtime.Extensions.xml", - "ref/netstandard1.3/de/System.Runtime.Extensions.xml", - "ref/netstandard1.3/es/System.Runtime.Extensions.xml", - "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.3/it/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.5/System.Runtime.Extensions.dll", - "ref/netstandard1.5/System.Runtime.Extensions.xml", - "ref/netstandard1.5/de/System.Runtime.Extensions.xml", - "ref/netstandard1.5/es/System.Runtime.Extensions.xml", - "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.5/it/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.extensions.4.3.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.3.0": { - "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "type": "package", - "path": "system.runtime.handles/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.handles.4.3.0.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.3.0": { - "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "type": "package", - "path": "system.runtime.interopservices/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/net463/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/net463/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.interopservices.4.3.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Numerics/4.3.0": { - "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "type": "package", - "path": "system.runtime.numerics/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/netstandard1.3/System.Runtime.Numerics.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/netcore50/de/System.Runtime.Numerics.xml", - "ref/netcore50/es/System.Runtime.Numerics.xml", - "ref/netcore50/fr/System.Runtime.Numerics.xml", - "ref/netcore50/it/System.Runtime.Numerics.xml", - "ref/netcore50/ja/System.Runtime.Numerics.xml", - "ref/netcore50/ko/System.Runtime.Numerics.xml", - "ref/netcore50/ru/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", - "ref/netstandard1.1/System.Runtime.Numerics.dll", - "ref/netstandard1.1/System.Runtime.Numerics.xml", - "ref/netstandard1.1/de/System.Runtime.Numerics.xml", - "ref/netstandard1.1/es/System.Runtime.Numerics.xml", - "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", - "ref/netstandard1.1/it/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.numerics.4.3.0.nupkg.sha512", - "system.runtime.numerics.nuspec" - ] - }, - "System.Security.AccessControl/6.0.0": { - "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "type": "package", - "path": "system.security.accesscontrol/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.xml", - "lib/net6.0/System.Security.AccessControl.dll", - "lib/net6.0/System.Security.AccessControl.xml", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/net461/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", - "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", - "system.security.accesscontrol.6.0.0.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "type": "package", - "path": "system.security.cryptography.algorithms/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/net461/System.Security.Cryptography.Algorithms.dll", - "lib/net463/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/net461/System.Security.Cryptography.Algorithms.dll", - "ref/net463/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "system.security.cryptography.algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/5.0.0": { - "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "type": "package", - "path": "system.security.cryptography.cng/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.xml", - "lib/net462/System.Security.Cryptography.Cng.dll", - "lib/net462/System.Security.Cryptography.Cng.xml", - "lib/net47/System.Security.Cryptography.Cng.dll", - "lib/net47/System.Security.Cryptography.Cng.xml", - "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", - "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", - "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.0/System.Security.Cryptography.Cng.xml", - "lib/netstandard2.1/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.1/System.Security.Cryptography.Cng.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.xml", - "ref/net462/System.Security.Cryptography.Cng.dll", - "ref/net462/System.Security.Cryptography.Cng.xml", - "ref/net47/System.Security.Cryptography.Cng.dll", - "ref/net47/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", - "ref/netstandard2.1/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.1/System.Security.Cryptography.Cng.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.cryptography.cng.5.0.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "type": "package", - "path": "system.security.cryptography.csp/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/netcore50/_._", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "system.security.cryptography.csp.4.3.0.nupkg.sha512", - "system.security.cryptography.csp.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "type": "package", - "path": "system.security.cryptography.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "system.security.cryptography.encoding.nuspec" - ] - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "type": "package", - "path": "system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "system.security.cryptography.openssl.nuspec" - ] - }, - "System.Security.Cryptography.Pkcs/5.0.0": { - "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", - "type": "package", - "path": "system.security.cryptography.pkcs/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Cryptography.Pkcs.dll", - "lib/net461/System.Security.Cryptography.Pkcs.dll", - "lib/net461/System.Security.Cryptography.Pkcs.xml", - "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", - "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", - "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", - "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", - "ref/net46/System.Security.Cryptography.Pkcs.dll", - "ref/net461/System.Security.Cryptography.Pkcs.dll", - "ref/net461/System.Security.Cryptography.Pkcs.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml", - "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", - "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", - "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", - "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", - "system.security.cryptography.pkcs.5.0.0.nupkg.sha512", - "system.security.cryptography.pkcs.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "type": "package", - "path": "system.security.cryptography.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "system.security.cryptography.primitives.nuspec" - ] - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "type": "package", - "path": "system.security.cryptography.protecteddata/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Security.Cryptography.ProtectedData.dll", - "lib/net461/System.Security.Cryptography.ProtectedData.xml", - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", - "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "system.security.cryptography.protecteddata.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "type": "package", - "path": "system.security.cryptography.x509certificates/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/net461/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/net461/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "system.security.cryptography.x509certificates.nuspec" - ] - }, - "System.Security.Permissions/6.0.0": { - "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "type": "package", - "path": "system.security.permissions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Security.Permissions.dll", - "lib/net461/System.Security.Permissions.xml", - "lib/net5.0/System.Security.Permissions.dll", - "lib/net5.0/System.Security.Permissions.xml", - "lib/net6.0/System.Security.Permissions.dll", - "lib/net6.0/System.Security.Permissions.xml", - "lib/netcoreapp3.1/System.Security.Permissions.dll", - "lib/netcoreapp3.1/System.Security.Permissions.xml", - "lib/netstandard2.0/System.Security.Permissions.dll", - "lib/netstandard2.0/System.Security.Permissions.xml", - "runtimes/win/lib/net461/System.Security.Permissions.dll", - "runtimes/win/lib/net461/System.Security.Permissions.xml", - "system.security.permissions.6.0.0.nupkg.sha512", - "system.security.permissions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Security.Principal.Windows/5.0.0": { - "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "type": "package", - "path": "system.security.principal.windows/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.xml", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.xml", - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", - "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/System.Security.Principal.Windows.dll", - "ref/netstandard1.3/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", - "ref/netstandard2.0/System.Security.Principal.Windows.dll", - "ref/netstandard2.0/System.Security.Principal.Windows.xml", - "ref/uap10.0.16299/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.5.0.0.nupkg.sha512", - "system.security.principal.windows.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Text.Encoding/4.3.0": { - "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "type": "package", - "path": "system.text.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.0/System.Text.Encoding.dll", - "ref/netstandard1.0/System.Text.Encoding.xml", - "ref/netstandard1.0/de/System.Text.Encoding.xml", - "ref/netstandard1.0/es/System.Text.Encoding.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.xml", - "ref/netstandard1.0/it/System.Text.Encoding.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.3/System.Text.Encoding.dll", - "ref/netstandard1.3/System.Text.Encoding.xml", - "ref/netstandard1.3/de/System.Text.Encoding.xml", - "ref/netstandard1.3/es/System.Text.Encoding.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.xml", - "ref/netstandard1.3/it/System.Text.Encoding.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.4.3.0.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.Encoding.CodePages/6.0.0": { - "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "type": "package", - "path": "system.text.encoding.codepages/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Text.Encoding.CodePages.dll", - "lib/net461/System.Text.Encoding.CodePages.xml", - "lib/net6.0/System.Text.Encoding.CodePages.dll", - "lib/net6.0/System.Text.Encoding.CodePages.xml", - "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", - "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "system.text.encoding.codepages.6.0.0.nupkg.sha512", - "system.text.encoding.codepages.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Text.Encoding.Extensions/4.3.0": { - "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "type": "package", - "path": "system.text.encoding.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.extensions.4.3.0.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "System.Text.Encodings.Web/7.0.0": { - "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "type": "package", - "path": "system.text.encodings.web/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Text.Encodings.Web.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", - "lib/net462/System.Text.Encodings.Web.dll", - "lib/net462/System.Text.Encodings.Web.xml", - "lib/net6.0/System.Text.Encodings.Web.dll", - "lib/net6.0/System.Text.Encodings.Web.xml", - "lib/net7.0/System.Text.Encodings.Web.dll", - "lib/net7.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.0/System.Text.Encodings.Web.dll", - "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", - "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", - "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", - "system.text.encodings.web.7.0.0.nupkg.sha512", - "system.text.encodings.web.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Text.Json/7.0.0": { - "sha512": "DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", - "type": "package", - "path": "system.text.json/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "README.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", - "buildTransitive/net461/System.Text.Json.targets", - "buildTransitive/net462/System.Text.Json.targets", - "buildTransitive/net6.0/System.Text.Json.targets", - "buildTransitive/netcoreapp2.0/System.Text.Json.targets", - "buildTransitive/netstandard2.0/System.Text.Json.targets", - "lib/net462/System.Text.Json.dll", - "lib/net462/System.Text.Json.xml", - "lib/net6.0/System.Text.Json.dll", - "lib/net6.0/System.Text.Json.xml", - "lib/net7.0/System.Text.Json.dll", - "lib/net7.0/System.Text.Json.xml", - "lib/netstandard2.0/System.Text.Json.dll", - "lib/netstandard2.0/System.Text.Json.xml", - "system.text.json.7.0.0.nupkg.sha512", - "system.text.json.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Text.RegularExpressions/4.3.0": { - "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "type": "package", - "path": "system.text.regularexpressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.3.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.3.0": { - "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.3.0.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Overlapped/4.3.0": { - "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", - "type": "package", - "path": "system.threading.overlapped/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Threading.Overlapped.dll", - "ref/net46/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.xml", - "ref/netstandard1.3/de/System.Threading.Overlapped.xml", - "ref/netstandard1.3/es/System.Threading.Overlapped.xml", - "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", - "ref/netstandard1.3/it/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", - "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", - "runtimes/win/lib/net46/System.Threading.Overlapped.dll", - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", - "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", - "system.threading.overlapped.4.3.0.nupkg.sha512", - "system.threading.overlapped.nuspec" - ] - }, - "System.Threading.Tasks/4.3.0": { - "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "type": "package", - "path": "system.threading.tasks/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.0/System.Threading.Tasks.dll", - "ref/netstandard1.0/System.Threading.Tasks.xml", - "ref/netstandard1.0/de/System.Threading.Tasks.xml", - "ref/netstandard1.0/es/System.Threading.Tasks.xml", - "ref/netstandard1.0/fr/System.Threading.Tasks.xml", - "ref/netstandard1.0/it/System.Threading.Tasks.xml", - "ref/netstandard1.0/ja/System.Threading.Tasks.xml", - "ref/netstandard1.0/ko/System.Threading.Tasks.xml", - "ref/netstandard1.0/ru/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.3/System.Threading.Tasks.dll", - "ref/netstandard1.3/System.Threading.Tasks.xml", - "ref/netstandard1.3/de/System.Threading.Tasks.xml", - "ref/netstandard1.3/es/System.Threading.Tasks.xml", - "ref/netstandard1.3/fr/System.Threading.Tasks.xml", - "ref/netstandard1.3/it/System.Threading.Tasks.xml", - "ref/netstandard1.3/ja/System.Threading.Tasks.xml", - "ref/netstandard1.3/ko/System.Threading.Tasks.xml", - "ref/netstandard1.3/ru/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.4.3.0.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - }, - "System.Threading.Tasks.Dataflow/6.0.0": { - "sha512": "+tyDCU3/B1lDdOOAJywHQoFwyXIUghIaP2BxG79uvhfTnO+D9qIgjVlL/JV2NTliYbMHpd6eKDmHp2VHpij7MA==", - "type": "package", - "path": "system.threading.tasks.dataflow/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Threading.Tasks.Dataflow.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Threading.Tasks.Dataflow.dll", - "lib/net461/System.Threading.Tasks.Dataflow.xml", - "lib/net6.0/System.Threading.Tasks.Dataflow.dll", - "lib/net6.0/System.Threading.Tasks.Dataflow.xml", - "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll", - "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml", - "lib/netstandard2.1/System.Threading.Tasks.Dataflow.dll", - "lib/netstandard2.1/System.Threading.Tasks.Dataflow.xml", - "system.threading.tasks.dataflow.6.0.0.nupkg.sha512", - "system.threading.tasks.dataflow.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Threading.Tasks.Extensions.dll", - "lib/net461/System.Threading.Tasks.Extensions.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netcoreapp2.1/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "system.threading.tasks.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Timer/4.3.0": { - "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "type": "package", - "path": "system.threading.timer/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/_._", - "lib/portable-net451+win81+wpa81/_._", - "lib/win81/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/netcore50/de/System.Threading.Timer.xml", - "ref/netcore50/es/System.Threading.Timer.xml", - "ref/netcore50/fr/System.Threading.Timer.xml", - "ref/netcore50/it/System.Threading.Timer.xml", - "ref/netcore50/ja/System.Threading.Timer.xml", - "ref/netcore50/ko/System.Threading.Timer.xml", - "ref/netcore50/ru/System.Threading.Timer.xml", - "ref/netcore50/zh-hans/System.Threading.Timer.xml", - "ref/netcore50/zh-hant/System.Threading.Timer.xml", - "ref/netstandard1.2/System.Threading.Timer.dll", - "ref/netstandard1.2/System.Threading.Timer.xml", - "ref/netstandard1.2/de/System.Threading.Timer.xml", - "ref/netstandard1.2/es/System.Threading.Timer.xml", - "ref/netstandard1.2/fr/System.Threading.Timer.xml", - "ref/netstandard1.2/it/System.Threading.Timer.xml", - "ref/netstandard1.2/ja/System.Threading.Timer.xml", - "ref/netstandard1.2/ko/System.Threading.Timer.xml", - "ref/netstandard1.2/ru/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", - "ref/portable-net451+win81+wpa81/_._", - "ref/win81/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.timer.4.3.0.nupkg.sha512", - "system.threading.timer.nuspec" - ] - }, - "System.Windows.Extensions/6.0.0": { - "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "type": "package", - "path": "system.windows.extensions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net6.0/System.Windows.Extensions.dll", - "lib/net6.0/System.Windows.Extensions.xml", - "lib/netcoreapp3.1/System.Windows.Extensions.dll", - "lib/netcoreapp3.1/System.Windows.Extensions.xml", - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", - "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", - "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", - "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", - "system.windows.extensions.6.0.0.nupkg.sha512", - "system.windows.extensions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Xml.ReaderWriter/4.3.0": { - "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "type": "package", - "path": "system.xml.readerwriter/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Xml.ReaderWriter.dll", - "lib/netcore50/System.Xml.ReaderWriter.dll", - "lib/netstandard1.3/System.Xml.ReaderWriter.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.xml", - "ref/netcore50/de/System.Xml.ReaderWriter.xml", - "ref/netcore50/es/System.Xml.ReaderWriter.xml", - "ref/netcore50/fr/System.Xml.ReaderWriter.xml", - "ref/netcore50/it/System.Xml.ReaderWriter.xml", - "ref/netcore50/ja/System.Xml.ReaderWriter.xml", - "ref/netcore50/ko/System.Xml.ReaderWriter.xml", - "ref/netcore50/ru/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/System.Xml.ReaderWriter.dll", - "ref/netstandard1.0/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/System.Xml.ReaderWriter.dll", - "ref/netstandard1.3/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.readerwriter.4.3.0.nupkg.sha512", - "system.xml.readerwriter.nuspec" - ] - }, - "System.Xml.XDocument/4.3.0": { - "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "type": "package", - "path": "system.xml.xdocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XDocument.dll", - "lib/netstandard1.3/System.Xml.XDocument.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XDocument.dll", - "ref/netcore50/System.Xml.XDocument.xml", - "ref/netcore50/de/System.Xml.XDocument.xml", - "ref/netcore50/es/System.Xml.XDocument.xml", - "ref/netcore50/fr/System.Xml.XDocument.xml", - "ref/netcore50/it/System.Xml.XDocument.xml", - "ref/netcore50/ja/System.Xml.XDocument.xml", - "ref/netcore50/ko/System.Xml.XDocument.xml", - "ref/netcore50/ru/System.Xml.XDocument.xml", - "ref/netcore50/zh-hans/System.Xml.XDocument.xml", - "ref/netcore50/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.0/System.Xml.XDocument.dll", - "ref/netstandard1.0/System.Xml.XDocument.xml", - "ref/netstandard1.0/de/System.Xml.XDocument.xml", - "ref/netstandard1.0/es/System.Xml.XDocument.xml", - "ref/netstandard1.0/fr/System.Xml.XDocument.xml", - "ref/netstandard1.0/it/System.Xml.XDocument.xml", - "ref/netstandard1.0/ja/System.Xml.XDocument.xml", - "ref/netstandard1.0/ko/System.Xml.XDocument.xml", - "ref/netstandard1.0/ru/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.3/System.Xml.XDocument.dll", - "ref/netstandard1.3/System.Xml.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xdocument.4.3.0.nupkg.sha512", - "system.xml.xdocument.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "net7.0": [ - "AutoMapper >= 12.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection >= 12.0.1", - "Microsoft.AspNetCore.Authentication.Negotiate >= 7.0.9", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson >= 7.0.9", - "Microsoft.AspNetCore.OpenApi >= 7.0.9", - "Microsoft.EntityFrameworkCore >= 7.0.9", - "Microsoft.EntityFrameworkCore.SqlServer >= 7.0.9", - "Microsoft.EntityFrameworkCore.Tools >= 7.0.9", - "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 7.0.8", - "Swashbuckle.AspNetCore >= 6.5.0" - ] - }, - "packageFolders": { - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", - "projectName": "Microsoft.SelfService.Portal.Core.API", - "projectPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", - "packagesPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\", - "outputPath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API\\obj\\publish\\win-x64\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net7.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\7.0.304\\Sdks\\Microsoft.NET.Sdk.Web\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net7.0": { - "targetAlias": "net7.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net7.0": { - "targetAlias": "net7.0", - "dependencies": { - "AutoMapper": { - "target": "Package", - "version": "[12.0.1, )" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection": { - "target": "Package", - "version": "[12.0.1, )" - }, - "Microsoft.AspNetCore.Authentication.Negotiate": { - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": { - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.AspNetCore.OpenApi": { - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.EntityFrameworkCore.SqlServer": { - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.EntityFrameworkCore.Tools": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[7.0.9, )" - }, - "Microsoft.VisualStudio.Web.CodeGeneration.Design": { - "target": "Package", - "version": "[7.0.8, )" - }, - "Swashbuckle.AspNetCore": { - "target": "Package", - "version": "[6.5.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json" - } - }, - "runtimes": { - "win-x64": { - "#import": [] - } - } - } -} \ No newline at end of file diff --git a/obj/publish/win-x64/project.nuget.cache b/obj/publish/win-x64/project.nuget.cache deleted file mode 100644 index 8f8bfcb..0000000 --- a/obj/publish/win-x64/project.nuget.cache +++ /dev/null @@ -1,275 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "ql41vYD0cvhL44ISIuSBUxOy60cperM30rSBsse9rDNB8Tm/ggweR00k1yi7qYDHvDWSGUmr67DQBjSv4ww3Eg==", - "success": true, - "projectFilePath": "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\source\\repos\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API\\Microsoft.SelfService.Portal.Core.API.csproj", - "expectedPackageFiles": [ - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\automapper\\12.0.1\\automapper.12.0.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\12.0.1\\automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\azure.core\\1.24.0\\azure.core.1.24.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\azure.identity\\1.6.0\\azure.identity.1.6.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer\\2.14.1\\humanizer.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.af\\2.14.1\\humanizer.core.af.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ar\\2.14.1\\humanizer.core.ar.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.az\\2.14.1\\humanizer.core.az.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.bg\\2.14.1\\humanizer.core.bg.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.bn-bd\\2.14.1\\humanizer.core.bn-bd.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.cs\\2.14.1\\humanizer.core.cs.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.da\\2.14.1\\humanizer.core.da.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.de\\2.14.1\\humanizer.core.de.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.el\\2.14.1\\humanizer.core.el.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.es\\2.14.1\\humanizer.core.es.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.fa\\2.14.1\\humanizer.core.fa.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.fi-fi\\2.14.1\\humanizer.core.fi-fi.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.fr\\2.14.1\\humanizer.core.fr.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.fr-be\\2.14.1\\humanizer.core.fr-be.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.he\\2.14.1\\humanizer.core.he.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.hr\\2.14.1\\humanizer.core.hr.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.hu\\2.14.1\\humanizer.core.hu.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.hy\\2.14.1\\humanizer.core.hy.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.id\\2.14.1\\humanizer.core.id.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.is\\2.14.1\\humanizer.core.is.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.it\\2.14.1\\humanizer.core.it.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ja\\2.14.1\\humanizer.core.ja.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ko-kr\\2.14.1\\humanizer.core.ko-kr.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ku\\2.14.1\\humanizer.core.ku.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.lv\\2.14.1\\humanizer.core.lv.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ms-my\\2.14.1\\humanizer.core.ms-my.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.mt\\2.14.1\\humanizer.core.mt.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.nb\\2.14.1\\humanizer.core.nb.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.nb-no\\2.14.1\\humanizer.core.nb-no.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.nl\\2.14.1\\humanizer.core.nl.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.pl\\2.14.1\\humanizer.core.pl.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.pt\\2.14.1\\humanizer.core.pt.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ro\\2.14.1\\humanizer.core.ro.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.ru\\2.14.1\\humanizer.core.ru.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.sk\\2.14.1\\humanizer.core.sk.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.sl\\2.14.1\\humanizer.core.sl.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.sr\\2.14.1\\humanizer.core.sr.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.sr-latn\\2.14.1\\humanizer.core.sr-latn.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.sv\\2.14.1\\humanizer.core.sv.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.th-th\\2.14.1\\humanizer.core.th-th.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.tr\\2.14.1\\humanizer.core.tr.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.uk\\2.14.1\\humanizer.core.uk.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.uz-cyrl-uz\\2.14.1\\humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.uz-latn-uz\\2.14.1\\humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.vi\\2.14.1\\humanizer.core.vi.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.zh-cn\\2.14.1\\humanizer.core.zh-cn.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.zh-hans\\2.14.1\\humanizer.core.zh-hans.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\humanizer.core.zh-hant\\2.14.1\\humanizer.core.zh-hant.2.14.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.authentication.negotiate\\7.0.9\\microsoft.aspnetcore.authentication.negotiate.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\7.0.9\\microsoft.aspnetcore.connections.abstractions.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\7.0.9\\microsoft.aspnetcore.jsonpatch.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\7.0.9\\microsoft.aspnetcore.mvc.newtonsoftjson.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.openapi\\7.0.9\\microsoft.aspnetcore.openapi.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\6.0.11\\microsoft.aspnetcore.razor.language.6.0.11.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.build\\17.3.2\\microsoft.build.17.3.2.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.build.framework\\17.3.2\\microsoft.build.framework.17.3.2.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.analyzerutilities\\3.3.0\\microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.common\\4.4.0\\microsoft.codeanalysis.common.4.4.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.4.0\\microsoft.codeanalysis.csharp.4.4.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.csharp.features\\4.4.0\\microsoft.codeanalysis.csharp.features.4.4.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.4.0\\microsoft.codeanalysis.csharp.workspaces.4.4.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.elfie\\1.0.0\\microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.features\\4.4.0\\microsoft.codeanalysis.features.4.4.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.razor\\6.0.11\\microsoft.codeanalysis.razor.6.0.11.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.scripting.common\\4.4.0\\microsoft.codeanalysis.scripting.common.4.4.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.4.0\\microsoft.codeanalysis.workspaces.common.4.4.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.data.sqlclient\\5.0.2\\microsoft.data.sqlclient.5.0.2.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.0.1\\microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.diasymreader\\1.4.0\\microsoft.diasymreader.1.4.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.dotnet.scaffolding.shared\\7.0.8\\microsoft.dotnet.scaffolding.shared.7.0.8.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore\\7.0.9\\microsoft.entityframeworkcore.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\7.0.9\\microsoft.entityframeworkcore.abstractions.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\7.0.9\\microsoft.entityframeworkcore.analyzers.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.design\\7.0.9\\microsoft.entityframeworkcore.design.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\7.0.9\\microsoft.entityframeworkcore.relational.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\7.0.9\\microsoft.entityframeworkcore.sqlserver.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\7.0.9\\microsoft.entityframeworkcore.tools.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\7.0.0\\microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.caching.memory\\7.0.0\\microsoft.extensions.caching.memory.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\7.0.0\\microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.dependencymodel\\7.0.0\\microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.features\\7.0.9\\microsoft.extensions.features.7.0.9.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.logging\\7.0.0\\microsoft.extensions.logging.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.options\\7.0.0\\microsoft.extensions.options.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identity.client\\4.45.0\\microsoft.identity.client.4.45.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\2.19.3\\microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.21.0\\microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.21.0\\microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.logging\\6.21.0\\microsoft.identitymodel.logging.6.21.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.21.0\\microsoft.identitymodel.protocols.6.21.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.21.0\\microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.21.0\\microsoft.identitymodel.tokens.6.21.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.net.stringtools\\17.3.2\\microsoft.net.stringtools.17.3.2.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration\\7.0.8\\microsoft.visualstudio.web.codegeneration.7.0.8.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\7.0.8\\microsoft.visualstudio.web.codegeneration.core.7.0.8.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\7.0.8\\microsoft.visualstudio.web.codegeneration.design.7.0.8.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\7.0.8\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.7.0.8.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\7.0.8\\microsoft.visualstudio.web.codegeneration.templating.7.0.8.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\7.0.8\\microsoft.visualstudio.web.codegeneration.utils.7.0.8.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\7.0.8\\microsoft.visualstudio.web.codegenerators.mvc.7.0.8.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.common\\6.3.1\\nuget.common.6.3.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.configuration\\6.3.1\\nuget.configuration.6.3.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.dependencyresolver.core\\6.3.1\\nuget.dependencyresolver.core.6.3.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.frameworks\\6.3.1\\nuget.frameworks.6.3.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.librarymodel\\6.3.1\\nuget.librarymodel.6.3.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.packaging\\6.3.1\\nuget.packaging.6.3.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.projectmodel\\6.3.1\\nuget.projectmodel.6.3.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.protocol\\6.3.1\\nuget.protocol.6.3.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\nuget.versioning\\6.3.1\\nuget.versioning.6.3.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.collections\\4.3.0\\runtime.any.system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.diagnostics.tools\\4.3.0\\runtime.any.system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.diagnostics.tracing\\4.3.0\\runtime.any.system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.globalization\\4.3.0\\runtime.any.system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.globalization.calendars\\4.3.0\\runtime.any.system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.io\\4.3.0\\runtime.any.system.io.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.reflection\\4.3.0\\runtime.any.system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.reflection.extensions\\4.3.0\\runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.3.0\\runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.resources.resourcemanager\\4.3.0\\runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.runtime\\4.3.0\\runtime.any.system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.runtime.handles\\4.3.0\\runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.runtime.interopservices\\4.3.0\\runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.text.encoding\\4.3.0\\runtime.any.system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.text.encoding.extensions\\4.3.0\\runtime.any.system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.3.0\\runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.any.system.threading.timer\\4.3.0\\runtime.any.system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.win.microsoft.win32.primitives\\4.3.0\\runtime.win.microsoft.win32.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.win.system.console\\4.3.0\\runtime.win.system.console.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.win.system.diagnostics.debug\\4.3.0\\runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.win.system.io.filesystem\\4.3.0\\runtime.win.system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.win.system.net.primitives\\4.3.0\\runtime.win.system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.win.system.net.sockets\\4.3.0\\runtime.win.system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\runtime.win.system.runtime.extensions\\4.3.0\\runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.5.0\\swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition.attributedmodel\\6.0.0\\system.composition.attributedmodel.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition.convention\\6.0.0\\system.composition.convention.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition.hosting\\6.0.0\\system.composition.hosting.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition.runtime\\6.0.0\\system.composition.runtime.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.composition.typedparts\\6.0.0\\system.composition.typedparts.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.data.datasetextensions\\4.5.0\\system.data.datasetextensions.4.5.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.directoryservices.protocols\\7.0.1\\system.directoryservices.protocols.7.0.1.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.formats.asn1\\5.0.0\\system.formats.asn1.5.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.21.0\\system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.io.pipelines\\7.0.0\\system.io.pipelines.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.private.uri\\4.3.0\\system.private.uri.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.metadata\\6.0.0\\system.reflection.metadata.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.metadataloadcontext\\6.0.0\\system.reflection.metadataloadcontext.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.caching\\5.0.0\\system.runtime.caching.5.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.pkcs\\5.0.0\\system.security.cryptography.pkcs.5.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.json\\7.0.0\\system.text.json.7.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading.overlapped\\4.3.0\\system.threading.overlapped.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading.tasks.dataflow\\6.0.0\\system.threading.tasks.dataflow.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Users\\ASA_Administrator.CCIS-P01S01-CM\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file