diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..39d601a --- /dev/null +++ b/.env.example @@ -0,0 +1,6 @@ +POSTGRES_PASSWORD=replace-with-a-strong-local-password +RABBITMQ_PASSWORD=replace-with-a-strong-local-password +MINIO_ACCESS_KEY=replace-with-a-local-access-key +MINIO_SECRET_KEY=replace-with-a-strong-local-secret +JWT_SIGNING_KEY=replace-with-at-least-32-random-characters +FILE_PROCESSING_API_KEY=replace-with-a-random-local-api-key diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..439f4eb --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - package-ecosystem: nuget + directory: / + schedule: { interval: weekly } + groups: { dotnet: { patterns: ["*"] } } + - package-ecosystem: github-actions + directory: / + schedule: { interval: weekly } + - package-ecosystem: docker + directory: / + schedule: { interval: weekly } diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..5021750 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,18 @@ +name: ci +on: + push: { branches: [main] } + pull_request: +permissions: { contents: read } +jobs: + dotnet: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v7 + - uses: actions/setup-dotnet@v6 + with: { dotnet-version: 10.0.x } + - run: dotnet restore DistributedFileProcessing.slnx + - run: dotnet format DistributedFileProcessing.slnx --verify-no-changes --no-restore + - run: dotnet build DistributedFileProcessing.slnx -c Release --no-restore + - run: dotnet test DistributedFileProcessing.slnx -c Release --no-build --no-restore + - run: dotnet list DistributedFileProcessing.slnx package --vulnerable --include-transitive + - run: docker compose --env-file .env.example config --quiet diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..eb765a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +**/bin/ +**/obj/ +.env +.vs/ +.vscode/ +TestResults/ +*.user +*.suo diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..ac8a91b --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,3 @@ +# Contributing + +Keep changes focused and describe their operational failure modes. Run the Release build, tests, formatting check, dependency audit, and Compose configuration check before opening a pull request. Never commit `.env`, credentials, customer files, malware samples, OCR output, or exported object-store data. diff --git a/README.md b/README.md index 5c13569..7bf3ecf 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Distributed File Processing Platform -A local-first .NET 10 platform that streams uploads to MinIO, records state in PostgreSQL, publishes durable RabbitMQ jobs, and processes files in horizontally scalable workers with ClamAV, Tesseract OCR, thumbnails, notifications, auditing, retries, Hangfire, Redis, structured logs, metrics, traces, and health checks. +A local-first .NET 10 reference platform that spools uploads to temporary storage, records state in PostgreSQL, publishes RabbitMQ jobs, and processes files in horizontally scalable workers with ClamAV, Tesseract OCR, thumbnails, notifications, auditing, retries, Hangfire, Redis, structured logs, metrics, traces, and health checks. ## Architecture and workflow @@ -40,11 +40,13 @@ docker/ reserved operational assets - Optional host development: .NET SDK 10.0.302 or newer - About 6 GB free RAM while ClamAV initializes its signatures -The checked-in credentials are local-development values. Change `Authentication`, PostgreSQL, RabbitMQ, and MinIO secrets before sharing a reachable environment. +Credentials are not committed. Copy `.env.example` to `.env` and replace every placeholder before starting Compose. Never reuse local values in a shared environment. ## Run everything ```powershell +Copy-Item .env.example .env +# Replace every placeholder in .env. docker compose up --build --scale worker=2 ``` @@ -53,8 +55,8 @@ First startup can take several minutes because ClamAV downloads signatures. Wait - Swagger: http://localhost:8080/swagger - Health: http://localhost:8080/health - Hangfire: http://localhost:8080/hangfire (loopback only) -- RabbitMQ: http://localhost:15672 (`fileprocessing` / `local_dev_password`) -- MinIO: http://localhost:9001 (`minioadmin` / `minioadmin`) +- RabbitMQ: http://localhost:15672 (user `fileprocessing`; password from `.env`) +- MinIO: http://localhost:9001 (credentials from `.env`) Stop without deleting data with `docker compose down`. To intentionally remove local data, run `docker compose down --volumes`. @@ -82,11 +84,11 @@ DELETE requires an `admin` JWT. Downloads are allowed only after completion and ## Validation and processing -Allowed types are PDF, DOCX, XLSX, TXT, PNG, JPEG, and TIFF. The API enforces configured size, extension, MIME type, SHA-256 duplicate detection, and signatures for PDF, Office ZIP, PNG, and JPEG before queueing. Upload content is streamed into a bounded buffer for hashing/signature validation and then into MinIO. Set `FileProcessing:MaxFileSizeBytes` to change the 100 MiB default. +Allowed types are PDF, DOCX, XLSX, TXT, PNG, JPEG, and TIFF. The API enforces configured size, extension, MIME type, SHA-256 duplicate detection, and signatures for PDF, Office ZIP, PNG, and JPEG before queueing. Upload content is spooled to a temporary file for hashing/signature validation and then streamed into MinIO. This bounds managed-memory use but requires temporary disk capacity up to the configured upload limit. Set `FileProcessing:MaxFileSizeBytes` to change the 100 MiB default. Workers use ClamAV's INSTREAM protocol. Infected files stop at `VirusDetected`. Text files are read directly; other clean files invoke Tesseract. Image thumbnails preserve aspect ratio within `Thumbnails:Width` and `Height`. OCR text and thumbnails are written to MinIO. Configure `Notifications:WebhookUrl` to receive JSON events. -Transient consumer failures are negatively acknowledged to the dead-letter exchange. Operators can call the retry endpoint; Hangfire also republishes up to 100 failed jobs hourly. Attempts are capped by `FileProcessing:MaxRetries`. Completed jobs are idempotent. Increase throughput with `docker compose up --scale worker=4`; RabbitMQ prefetch controls per-consumer concurrency. +Consumer failures are negatively acknowledged to the dead-letter exchange. Operators can call the retry endpoint; Hangfire also republishes up to 100 failed jobs hourly. Attempts are capped by `FileProcessing:MaxRetries`. Completed jobs are idempotent. Increase throughput with `docker compose up --scale worker=4`; RabbitMQ prefetch controls per-consumer concurrency. ## Configuration @@ -111,6 +113,8 @@ docker compose config --quiet Unit tests verify state/history invariants. The integration project is wired to the API and currently checks serialized queue contracts. A live end-to-end check requires the Compose dependencies: upload the EICAR test file and confirm `VirusDetected`, then upload a clean image and observe `Completed`, OCR/thumbnail objects in MinIO, history rows in PostgreSQL, and acknowledged messages in RabbitMQ. +See [architecture](docs/architecture.md), [verification scope](docs/verification.md), and the [transactional-outbox decision](docs/adr/0002-transactional-outbox.md). The current database commit and RabbitMQ publish are not atomic; that gap must be closed before calling the ingestion path production-grade. + ## Operations and troubleshooting Every transition creates processing history; uploads, retries, failures, completion, and deletion create correlation-indexed audit records. Send `X-Correlation-ID` as a GUID or use the generated value returned in the response header. Serilog emits structured request/worker logs. OpenTelemetry instruments HTTP, runtime, and outbound requests; point `OTEL_EXPORTER_OTLP_ENDPOINT` to a local collector to export traces and metrics. diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..4e1f9f9 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,5 @@ +# Security policy + +Report vulnerabilities through GitHub private vulnerability reporting rather than a public issue. Include impact, reproduction steps, and affected versions without real credentials or sensitive files. + +This repository is a reference implementation. The Compose stack is not an internet-ready deployment. Use a managed secret store, TLS, private networking, least-privilege service accounts, malware-signature monitoring, and an authenticated authorization service before production use. diff --git a/docker-compose.yml b/docker-compose.yml index 79bb8a4..655cde3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,13 +2,13 @@ name: distributed-file-processing services: postgres: image: postgres:18-alpine - environment: { POSTGRES_DB: fileprocessing, POSTGRES_USER: fileprocessing, POSTGRES_PASSWORD: local_dev_password } + environment: { POSTGRES_DB: fileprocessing, POSTGRES_USER: fileprocessing, POSTGRES_PASSWORD: "${POSTGRES_PASSWORD:?Set POSTGRES_PASSWORD in .env}" } ports: ["5432:5432"] volumes: ["postgres-data:/var/lib/postgresql/data"] healthcheck: { test: ["CMD-SHELL", "pg_isready -U fileprocessing -d fileprocessing"], interval: 5s, timeout: 5s, retries: 20 } rabbitmq: image: rabbitmq:4-management-alpine - environment: { RABBITMQ_DEFAULT_USER: fileprocessing, RABBITMQ_DEFAULT_PASS: local_dev_password } + environment: { RABBITMQ_DEFAULT_USER: fileprocessing, RABBITMQ_DEFAULT_PASS: "${RABBITMQ_PASSWORD:?Set RABBITMQ_PASSWORD in .env}" } ports: ["5672:5672", "15672:15672"] volumes: ["rabbitmq-data:/var/lib/rabbitmq"] healthcheck: { test: ["CMD", "rabbitmq-diagnostics", "-q", "ping"], interval: 5s, timeout: 5s, retries: 20 } @@ -21,7 +21,7 @@ services: minio: image: minio/minio:latest command: server /data --console-address ":9001" - environment: { MINIO_ROOT_USER: minioadmin, MINIO_ROOT_PASSWORD: minioadmin } + environment: { MINIO_ROOT_USER: "${MINIO_ACCESS_KEY:?Set MINIO_ACCESS_KEY in .env}", MINIO_ROOT_PASSWORD: "${MINIO_SECRET_KEY:?Set MINIO_SECRET_KEY in .env}" } ports: ["9000:9000", "9001:9001"] volumes: ["minio-data:/data"] healthcheck: { test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"], interval: 5s, timeout: 5s, retries: 20 } @@ -32,7 +32,18 @@ services: healthcheck: { test: ["CMD-SHELL", "echo PING | nc localhost 3310 | grep PONG"], interval: 15s, timeout: 5s, retries: 40, start_period: 60s } api: build: { context: ., dockerfile: src/FileProcessing.Api/Dockerfile } - environment: { ASPNETCORE_URLS: "http://+:8080", ASPNETCORE_ENVIRONMENT: Development, OTEL_EXPORTER_OTLP_ENDPOINT: "" } + environment: + ASPNETCORE_URLS: "http://+:8080" + ASPNETCORE_ENVIRONMENT: Development + OTEL_EXPORTER_OTLP_ENDPOINT: "" + ConnectionStrings__PostgreSql: "Host=postgres;Port=5432;Database=fileprocessing;Username=fileprocessing;Password=${POSTGRES_PASSWORD}" + ConnectionStrings__Redis: "redis:6379" + Authentication__JwtKey: "${JWT_SIGNING_KEY:?Set JWT_SIGNING_KEY in .env}" + Authentication__ApiKey: "${FILE_PROCESSING_API_KEY:?Set FILE_PROCESSING_API_KEY in .env}" + RabbitMq__UserName: fileprocessing + RabbitMq__Password: "${RABBITMQ_PASSWORD}" + Minio__AccessKey: "${MINIO_ACCESS_KEY}" + Minio__SecretKey: "${MINIO_SECRET_KEY}" ports: ["8080:8080"] depends_on: postgres: { condition: service_healthy } @@ -43,6 +54,13 @@ services: worker: build: { context: ., dockerfile: src/FileProcessing.Worker/Dockerfile } deploy: { replicas: 2 } + environment: + ConnectionStrings__PostgreSql: "Host=postgres;Port=5432;Database=fileprocessing;Username=fileprocessing;Password=${POSTGRES_PASSWORD}" + ConnectionStrings__Redis: "redis:6379" + RabbitMq__UserName: fileprocessing + RabbitMq__Password: "${RABBITMQ_PASSWORD}" + Minio__AccessKey: "${MINIO_ACCESS_KEY}" + Minio__SecretKey: "${MINIO_SECRET_KEY}" depends_on: postgres: { condition: service_healthy } rabbitmq: { condition: service_healthy } diff --git a/docs/adr/0001-temporary-file-spooling.md b/docs/adr/0001-temporary-file-spooling.md new file mode 100644 index 0000000..f67dbc1 --- /dev/null +++ b/docs/adr/0001-temporary-file-spooling.md @@ -0,0 +1,5 @@ +# ADR 0001: Spool uploads to temporary storage + +Status: Accepted + +The API copies each accepted upload to an asynchronously opened temporary file, computes its checksum and signature from that seekable stream, then sends it to object storage. This avoids allocating up to the full upload limit in managed memory. The trade-off is temporary-disk capacity and I/O; deployments must size and monitor ephemeral storage. diff --git a/docs/adr/0002-transactional-outbox.md b/docs/adr/0002-transactional-outbox.md new file mode 100644 index 0000000..19b01cf --- /dev/null +++ b/docs/adr/0002-transactional-outbox.md @@ -0,0 +1,5 @@ +# ADR 0002: Introduce a transactional outbox before production + +Status: Proposed + +The current upload flow commits file metadata and then publishes RabbitMQ work. A failure between those operations can leave a queued record without a message. Before production, store an outbox record in the same PostgreSQL transaction, publish it from a background dispatcher with confirms, and mark it delivered idempotently. Reconciliation should detect stale queued records. diff --git a/docs/architecture.md b/docs/architecture.md new file mode 100644 index 0000000..4e9fe5d --- /dev/null +++ b/docs/architecture.md @@ -0,0 +1,25 @@ +# Architecture + +| Quality attribute | Current mechanism | Evidence or limitation | +| --- | --- | --- | +| Scalability | Competing RabbitMQ consumers and object storage | Worker replicas scale independently; load tests are not included. | +| Reliability | Persistent messages, manual acknowledgements, DLQ, idempotent completed state | Database commit and message publish are not atomic yet; see ADR 0002. | +| Security | JWT/API-key boundary, signature checks, ClamAV, signed downloads | Production identity and network controls remain deployment concerns. | +| Observability | Correlation IDs, audit rows, Serilog, OpenTelemetry | No dashboard, alert rules, or SLO validation is included. | +| Resource efficiency | Uploads spool to a temporary file before hashing and storage | Temporary disk must be sized for concurrent upload limits. | + +```mermaid +flowchart LR + Client -->|JWT or API key| API + API --> MinIO[(MinIO)] + API --> PostgreSQL[(PostgreSQL)] + API --> RabbitMQ[(RabbitMQ)] + RabbitMQ --> Worker + Worker --> ClamAV + Worker --> Tesseract + Worker --> MinIO + Worker --> PostgreSQL + Worker -->|optional outbound| Webhook +``` + +Uploaded content, filenames, MIME types, webhook destinations, queue payloads, and OCR output are untrusted. Production deployments should isolate workers, restrict egress, enforce object retention, and cap temporary storage. diff --git a/docs/verification.md b/docs/verification.md new file mode 100644 index 0000000..608ac9f --- /dev/null +++ b/docs/verification.md @@ -0,0 +1,5 @@ +# Verification + +CI restores, checks formatting, builds in Release, runs deterministic tests, audits NuGet dependencies, and validates the Compose model. Current tests cover domain transitions and contract serialization; they do not prove a live PostgreSQL/RabbitMQ/MinIO/ClamAV/Tesseract workflow. + +For an end-to-end check, copy `.env.example` to `.env`, replace every value, start the stack, upload one clean image and the standard EICAR test file, and verify API state, PostgreSQL history, MinIO artifacts, queue acknowledgement, and worker logs. Record the date and environment when publishing runtime results. diff --git a/src/FileProcessing.Api/Infrastructure.cs b/src/FileProcessing.Api/Infrastructure.cs index ae37f2b..f87745e 100644 --- a/src/FileProcessing.Api/Infrastructure.cs +++ b/src/FileProcessing.Api/Infrastructure.cs @@ -6,7 +6,8 @@ using System.Security.Cryptography; namespace FileProcessing.Api; -public sealed class CorrelationIdMiddleware(RequestDelegate next){public async Task InvokeAsync(HttpContext c){var id=c.Request.Headers.TryGetValue("X-Correlation-ID",out var supplied)&&Guid.TryParse(supplied,out _)?supplied.ToString():Guid.NewGuid().ToString();c.TraceIdentifier=id;c.Response.Headers["X-Correlation-ID"]=id;await next(c);}} -public sealed class ApiKeyMiddleware(RequestDelegate next,IConfiguration configuration){public async Task InvokeAsync(HttpContext c){if(c.User.Identity?.IsAuthenticated!=true&&c.Request.Headers.TryGetValue("X-Api-Key",out var supplied)&&CryptographicOperations.FixedTimeEquals(System.Text.Encoding.UTF8.GetBytes(supplied.ToString()),System.Text.Encoding.UTF8.GetBytes(configuration["Authentication:ApiKey"]??"disabled"))){var claims=new[]{new System.Security.Claims.Claim(System.Security.Claims.ClaimTypes.Name,"api-key"),new System.Security.Claims.Claim(System.Security.Claims.ClaimTypes.Role,"processor")};c.User=new(new System.Security.Claims.ClaimsIdentity(claims,"ApiKey"));}await next(c);}} -public sealed class LocalDashboardAuthorization:IDashboardAuthorizationFilter { public bool Authorize(DashboardContext context){var http=context.GetHttpContext();return http.Connection.RemoteIpAddress is { } ip&&System.Net.IPAddress.IsLoopback(ip);} } -public sealed class MaintenanceJobs(ProcessingDbContext db,IJobPublisher publisher){public async Task RetryFailedAsync(CancellationToken ct){var files=await db.Files.Where(x=>x.Status==ProcessingStatus.Failed&&x.RetryCount<5).Take(100).ToListAsync(ct);foreach(var file in files){file.Retry();await publisher.PublishAsync(new(file.Id,Guid.NewGuid().ToString(),file.RetryCount),9,ct);}await db.SaveChangesAsync(ct);}public async Task CleanupAsync(CancellationToken ct){var cutoff=DateTimeOffset.UtcNow.AddDays(-30);var logs=await db.AuditLogs.Where(x=>x.OccurredAt x.Status == ProcessingStatus.Failed && x.RetryCount < 5).Take(100).ToListAsync(ct); foreach (var file in files) { file.Retry(); await publisher.PublishAsync(new(file.Id, Guid.NewGuid().ToString(), file.RetryCount), 9, ct); } await db.SaveChangesAsync(ct); } public async Task CleanupAsync(CancellationToken ct) { var cutoff = DateTimeOffset.UtcNow.AddDays(-30); var logs = await db.AuditLogs.Where(x => x.OccurredAt < cutoff).ToListAsync(ct); db.AuditLogs.RemoveRange(logs); await db.SaveChangesAsync(ct); } } diff --git a/src/FileProcessing.Api/Program.cs b/src/FileProcessing.Api/Program.cs index 71fbeb1..b4c5e4b 100644 --- a/src/FileProcessing.Api/Program.cs +++ b/src/FileProcessing.Api/Program.cs @@ -16,37 +16,38 @@ using OpenTelemetry.Trace; using Serilog; -Log.Logger=new LoggerConfiguration().WriteTo.Console().CreateBootstrapLogger(); +Log.Logger = new LoggerConfiguration().WriteTo.Console().CreateBootstrapLogger(); try { -var builder=WebApplication.CreateBuilder(args); -builder.Host.UseSerilog((context,services,log)=>log.ReadFrom.Configuration(context.Configuration).ReadFrom.Services(services).Enrich.FromLogContext().WriteTo.Console()); -builder.Services.AddApplication(builder.Configuration).AddInfrastructure(builder.Configuration); -var max=builder.Configuration.GetValue("FileProcessing:MaxFileSizeBytes",104_857_600);builder.Services.Configure(x=>x.MultipartBodyLengthLimit=max); -var jwt=builder.Configuration["Authentication:JwtKey"]??throw new InvalidOperationException("Authentication:JwtKey is required."); -builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme).AddJwtBearer(x=>x.TokenValidationParameters=new(){ValidateIssuer=true,ValidateAudience=true,ValidateLifetime=true,ValidateIssuerSigningKey=true,ValidIssuer=builder.Configuration["Authentication:Issuer"],ValidAudience=builder.Configuration["Authentication:Audience"],IssuerSigningKey=new SymmetricSecurityKey(Encoding.UTF8.GetBytes(jwt))}); -builder.Services.AddAuthorizationBuilder().AddPolicy("files",p=>p.RequireRole("admin","processor")); -builder.Services.AddRateLimiter(x=>x.AddFixedWindowLimiter("uploads",o=>{o.PermitLimit=20;o.Window=TimeSpan.FromMinutes(1);o.QueueLimit=10;})); -builder.Services.AddHealthChecks().AddDbContextCheck(); -builder.Services.AddEndpointsApiExplorer();builder.Services.AddSwaggerGen(); -var connection=builder.Configuration.GetConnectionString("PostgreSql")!;builder.Services.AddHangfire(x=>x.UsePostgreSqlStorage(o=>o.UseNpgsqlConnection(connection)));builder.Services.AddHangfireServer(); -builder.Services.AddOpenTelemetry().ConfigureResource(x=>x.AddService("FileProcessing.Api")).WithTracing(x=>x.AddAspNetCoreInstrumentation().AddHttpClientInstrumentation().AddOtlpExporter()).WithMetrics(x=>x.AddAspNetCoreInstrumentation().AddHttpClientInstrumentation().AddRuntimeInstrumentation().AddOtlpExporter()); -var app=builder.Build(); -app.UseMiddleware();app.UseSerilogRequestLogging();app.UseRateLimiter();app.UseAuthentication();app.UseMiddleware();app.UseAuthorization();app.UseSwagger();app.UseSwaggerUI(); -app.MapHealthChecks("/health").AllowAnonymous();app.MapHangfireDashboard("/hangfire",new DashboardOptions{Authorization=[new LocalDashboardAuthorization()]}); -var files=app.MapGroup("/files").RequireAuthorization("files"); -files.MapPost("/upload",async (IFormFile file,HttpContext http,IFileProcessingService service,CancellationToken ct)=>Results.Ok(await service.UploadAsync(new(file.FileName,file.ContentType,file.Length,file.OpenReadStream(),http.TraceIdentifier),ct))).DisableAntiforgery().RequireRateLimiting("uploads"); -files.MapPost("/upload/bulk",async (IFormFileCollection uploads,HttpContext http,IFileProcessingService service,CancellationToken ct)=>{var results=new List();foreach(var file in uploads)results.Add(await service.UploadAsync(new(file.FileName,file.ContentType,file.Length,file.OpenReadStream(),http.TraceIdentifier),ct));return Results.Ok(results);}).DisableAntiforgery().RequireRateLimiting("uploads"); -files.MapGet("/{id:guid}",async (Guid id,IFileRepository repo,CancellationToken ct)=>await repo.GetAsync(id,ct) is { } f?Results.Ok(ToResponse(f)):Results.NotFound()); -files.MapGet("/",async (int? page,int? pageSize,IFileRepository repo,CancellationToken ct)=>{var p=Math.Max(1,page??1);var ps=Math.Clamp(pageSize??25,1,100);var (items,total)=await repo.ListAsync(p,ps,ct);return Results.Ok(new PagedResponse(items.Select(ToResponse).ToList(),p,ps,total));}); -files.MapGet("/status/{id:guid}",async (Guid id,IFileRepository repo,CancellationToken ct)=>await repo.GetAsync(id,ct) is { } f?Results.Ok(new{id=f.Id,status=f.Status.ToString(),f.FailureReason,f.RetryCount}):Results.NotFound()); -files.MapGet("/download/{id:guid}",async (Guid id,IFileRepository repo,IBlobStorage storage,CancellationToken ct)=>await repo.GetAsync(id,ct) is {Status:ProcessingStatus.Completed} f?Results.Redirect(await storage.PresignedGetAsync(f.ObjectName,TimeSpan.FromMinutes(10),ct)):Results.NotFound()); -files.MapPost("/retry/{id:guid}",async (Guid id,HttpContext http,IFileProcessingService service,CancellationToken ct)=>{await service.RetryAsync(id,http.TraceIdentifier,ct);return Results.Accepted($"/files/status/{id}");}); -files.MapDelete("/{id:guid}",async (Guid id,HttpContext http,IFileRepository repo,IBlobStorage storage,CancellationToken ct)=>{var file=await repo.GetAsync(id,ct);if(file is null)return Results.NotFound();await storage.DeleteAsync(file.ObjectName,ct);file.Delete();await repo.AuditAsync(id,"Delete",http.TraceIdentifier,null,ct);await repo.SaveAsync(ct);return Results.NoContent();}).RequireAuthorization(p=>p.RequireRole("admin")); -using(var scope=app.Services.CreateScope()){var db=scope.ServiceProvider.GetRequiredService();await db.Database.EnsureCreatedAsync();} -RecurringJob.AddOrUpdate("retry-failed",x=>x.RetryFailedAsync(CancellationToken.None),Cron.Hourly);RecurringJob.AddOrUpdate("cleanup",x=>x.CleanupAsync(CancellationToken.None),Cron.Daily); -await app.RunAsync(); + var builder = WebApplication.CreateBuilder(args); + builder.Host.UseSerilog((context, services, log) => log.ReadFrom.Configuration(context.Configuration).ReadFrom.Services(services).Enrich.FromLogContext().WriteTo.Console()); + builder.Services.AddApplication(builder.Configuration).AddInfrastructure(builder.Configuration); + var max = builder.Configuration.GetValue("FileProcessing:MaxFileSizeBytes", 104_857_600); builder.Services.Configure(x => x.MultipartBodyLengthLimit = max); + var jwt = builder.Configuration["Authentication:JwtKey"] ?? throw new InvalidOperationException("Authentication:JwtKey is required."); + builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme).AddJwtBearer(x => x.TokenValidationParameters = new() { ValidateIssuer = true, ValidateAudience = true, ValidateLifetime = true, ValidateIssuerSigningKey = true, ValidIssuer = builder.Configuration["Authentication:Issuer"], ValidAudience = builder.Configuration["Authentication:Audience"], IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(jwt)) }); + builder.Services.AddAuthorizationBuilder().AddPolicy("files", p => p.RequireRole("admin", "processor")); + builder.Services.AddRateLimiter(x => x.AddFixedWindowLimiter("uploads", o => { o.PermitLimit = 20; o.Window = TimeSpan.FromMinutes(1); o.QueueLimit = 10; })); + builder.Services.AddHealthChecks().AddDbContextCheck(); + builder.Services.AddEndpointsApiExplorer(); builder.Services.AddSwaggerGen(); + var connection = builder.Configuration.GetConnectionString("PostgreSql")!; builder.Services.AddHangfire(x => x.UsePostgreSqlStorage(o => o.UseNpgsqlConnection(connection))); builder.Services.AddHangfireServer(); + builder.Services.AddOpenTelemetry().ConfigureResource(x => x.AddService("FileProcessing.Api")).WithTracing(x => x.AddAspNetCoreInstrumentation().AddHttpClientInstrumentation().AddOtlpExporter()).WithMetrics(x => x.AddAspNetCoreInstrumentation().AddHttpClientInstrumentation().AddRuntimeInstrumentation().AddOtlpExporter()); + var app = builder.Build(); + app.UseMiddleware(); app.UseSerilogRequestLogging(); app.UseRateLimiter(); app.UseAuthentication(); app.UseMiddleware(); app.UseAuthorization(); app.UseSwagger(); app.UseSwaggerUI(); + app.MapHealthChecks("/health").AllowAnonymous(); app.MapHangfireDashboard("/hangfire", new DashboardOptions { Authorization = [new LocalDashboardAuthorization()] }); + var files = app.MapGroup("/files").RequireAuthorization("files"); + files.MapPost("/upload", async (IFormFile file, HttpContext http, IFileProcessingService service, CancellationToken ct) => Results.Ok(await service.UploadAsync(new(file.FileName, file.ContentType, file.Length, file.OpenReadStream(), http.TraceIdentifier), ct))).DisableAntiforgery().RequireRateLimiting("uploads"); + files.MapPost("/upload/bulk", async (IFormFileCollection uploads, HttpContext http, IFileProcessingService service, CancellationToken ct) => { var results = new List(); foreach (var file in uploads) results.Add(await service.UploadAsync(new(file.FileName, file.ContentType, file.Length, file.OpenReadStream(), http.TraceIdentifier), ct)); return Results.Ok(results); }).DisableAntiforgery().RequireRateLimiting("uploads"); + files.MapGet("/{id:guid}", async (Guid id, IFileRepository repo, CancellationToken ct) => await repo.GetAsync(id, ct) is { } f ? Results.Ok(ToResponse(f)) : Results.NotFound()); + files.MapGet("/", async (int? page, int? pageSize, IFileRepository repo, CancellationToken ct) => { var p = Math.Max(1, page ?? 1); var ps = Math.Clamp(pageSize ?? 25, 1, 100); var (items, total) = await repo.ListAsync(p, ps, ct); return Results.Ok(new PagedResponse(items.Select(ToResponse).ToList(), p, ps, total)); }); + files.MapGet("/status/{id:guid}", async (Guid id, IFileRepository repo, CancellationToken ct) => await repo.GetAsync(id, ct) is { } f ? Results.Ok(new { id = f.Id, status = f.Status.ToString(), f.FailureReason, f.RetryCount }) : Results.NotFound()); + files.MapGet("/download/{id:guid}", async (Guid id, IFileRepository repo, IBlobStorage storage, CancellationToken ct) => await repo.GetAsync(id, ct) is { Status: ProcessingStatus.Completed } f ? Results.Redirect(await storage.PresignedGetAsync(f.ObjectName, TimeSpan.FromMinutes(10), ct)) : Results.NotFound()); + files.MapPost("/retry/{id:guid}", async (Guid id, HttpContext http, IFileProcessingService service, CancellationToken ct) => { await service.RetryAsync(id, http.TraceIdentifier, ct); return Results.Accepted($"/files/status/{id}"); }); + files.MapDelete("/{id:guid}", async (Guid id, HttpContext http, IFileRepository repo, IBlobStorage storage, CancellationToken ct) => { var file = await repo.GetAsync(id, ct); if (file is null) return Results.NotFound(); await storage.DeleteAsync(file.ObjectName, ct); file.Delete(); await repo.AuditAsync(id, "Delete", http.TraceIdentifier, null, ct); await repo.SaveAsync(ct); return Results.NoContent(); }).RequireAuthorization(p => p.RequireRole("admin")); + using (var scope = app.Services.CreateScope()) { var db = scope.ServiceProvider.GetRequiredService(); await db.Database.EnsureCreatedAsync(); } + RecurringJob.AddOrUpdate("retry-failed", x => x.RetryFailedAsync(CancellationToken.None), Cron.Hourly); RecurringJob.AddOrUpdate("cleanup", x => x.CleanupAsync(CancellationToken.None), Cron.Daily); + await app.RunAsync(); } -catch(Exception ex){Log.Fatal(ex,"Application terminated unexpectedly");}finally{await Log.CloseAndFlushAsync();} -static FileResponse ToResponse(FileRecord f)=>new(f.Id,f.OriginalName,f.ContentType,f.Size,f.Checksum,f.Status.ToString(),f.RetryCount,f.CreatedAt,f.FailureReason); +catch (Exception ex) { Log.Fatal(ex, "Application terminated unexpectedly"); } +finally { await Log.CloseAndFlushAsync(); } +static FileResponse ToResponse(FileRecord f) => new(f.Id, f.OriginalName, f.ContentType, f.Size, f.Checksum, f.Status.ToString(), f.RetryCount, f.CreatedAt, f.FailureReason); public partial class Program; diff --git a/src/FileProcessing.Api/appsettings.json b/src/FileProcessing.Api/appsettings.json index 788067f..5847363 100644 --- a/src/FileProcessing.Api/appsettings.json +++ b/src/FileProcessing.Api/appsettings.json @@ -1,9 +1,9 @@ { - "ConnectionStrings":{"PostgreSql":"Host=postgres;Port=5432;Database=fileprocessing;Username=fileprocessing;Password=local_dev_password","Redis":"redis:6379"}, - "Authentication":{"JwtKey":"local-development-signing-key-change-me-32-characters","Issuer":"FileProcessing","Audience":"FileProcessing.Client","ApiKey":"local-development-api-key"}, + "ConnectionStrings":{"PostgreSql":"","Redis":""}, + "Authentication":{"JwtKey":"","Issuer":"FileProcessing","Audience":"FileProcessing.Client","ApiKey":""}, "FileProcessing":{"MaxFileSizeBytes":104857600,"MaxRetries":5,"AllowedExtensions":[".pdf",".docx",".xlsx",".txt",".png",".jpg",".jpeg",".tif",".tiff"],"AllowedContentTypes":["application/pdf","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","text/plain","image/png","image/jpeg","image/tiff"]}, - "RabbitMq":{"Host":"rabbitmq","UserName":"fileprocessing","Password":"local_dev_password","Queue":"file-processing","Prefetch":4}, - "Minio":{"Endpoint":"minio:9000","AccessKey":"minioadmin","SecretKey":"minioadmin","Bucket":"files","Secure":false}, + "RabbitMq":{"Host":"rabbitmq","UserName":"","Password":"","Queue":"file-processing","Prefetch":4}, + "Minio":{"Endpoint":"minio:9000","AccessKey":"","SecretKey":"","Bucket":"files","Secure":false}, "ClamAV":{"Host":"clamav","Port":3310,"TimeoutSeconds":120},"OCR":{"Executable":"tesseract","Language":"eng","TimeoutSeconds":120},"Thumbnails":{"Width":320,"Height":320},"Notifications":{"WebhookUrl":""}, "Serilog":{"MinimumLevel":"Information","WriteTo":[{"Name":"Console"}]},"OpenTelemetry":{"OtlpEndpoint":"http://otel-collector:4317"},"AllowedHosts":"*" } diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/CommunityToolkit.HighPerformance.dll b/src/FileProcessing.Api/bin/Debug/net10.0/CommunityToolkit.HighPerformance.dll deleted file mode 100644 index 177ba2f..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/CommunityToolkit.HighPerformance.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Dapper.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Dapper.dll deleted file mode 100644 index c8a0de4..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Dapper.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.deps.json b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.deps.json deleted file mode 100644 index 80db1ef..0000000 --- a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.deps.json +++ /dev/null @@ -1,1119 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "FileProcessing.Api/1.0.0": { - "dependencies": { - "FileProcessing.Application": "1.0.0", - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Infrastructure": "1.0.0", - "Hangfire.AspNetCore": "1.8.22", - "Hangfire.PostgreSql": "1.20.13", - "Microsoft.AspNetCore.Authentication.JwtBearer": "10.0.0", - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": "10.0.0", - "Microsoft.OpenApi": "3.9.0", - "Newtonsoft.Json": "13.0.4", - "OpenTelemetry.Exporter.OpenTelemetryProtocol": "1.17.0", - "OpenTelemetry.Extensions.Hosting": "1.17.0", - "OpenTelemetry.Instrumentation.AspNetCore": "1.17.0", - "OpenTelemetry.Instrumentation.Http": "1.17.0", - "OpenTelemetry.Instrumentation.Runtime": "1.17.0", - "Serilog.AspNetCore": "10.0.0", - "Serilog.Sinks.Console": "6.1.1", - "Swashbuckle.AspNetCore": "10.2.3" - }, - "runtime": { - "FileProcessing.Api.dll": {} - } - }, - "CommunityToolkit.HighPerformance/8.4.0": { - "runtime": { - "lib/net8.0/CommunityToolkit.HighPerformance.dll": { - "assemblyVersion": "8.4.0.0", - "fileVersion": "8.4.0.1" - } - } - }, - "Dapper/2.0.123": { - "runtime": { - "lib/net5.0/Dapper.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.123.33578" - } - } - }, - "FluentValidation/12.1.1": { - "runtime": { - "lib/net8.0/FluentValidation.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.1.1.0" - } - } - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "dependencies": { - "FluentValidation": "12.1.1" - }, - "runtime": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.1.1.0" - } - } - }, - "Hangfire.AspNetCore/1.8.22": { - "dependencies": { - "Hangfire.NetCore": "1.8.22" - }, - "runtime": { - "lib/netcoreapp3.0/Hangfire.AspNetCore.dll": { - "assemblyVersion": "1.8.22.0", - "fileVersion": "1.8.22.0" - } - } - }, - "Hangfire.Core/1.8.22": { - "dependencies": { - "Newtonsoft.Json": "13.0.4" - }, - "runtime": { - "lib/netstandard2.0/Hangfire.Core.dll": { - "assemblyVersion": "1.8.22.0", - "fileVersion": "1.8.22.0" - } - }, - "resources": { - "lib/netstandard2.0/ca/Hangfire.Core.resources.dll": { - "locale": "ca" - }, - "lib/netstandard2.0/de/Hangfire.Core.resources.dll": { - "locale": "de" - }, - "lib/netstandard2.0/es/Hangfire.Core.resources.dll": { - "locale": "es" - }, - "lib/netstandard2.0/fa/Hangfire.Core.resources.dll": { - "locale": "fa" - }, - "lib/netstandard2.0/fr/Hangfire.Core.resources.dll": { - "locale": "fr" - }, - "lib/netstandard2.0/nb/Hangfire.Core.resources.dll": { - "locale": "nb" - }, - "lib/netstandard2.0/nl/Hangfire.Core.resources.dll": { - "locale": "nl" - }, - "lib/netstandard2.0/pt-BR/Hangfire.Core.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard2.0/pt-PT/Hangfire.Core.resources.dll": { - "locale": "pt-PT" - }, - "lib/netstandard2.0/pt/Hangfire.Core.resources.dll": { - "locale": "pt" - }, - "lib/netstandard2.0/sv/Hangfire.Core.resources.dll": { - "locale": "sv" - }, - "lib/netstandard2.0/tr-TR/Hangfire.Core.resources.dll": { - "locale": "tr-TR" - }, - "lib/netstandard2.0/zh-TW/Hangfire.Core.resources.dll": { - "locale": "zh-TW" - }, - "lib/netstandard2.0/zh/Hangfire.Core.resources.dll": { - "locale": "zh" - } - } - }, - "Hangfire.NetCore/1.8.22": { - "dependencies": { - "Hangfire.Core": "1.8.22" - }, - "runtime": { - "lib/netstandard2.1/Hangfire.NetCore.dll": { - "assemblyVersion": "1.8.22.0", - "fileVersion": "1.8.22.0" - } - } - }, - "Hangfire.PostgreSql/1.20.13": { - "dependencies": { - "Dapper": "2.0.123", - "Hangfire.Core": "1.8.22", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/netstandard2.0/Hangfire.PostgreSql.dll": { - "assemblyVersion": "1.20.13.0", - "fileVersion": "1.20.13.0" - } - } - }, - "MediatR/14.0.0": { - "dependencies": { - "MediatR.Contracts": "2.0.1", - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0" - }, - "runtime": { - "lib/net10.0/MediatR.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.0.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.DependencyModel/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "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/8.0.1": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "8.0.1.0", - "fileVersion": "8.0.1.50722" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "8.0.1", - "System.IdentityModel.Tokens.Jwt": "8.0.1" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "8.0.1.0", - "fileVersion": "8.0.1.50722" - } - } - }, - "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/3.9.0": { - "runtime": { - "lib/net8.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "3.9.0.0", - "fileVersion": "3.9.0.0" - } - } - }, - "Minio/7.0.0": { - "dependencies": { - "CommunityToolkit.HighPerformance": "8.4.0", - "System.IO.Hashing": "9.0.10", - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/Minio.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.0.0" - } - } - }, - "Newtonsoft.Json/13.0.4": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.4.30916" - } - } - }, - "Npgsql/10.0.0": { - "runtime": { - "lib/net10.0/Npgsql.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.EntityFrameworkCore.Relational": "10.0.0", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "OpenTelemetry/1.17.0": { - "dependencies": { - "OpenTelemetry.Api.ProviderBuilderExtensions": "1.17.0" - }, - "runtime": { - "lib/net10.0/OpenTelemetry.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.17.0.2115" - } - } - }, - "OpenTelemetry.Api/1.17.0": { - "runtime": { - "lib/net10.0/OpenTelemetry.Api.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.17.0.2115" - } - } - }, - "OpenTelemetry.Api.ProviderBuilderExtensions/1.17.0": { - "dependencies": { - "OpenTelemetry.Api": "1.17.0" - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.17.0.2115" - } - } - }, - "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.17.0": { - "dependencies": { - "OpenTelemetry": "1.17.0" - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.17.0.2115" - } - } - }, - "OpenTelemetry.Extensions.Hosting/1.17.0": { - "dependencies": { - "OpenTelemetry": "1.17.0" - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.17.0.2115" - } - } - }, - "OpenTelemetry.Instrumentation.AspNetCore/1.17.0": { - "dependencies": { - "OpenTelemetry.Api.ProviderBuilderExtensions": "1.17.0" - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { - "assemblyVersion": "1.17.0.1204", - "fileVersion": "1.17.0.1204" - } - } - }, - "OpenTelemetry.Instrumentation.Http/1.17.0": { - "dependencies": { - "OpenTelemetry.Api.ProviderBuilderExtensions": "1.17.0" - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { - "assemblyVersion": "1.17.0.1210", - "fileVersion": "1.17.0.1210" - } - } - }, - "OpenTelemetry.Instrumentation.Runtime/1.17.0": { - "dependencies": { - "OpenTelemetry.Api": "1.17.0" - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { - "assemblyVersion": "1.17.0.1215", - "fileVersion": "1.17.0.1215" - } - } - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "runtime": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "2.2.8.1080" - } - } - }, - "RabbitMQ.Client/7.2.0": { - "runtime": { - "lib/net8.0/RabbitMQ.Client.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.2.0.0" - } - } - }, - "Serilog/4.3.0": { - "runtime": { - "lib/net9.0/Serilog.dll": { - "assemblyVersion": "4.3.0.0", - "fileVersion": "4.3.0.0" - } - } - }, - "Serilog.AspNetCore/10.0.0": { - "dependencies": { - "Serilog": "4.3.0", - "Serilog.Extensions.Hosting": "10.0.0", - "Serilog.Formatting.Compact": "3.0.0", - "Serilog.Settings.Configuration": "10.0.0", - "Serilog.Sinks.Console": "6.1.1", - "Serilog.Sinks.Debug": "3.0.0", - "Serilog.Sinks.File": "7.0.0" - }, - "runtime": { - "lib/net10.0/Serilog.AspNetCore.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Serilog.Extensions.Hosting/10.0.0": { - "dependencies": { - "Serilog": "4.3.0", - "Serilog.Extensions.Logging": "10.0.0" - }, - "runtime": { - "lib/net10.0/Serilog.Extensions.Hosting.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Serilog.Extensions.Logging/10.0.0": { - "dependencies": { - "Serilog": "4.3.0" - }, - "runtime": { - "lib/net10.0/Serilog.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Serilog.Formatting.Compact/3.0.0": { - "dependencies": { - "Serilog": "4.3.0" - }, - "runtime": { - "lib/net8.0/Serilog.Formatting.Compact.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.0.0.0" - } - } - }, - "Serilog.Settings.Configuration/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyModel": "10.0.0", - "Serilog": "4.3.0" - }, - "runtime": { - "lib/net10.0/Serilog.Settings.Configuration.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Serilog.Sinks.Console/6.1.1": { - "dependencies": { - "Serilog": "4.3.0" - }, - "runtime": { - "lib/net8.0/Serilog.Sinks.Console.dll": { - "assemblyVersion": "6.1.1.0", - "fileVersion": "6.1.1.0" - } - } - }, - "Serilog.Sinks.Debug/3.0.0": { - "dependencies": { - "Serilog": "4.3.0" - }, - "runtime": { - "lib/net8.0/Serilog.Sinks.Debug.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.0.0.0" - } - } - }, - "Serilog.Sinks.File/7.0.0": { - "dependencies": { - "Serilog": "4.3.0" - }, - "runtime": { - "lib/net9.0/Serilog.Sinks.File.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.0.0" - } - } - }, - "SixLabors.ImageSharp/3.1.12": { - "runtime": { - "lib/net6.0/SixLabors.ImageSharp.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.1.12.0" - } - } - }, - "StackExchange.Redis/2.10.1": { - "dependencies": { - "Pipelines.Sockets.Unofficial": "2.2.8", - "System.IO.Hashing": "9.0.10" - }, - "runtime": { - "lib/net8.0/StackExchange.Redis.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.10.1.65101" - } - } - }, - "Swashbuckle.AspNetCore/10.2.3": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "10.2.3", - "Swashbuckle.AspNetCore.SwaggerGen": "10.2.3", - "Swashbuckle.AspNetCore.SwaggerUI": "10.2.3" - } - }, - "Swashbuckle.AspNetCore.Swagger/10.2.3": { - "dependencies": { - "Microsoft.OpenApi": "3.9.0" - }, - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "10.2.3.0", - "fileVersion": "10.2.3.2721" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/10.2.3": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "10.2.3" - }, - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "10.2.3.0", - "fileVersion": "10.2.3.2721" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/10.2.3": { - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "10.2.3.0", - "fileVersion": "10.2.3.2721" - } - } - }, - "System.IdentityModel.Tokens.Jwt/8.0.1": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0", - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "runtime": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "8.0.1.0", - "fileVersion": "8.0.1.50722" - } - } - }, - "System.IO.Hashing/9.0.10": { - "runtime": { - "lib/net9.0/System.IO.Hashing.dll": { - "assemblyVersion": "9.0.0.10", - "fileVersion": "9.0.1025.47515" - } - } - }, - "System.Reactive/6.0.1": { - "runtime": { - "lib/net6.0/System.Reactive.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.7420" - } - } - }, - "FileProcessing.Application/1.0.0": { - "dependencies": { - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "FileProcessing.Shared": "1.0.0", - "FluentValidation.DependencyInjectionExtensions": "12.1.1", - "MediatR": "14.0.0" - }, - "runtime": { - "FileProcessing.Application.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Contracts/1.0.0": { - "runtime": { - "FileProcessing.Contracts.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Domain/1.0.0": { - "runtime": { - "FileProcessing.Domain.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Infrastructure/1.0.0": { - "dependencies": { - "FileProcessing.Application": "1.0.0", - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "Microsoft.EntityFrameworkCore": "10.0.0", - "Minio": "7.0.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "RabbitMQ.Client": "7.2.0", - "SixLabors.ImageSharp": "3.1.12", - "StackExchange.Redis": "2.10.1" - }, - "runtime": { - "FileProcessing.Infrastructure.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Shared/1.0.0": { - "runtime": { - "FileProcessing.Shared.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "FileProcessing.Api/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "CommunityToolkit.HighPerformance/8.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg==", - "path": "communitytoolkit.highperformance/8.4.0", - "hashPath": "communitytoolkit.highperformance.8.4.0.nupkg.sha512" - }, - "Dapper/2.0.123": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RDFF4rBLLmbpi6pwkY7q/M6UXHRJEOerplDGE5jwEkP/JGJnBauAClYavNKJPW1yOTWRPIyfj4is3EaJxQXILQ==", - "path": "dapper/2.0.123", - "hashPath": "dapper.2.0.123.nupkg.sha512" - }, - "FluentValidation/12.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==", - "path": "fluentvalidation/12.1.1", - "hashPath": "fluentvalidation.12.1.1.nupkg.sha512" - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D0VXh4dtjjX2aQizuaa0g6R8X3U1JaVqJPfGCvLwZX9t/O2h7tkpbitbadQMfwcgSPdDbI2vDxuwRMv/Uf9dHA==", - "path": "fluentvalidation.dependencyinjectionextensions/12.1.1", - "hashPath": "fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512" - }, - "Hangfire.AspNetCore/1.8.22": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ud5ZNnH9q5+3MryiuPTW7baRERN9QYLyX+8muLwH9BqumoE9eWZRxna9RrunYaMVkNGbTUUuwOfSYIvCC222TQ==", - "path": "hangfire.aspnetcore/1.8.22", - "hashPath": "hangfire.aspnetcore.1.8.22.nupkg.sha512" - }, - "Hangfire.Core/1.8.22": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fjgEtlfkLNnUcX9IB+fp3gTPtt5G7VJ0PCcoKLEWnXJXn5qTm/mvrm/t3/T+Xj35ZePtbWBm+j2PXE0beFwzbA==", - "path": "hangfire.core/1.8.22", - "hashPath": "hangfire.core.1.8.22.nupkg.sha512" - }, - "Hangfire.NetCore/1.8.22": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I7LiUHpC3ks7k+vLFOdwwCwDHxT83H+Mv6bT+7vkI1SLOc4Vwv2zOWdeeN1K86vddu7R36ho+eKP0gvfYlSZjg==", - "path": "hangfire.netcore/1.8.22", - "hashPath": "hangfire.netcore.1.8.22.nupkg.sha512" - }, - "Hangfire.PostgreSql/1.20.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+JxVOTQINm/gTNstGYgiJQzjP81lGM86COvaSomSyYbbjDExAcqwc5xflsykMVfBKxMP6C/bH0wWgrlhPS0SMQ==", - "path": "hangfire.postgresql/1.20.13", - "hashPath": "hangfire.postgresql.1.20.13.nupkg.sha512" - }, - "MediatR/14.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r5fwUO6NBvOFKaiMRx/gRrD1MEHHOio5yEdzSLs2OMeD2e9ZKnZaBQM6A6vVBEWJF4VY41vplXmDMOY1YvpqNA==", - "path": "mediatr/14.0.0", - "hashPath": "mediatr.14.0.0.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0BgDfT1GoZnzjJOBwx5vFMK5JtqsTEas9pCEwd1/KKxNUAqFmreN60WeUoF+CsmSd9tOQuqWedvdBo/QqHuNTQ==", - "path": "microsoft.aspnetcore.authentication.jwtbearer/10.0.0", - "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.10.0.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", - "path": "microsoft.entityframeworkcore/10.0.0", - "hashPath": "microsoft.entityframeworkcore.10.0.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.0", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", - "path": "microsoft.entityframeworkcore.relational/10.0.0", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RFYJR7APio/BiqdQunRq6DB+nDB6nc2qhHr77mlvZ0q0BT8PubMXN7XicmfzCbrDE/dzhBnUKBRXLTcqUiZDGg==", - "path": "microsoft.extensions.dependencymodel/10.0.0", - "hashPath": "microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ND74bTLuvcrhpEPQU8QZwOrq08zPPj76Ev/60SX1juVKLSSnbknXNoOzNYMPJn3xvhyDHmqU3Hvb/aYV3uvvhQ==", - "path": "microsoft.extensions.diagnostics.healthchecks.entityframeworkcore/10.0.0", - "hashPath": "microsoft.extensions.diagnostics.healthchecks.entityframeworkcore.10.0.0.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/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", - "path": "microsoft.identitymodel.protocols/8.0.1", - "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", - "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.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/3.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2sDK6AFY1L/Xg8JvwlaDoPwzGqCftjUgHG2NhCy8gNV/1v4eXziYoH39e/pwC7oTBJInuYUUJqfkRpIMPQ/Fyw==", - "path": "microsoft.openapi/3.9.0", - "hashPath": "microsoft.openapi.3.9.0.nupkg.sha512" - }, - "Minio/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GiCD0koYBM8/VCXRkrfSzOtySEmrA2ngceJuxRO5H+/uGodiTX+XPaUHQq9/1DpaeBxWnkmrgqu52dwuZqIYgw==", - "path": "minio/7.0.0", - "hashPath": "minio.7.0.0.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", - "path": "newtonsoft.json/13.0.4", - "hashPath": "newtonsoft.json.13.0.4.nupkg.sha512" - }, - "Npgsql/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "path": "npgsql/10.0.0", - "hashPath": "npgsql.10.0.0.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - }, - "OpenTelemetry/1.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rMLOTftlMlTm7+MSrvXDHnJRjVkROFNKXHZrYjOsX+LankaFG7QSflx7qRRGjoqZoirohnxmJQ7GEb9occO4Gg==", - "path": "opentelemetry/1.17.0", - "hashPath": "opentelemetry.1.17.0.nupkg.sha512" - }, - "OpenTelemetry.Api/1.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mSBxzomZgHIJu9CyVNqyDu/n2JHEtqVgfcCD1Br0cV5iLYogjZOMqhlVLt99PEp+0KGBNUR3GXgeOdN2GR3F9g==", - "path": "opentelemetry.api/1.17.0", - "hashPath": "opentelemetry.api.1.17.0.nupkg.sha512" - }, - "OpenTelemetry.Api.ProviderBuilderExtensions/1.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Xgc3Qf9B9TFMFpx6exTdGqMWuYIT2miNzkdMPutVvT9YuMFaEovXWke1Gb6z8NxYaQbbGF38vYLuSg1JCeui5Q==", - "path": "opentelemetry.api.providerbuilderextensions/1.17.0", - "hashPath": "opentelemetry.api.providerbuilderextensions.1.17.0.nupkg.sha512" - }, - "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-R1omQOrQpGlS0Cp5UIr/TAiuEA48JrPlgr1NPV5gESiTU7HhWU+ILe2EBSYb1fKdsSavZ7nZkHcUxAzofPqr2A==", - "path": "opentelemetry.exporter.opentelemetryprotocol/1.17.0", - "hashPath": "opentelemetry.exporter.opentelemetryprotocol.1.17.0.nupkg.sha512" - }, - "OpenTelemetry.Extensions.Hosting/1.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t1OwL/4qgboGMobYVT+UV5zgWnFqCp4Pw8lcsmzh8m2K8PQsTKkyxrC32tqYTMYny3GOW4q5cltE3dTVzLmRew==", - "path": "opentelemetry.extensions.hosting/1.17.0", - "hashPath": "opentelemetry.extensions.hosting.1.17.0.nupkg.sha512" - }, - "OpenTelemetry.Instrumentation.AspNetCore/1.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rGbmk1vuy1kvgZmE0ps7Vb99YZvDap6AalrrF60FwnNit1uW/PbeFZj1cpb0T8MPkYmjhBrRJ1/JB6QqXkRjHA==", - "path": "opentelemetry.instrumentation.aspnetcore/1.17.0", - "hashPath": "opentelemetry.instrumentation.aspnetcore.1.17.0.nupkg.sha512" - }, - "OpenTelemetry.Instrumentation.Http/1.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uTwVtxIJ/xB96wGYTaDsbkJVeCFdUxTwvrlDUn2YJixy0UuKc8DvQMzwKNJMTzNFiiyYO9c40id6tUHTmWs33A==", - "path": "opentelemetry.instrumentation.http/1.17.0", - "hashPath": "opentelemetry.instrumentation.http.1.17.0.nupkg.sha512" - }, - "OpenTelemetry.Instrumentation.Runtime/1.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HyYenisDn/xdtyVXdjImsCl+RNC2gq01N0rvSR7tsYAylXR2sxX/YgMsyTajMXA27+r1vB7lNU8cWRhV0fwL+Q==", - "path": "opentelemetry.instrumentation.runtime/1.17.0", - "hashPath": "opentelemetry.instrumentation.runtime.1.17.0.nupkg.sha512" - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", - "path": "pipelines.sockets.unofficial/2.2.8", - "hashPath": "pipelines.sockets.unofficial.2.2.8.nupkg.sha512" - }, - "RabbitMQ.Client/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PPQ7cF7lwbhqC4up6en1bTUZlz06YqQwJecOJzsguTtyhNA7oL5uNDZIx/h6ZfcyPZV4V3DYKSCxfm4RUFLcbA==", - "path": "rabbitmq.client/7.2.0", - "hashPath": "rabbitmq.client.7.2.0.nupkg.sha512" - }, - "Serilog/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+cDryFR0GRhsGOnZSKwaDzRRl4MupvJ42FhCE4zhQRVanX0Jpg6WuCBk59OVhVDPmab1bB+nRykAnykYELA9qQ==", - "path": "serilog/4.3.0", - "hashPath": "serilog.4.3.0.nupkg.sha512" - }, - "Serilog.AspNetCore/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-a/cNa1mY4On1oJlfGG1wAvxjp5g7OEzk/Jf/nm7NF9cWoE7KlZw1GldrifUBWm9oKibHkR7Lg/l5jy3y7ACR8w==", - "path": "serilog.aspnetcore/10.0.0", - "hashPath": "serilog.aspnetcore.10.0.0.nupkg.sha512" - }, - "Serilog.Extensions.Hosting/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E7juuIc+gzoGxgzFooFgAV8g9BfiSXNKsUok9NmEpyAXg2odkcPsMa/Yo4axkJRlh0se7mkYQ1GXDaBemR+b6w==", - "path": "serilog.extensions.hosting/10.0.0", - "hashPath": "serilog.extensions.hosting.10.0.0.nupkg.sha512" - }, - "Serilog.Extensions.Logging/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vx0kABKl2dWbBhhqAfTOk53/i8aV/5VaT3a6il9gn72Wqs2pM7EK2OB6No6xdqK2IaY6Zf9gdjLuK9BVa2rT+Q==", - "path": "serilog.extensions.logging/10.0.0", - "hashPath": "serilog.extensions.logging.10.0.0.nupkg.sha512" - }, - "Serilog.Formatting.Compact/3.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wQsv14w9cqlfB5FX2MZpNsTawckN4a8dryuNGbebB/3Nh1pXnROHZov3swtu3Nj5oNG7Ba+xdu7Et/ulAUPanQ==", - "path": "serilog.formatting.compact/3.0.0", - "hashPath": "serilog.formatting.compact.3.0.0.nupkg.sha512" - }, - "Serilog.Settings.Configuration/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LNq+ibS1sbhTqPV1FIE69/9AJJbfaOhnaqkzcjFy95o+4U+STsta9mi97f1smgXsWYKICDeGUf8xUGzd/52/uA==", - "path": "serilog.settings.configuration/10.0.0", - "hashPath": "serilog.settings.configuration.10.0.0.nupkg.sha512" - }, - "Serilog.Sinks.Console/6.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8jbqgjUyZlfCuSTaJk6lOca465OndqOz3KZP6Cryt/IqZYybyBu7GP0fE/AXBzrrQB3EBmQntBFAvMVz1COvAA==", - "path": "serilog.sinks.console/6.1.1", - "hashPath": "serilog.sinks.console.6.1.1.nupkg.sha512" - }, - "Serilog.Sinks.Debug/3.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4BzXcdrgRX7wde9PmHuYd9U6YqycCC28hhpKonK7hx0wb19eiuRj16fPcPSVp0o/Y1ipJuNLYQ00R3q2Zs8FDA==", - "path": "serilog.sinks.debug/3.0.0", - "hashPath": "serilog.sinks.debug.3.0.0.nupkg.sha512" - }, - "Serilog.Sinks.File/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKL7mXv7qaiNBUC71ssvn/dU0k9t0o45+qm2XgKAlSt19xF+ijjxyA3R6HmCgfKEKwfcfkwWjayuQtRueZFkYw==", - "path": "serilog.sinks.file/7.0.0", - "hashPath": "serilog.sinks.file.7.0.0.nupkg.sha512" - }, - "SixLabors.ImageSharp/3.1.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", - "path": "sixlabors.imagesharp/3.1.12", - "hashPath": "sixlabors.imagesharp.3.1.12.nupkg.sha512" - }, - "StackExchange.Redis/2.10.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-se08WZvD42H3bV4XBW07pupTiE2/72qStKyi/lRqqcijksFWfRtwLTuhFtZ4OX19f4+we/2qruFZBXYJBFc8PQ==", - "path": "stackexchange.redis/2.10.1", - "hashPath": "stackexchange.redis.2.10.1.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/10.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8KNh1RWvofdU6DVLyBs4Z/OpUMnmf8oNvJQc0QxpwySRbi42bwLfdVMMrXZWANg5U5KQGQq1xW6r/hlcqw99tQ==", - "path": "swashbuckle.aspnetcore/10.2.3", - "hashPath": "swashbuckle.aspnetcore.10.2.3.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/10.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1jUUs3WQnrS0FUtaZPLSy1yYMEwS1zlvDmvQ2/eldPHUANX0LJSLVZecCMgSMdeGiRqeaRrIXLtSz++TCiTMww==", - "path": "swashbuckle.aspnetcore.swagger/10.2.3", - "hashPath": "swashbuckle.aspnetcore.swagger.10.2.3.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/10.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y7t4coDRAeFYChmvlMRiH2OjbiRrm9AVIDgt17fQfs3x9PVAI5PiwWYOhg+4F13R4Q36WDc9lqfoOnNa3tNbGg==", - "path": "swashbuckle.aspnetcore.swaggergen/10.2.3", - "hashPath": "swashbuckle.aspnetcore.swaggergen.10.2.3.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/10.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nthWONRs/FJ4yyG206g1cC52WEG8EqrjuMWjGdR+5XG7lbjFto6NqcI9EMICgVFom/UivIjUVwI76ZHbHwTPfQ==", - "path": "swashbuckle.aspnetcore.swaggerui/10.2.3", - "hashPath": "swashbuckle.aspnetcore.swaggerui.10.2.3.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GJw3bYkWpOgvN3tJo5X4lYUeIFA2HD293FPUhKmp7qxS+g5ywAb34Dnd3cDAFLkcMohy5XTpoaZ4uAHuw0uSPQ==", - "path": "system.identitymodel.tokens.jwt/8.0.1", - "hashPath": "system.identitymodel.tokens.jwt.8.0.1.nupkg.sha512" - }, - "System.IO.Hashing/9.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9gv5z71xaWWmcGEs4bXdreIhKp2kYLK2fvPK5gQkgnWMYvZ8ieaxKofDjxL3scZiEYfi/yW2nJTiKV2awcWEdA==", - "path": "system.io.hashing/9.0.10", - "hashPath": "system.io.hashing.9.0.10.nupkg.sha512" - }, - "System.Reactive/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", - "path": "system.reactive/6.0.1", - "hashPath": "system.reactive.6.0.1.nupkg.sha512" - }, - "FileProcessing.Application/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Infrastructure/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.dll b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.dll deleted file mode 100644 index 9561a2d..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.exe b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.exe deleted file mode 100644 index ae9e48c..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.exe and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.pdb b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.pdb deleted file mode 100644 index 492c3a6..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.pdb and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.runtimeconfig.json b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.runtimeconfig.json deleted file mode 100644 index bf15a00..0000000 --- a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.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/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.staticwebassets.endpoints.json b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.staticwebassets.endpoints.json deleted file mode 100644 index 5576e88..0000000 --- a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Api.staticwebassets.endpoints.json +++ /dev/null @@ -1 +0,0 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Application.dll b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Application.dll deleted file mode 100644 index 5600ec1..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Application.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Application.pdb b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Application.pdb deleted file mode 100644 index 2118379..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Application.pdb and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Contracts.dll b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Contracts.dll deleted file mode 100644 index 36b4f21..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Contracts.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Contracts.pdb b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Contracts.pdb deleted file mode 100644 index 9b799b5..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Contracts.pdb and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Domain.dll b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Domain.dll deleted file mode 100644 index 88c7b60..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Domain.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Domain.pdb b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Domain.pdb deleted file mode 100644 index 646827e..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Domain.pdb and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Infrastructure.dll b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Infrastructure.dll deleted file mode 100644 index 7e9fc6d..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Infrastructure.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Infrastructure.pdb b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Infrastructure.pdb deleted file mode 100644 index 3aeb5a8..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Infrastructure.pdb and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Shared.dll b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Shared.dll deleted file mode 100644 index 2ffdd5c..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Shared.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Shared.pdb b/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Shared.pdb deleted file mode 100644 index 3b07c6b..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FileProcessing.Shared.pdb and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FluentValidation.DependencyInjectionExtensions.dll b/src/FileProcessing.Api/bin/Debug/net10.0/FluentValidation.DependencyInjectionExtensions.dll deleted file mode 100644 index f6a525d..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FluentValidation.DependencyInjectionExtensions.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/FluentValidation.dll b/src/FileProcessing.Api/bin/Debug/net10.0/FluentValidation.dll deleted file mode 100644 index aab1163..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/FluentValidation.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.AspNetCore.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.AspNetCore.dll deleted file mode 100644 index 633988f..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.AspNetCore.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.Core.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.Core.dll deleted file mode 100644 index dc0a098..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.Core.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.NetCore.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.NetCore.dll deleted file mode 100644 index b3adfcb..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.NetCore.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.PostgreSql.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.PostgreSql.dll deleted file mode 100644 index 7bda29f..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Hangfire.PostgreSql.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/MediatR.Contracts.dll b/src/FileProcessing.Api/bin/Debug/net10.0/MediatR.Contracts.dll deleted file mode 100644 index 32bc7c1..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/MediatR.Contracts.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/MediatR.dll b/src/FileProcessing.Api/bin/Debug/net10.0/MediatR.dll deleted file mode 100644 index f59b1f0..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/MediatR.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll deleted file mode 100644 index d6dda11..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index 9aa1bb0..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index fe7506c..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index b15230a..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll deleted file mode 100644 index dae1950..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.dll deleted file mode 100644 index 272050d..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index f85ae59..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 4c4d3ab..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index 170078a..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll deleted file mode 100644 index 6c736d2..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll deleted file mode 100644 index 9f30508..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 009ce65..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.OpenApi.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.OpenApi.dll deleted file mode 100644 index a9c31bf..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Microsoft.OpenApi.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Minio.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Minio.dll deleted file mode 100644 index 46162a1..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Minio.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Newtonsoft.Json.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Newtonsoft.Json.dll deleted file mode 100644 index 5813d8c..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll deleted file mode 100644 index afdfe8d..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Npgsql.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Npgsql.dll deleted file mode 100644 index 1207ef0..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Npgsql.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll b/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll deleted file mode 100644 index 2ba5dcc..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Api.dll b/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Api.dll deleted file mode 100644 index 56a63a5..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Api.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll b/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll deleted file mode 100644 index 47a5a5d..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll b/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll deleted file mode 100644 index 58aa298..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Extensions.Hosting.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll b/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll deleted file mode 100644 index 8de005c..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll b/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll deleted file mode 100644 index 7dff026..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Http.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll b/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll deleted file mode 100644 index e52a185..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.Instrumentation.Runtime.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.dll b/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.dll deleted file mode 100644 index fdac676..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/OpenTelemetry.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Pipelines.Sockets.Unofficial.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Pipelines.Sockets.Unofficial.dll deleted file mode 100644 index c5b223d..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Pipelines.Sockets.Unofficial.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/RabbitMQ.Client.dll b/src/FileProcessing.Api/bin/Debug/net10.0/RabbitMQ.Client.dll deleted file mode 100644 index cd5eb51..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/RabbitMQ.Client.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.AspNetCore.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.AspNetCore.dll deleted file mode 100644 index 6f50f9e..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.AspNetCore.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Extensions.Hosting.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Extensions.Hosting.dll deleted file mode 100644 index b050a9b..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Extensions.Hosting.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Extensions.Logging.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Extensions.Logging.dll deleted file mode 100644 index fa270b8..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Extensions.Logging.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Formatting.Compact.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Formatting.Compact.dll deleted file mode 100644 index bbd2122..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Formatting.Compact.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Settings.Configuration.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Settings.Configuration.dll deleted file mode 100644 index b8ffe04..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Settings.Configuration.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Sinks.Console.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Sinks.Console.dll deleted file mode 100644 index 8d0638d..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Sinks.Console.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Sinks.Debug.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Sinks.Debug.dll deleted file mode 100644 index 7c94015..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Sinks.Debug.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Sinks.File.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Sinks.File.dll deleted file mode 100644 index 066c164..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.Sinks.File.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.dll deleted file mode 100644 index de3e99d..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Serilog.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/SixLabors.ImageSharp.dll b/src/FileProcessing.Api/bin/Debug/net10.0/SixLabors.ImageSharp.dll deleted file mode 100644 index 7302493..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/SixLabors.ImageSharp.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/StackExchange.Redis.dll b/src/FileProcessing.Api/bin/Debug/net10.0/StackExchange.Redis.dll deleted file mode 100644 index 62e12df..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/StackExchange.Redis.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Swashbuckle.AspNetCore.Swagger.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Swashbuckle.AspNetCore.Swagger.dll deleted file mode 100644 index d912cb7..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll deleted file mode 100644 index 8db3701..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/src/FileProcessing.Api/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll deleted file mode 100644 index 0dc5213..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/System.IO.Hashing.dll b/src/FileProcessing.Api/bin/Debug/net10.0/System.IO.Hashing.dll deleted file mode 100644 index 4860654..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/System.IO.Hashing.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll b/src/FileProcessing.Api/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index c42b8d7..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/System.Reactive.dll b/src/FileProcessing.Api/bin/Debug/net10.0/System.Reactive.dll deleted file mode 100644 index d6d2efa..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/System.Reactive.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/appsettings.Development.json b/src/FileProcessing.Api/bin/Debug/net10.0/appsettings.Development.json deleted file mode 100644 index 0c208ae..0000000 --- a/src/FileProcessing.Api/bin/Debug/net10.0/appsettings.Development.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/appsettings.json b/src/FileProcessing.Api/bin/Debug/net10.0/appsettings.json deleted file mode 100644 index 788067f..0000000 --- a/src/FileProcessing.Api/bin/Debug/net10.0/appsettings.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ConnectionStrings":{"PostgreSql":"Host=postgres;Port=5432;Database=fileprocessing;Username=fileprocessing;Password=local_dev_password","Redis":"redis:6379"}, - "Authentication":{"JwtKey":"local-development-signing-key-change-me-32-characters","Issuer":"FileProcessing","Audience":"FileProcessing.Client","ApiKey":"local-development-api-key"}, - "FileProcessing":{"MaxFileSizeBytes":104857600,"MaxRetries":5,"AllowedExtensions":[".pdf",".docx",".xlsx",".txt",".png",".jpg",".jpeg",".tif",".tiff"],"AllowedContentTypes":["application/pdf","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","text/plain","image/png","image/jpeg","image/tiff"]}, - "RabbitMq":{"Host":"rabbitmq","UserName":"fileprocessing","Password":"local_dev_password","Queue":"file-processing","Prefetch":4}, - "Minio":{"Endpoint":"minio:9000","AccessKey":"minioadmin","SecretKey":"minioadmin","Bucket":"files","Secure":false}, - "ClamAV":{"Host":"clamav","Port":3310,"TimeoutSeconds":120},"OCR":{"Executable":"tesseract","Language":"eng","TimeoutSeconds":120},"Thumbnails":{"Width":320,"Height":320},"Notifications":{"WebhookUrl":""}, - "Serilog":{"MinimumLevel":"Information","WriteTo":[{"Name":"Console"}]},"OpenTelemetry":{"OtlpEndpoint":"http://otel-collector:4317"},"AllowedHosts":"*" -} diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/ca/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/ca/Hangfire.Core.resources.dll deleted file mode 100644 index 7f2dbb9..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/ca/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/de/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/de/Hangfire.Core.resources.dll deleted file mode 100644 index ff085d7..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/de/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/es/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/es/Hangfire.Core.resources.dll deleted file mode 100644 index 4866aa7..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/es/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/fa/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/fa/Hangfire.Core.resources.dll deleted file mode 100644 index 334edfa..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/fa/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/fr/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/fr/Hangfire.Core.resources.dll deleted file mode 100644 index 0cd2a12..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/fr/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/nb/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/nb/Hangfire.Core.resources.dll deleted file mode 100644 index 9af43d0..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/nb/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/nl/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/nl/Hangfire.Core.resources.dll deleted file mode 100644 index 2deaa1a..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/nl/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/pt-BR/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/pt-BR/Hangfire.Core.resources.dll deleted file mode 100644 index 714102a..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/pt-BR/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/pt-PT/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/pt-PT/Hangfire.Core.resources.dll deleted file mode 100644 index 19815bd..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/pt-PT/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/pt/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/pt/Hangfire.Core.resources.dll deleted file mode 100644 index 1fefe9e..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/pt/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/sv/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/sv/Hangfire.Core.resources.dll deleted file mode 100644 index c40d917..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/sv/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/tr-TR/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/tr-TR/Hangfire.Core.resources.dll deleted file mode 100644 index 09bed8a..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/tr-TR/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/zh-TW/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/zh-TW/Hangfire.Core.resources.dll deleted file mode 100644 index 1d0fa51..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/zh-TW/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/bin/Debug/net10.0/zh/Hangfire.Core.resources.dll b/src/FileProcessing.Api/bin/Debug/net10.0/zh/Hangfire.Core.resources.dll deleted file mode 100644 index 53d47a4..0000000 Binary files a/src/FileProcessing.Api/bin/Debug/net10.0/zh/Hangfire.Core.resources.dll and /dev/null differ diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/FileProcessing.Api/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProc.156A36AD.Up2Date b/src/FileProcessing.Api/obj/Debug/net10.0/FileProc.156A36AD.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.AssemblyInfo.cs b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.AssemblyInfo.cs deleted file mode 100644 index 38b3194..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.AssemblyInfo.cs +++ /dev/null @@ -1,22 +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: System.Reflection.AssemblyCompanyAttribute("FileProcessing.Api")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("FileProcessing.Api")] -[assembly: System.Reflection.AssemblyTitleAttribute("FileProcessing.Api")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.AssemblyInfoInputs.cache b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.AssemblyInfoInputs.cache deleted file mode 100644 index 3645ec8..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -9a9521a82f63698a49f88b463a97db523f8de7fbd9e98d95dd7aa46065abcbd2 diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.GeneratedMSBuildEditorConfig.editorconfig b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index e871e6f..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,24 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.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 = FileProcessing.Api -build_property.RootNamespace = FileProcessing.Api -build_property.ProjectDir = D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.RazorLangVersion = 10.0 -build_property.SupportLocalizedComponentNames = -build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api -build_property._RazorSourceGeneratorDebug = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.GlobalUsings.g.cs b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.GlobalUsings.g.cs deleted file mode 100644 index 5e6145d..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.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/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.MvcApplicationPartsAssemblyInfo.cache b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.MvcApplicationPartsAssemblyInfo.cache deleted file mode 100644 index e69de29..0000000 diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.MvcApplicationPartsAssemblyInfo.cs b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.MvcApplicationPartsAssemblyInfo.cs deleted file mode 100644 index 5c337f8..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.MvcApplicationPartsAssemblyInfo.cs +++ /dev/null @@ -1,16 +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("Swashbuckle.AspNetCore.SwaggerGen")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.assets.cache b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.assets.cache deleted file mode 100644 index fc44061..0000000 Binary files a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.assets.cache and /dev/null differ diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.csproj.AssemblyReference.cache b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.csproj.AssemblyReference.cache deleted file mode 100644 index 9eaa22a..0000000 Binary files a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.csproj.AssemblyReference.cache and /dev/null differ diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.csproj.CoreCompileInputs.cache b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.csproj.CoreCompileInputs.cache deleted file mode 100644 index ebec842..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -cd57c315cc758a1fd066e1b30765c1849a5a43da6ba6601f672e289cc35e8f39 diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.csproj.FileListAbsolute.txt b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.csproj.FileListAbsolute.txt deleted file mode 100644 index d5ff67d..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,109 +0,0 @@ -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProcessing.Api.csproj.AssemblyReference.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\rpswa.dswa.cache.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProcessing.Api.GeneratedMSBuildEditorConfig.editorconfig -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProcessing.Api.AssemblyInfoInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProcessing.Api.AssemblyInfo.cs -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProcessing.Api.csproj.CoreCompileInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProcessing.Api.MvcApplicationPartsAssemblyInfo.cs -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProcessing.Api.MvcApplicationPartsAssemblyInfo.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\appsettings.Development.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\appsettings.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Api.staticwebassets.endpoints.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Api.exe -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Api.deps.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Api.runtimeconfig.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Api.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Api.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\CommunityToolkit.HighPerformance.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Dapper.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FluentValidation.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FluentValidation.DependencyInjectionExtensions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Hangfire.AspNetCore.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Hangfire.Core.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Hangfire.NetCore.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Hangfire.PostgreSql.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\MediatR.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\MediatR.Contracts.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Relational.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.Extensions.DependencyModel.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.IdentityModel.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.IdentityModel.JsonWebTokens.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.IdentityModel.Logging.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.IdentityModel.Protocols.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.IdentityModel.Tokens.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Microsoft.OpenApi.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Minio.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Newtonsoft.Json.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Npgsql.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\OpenTelemetry.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\OpenTelemetry.Api.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\OpenTelemetry.Api.ProviderBuilderExtensions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\OpenTelemetry.Exporter.OpenTelemetryProtocol.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\OpenTelemetry.Extensions.Hosting.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\OpenTelemetry.Instrumentation.AspNetCore.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\OpenTelemetry.Instrumentation.Http.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\OpenTelemetry.Instrumentation.Runtime.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Pipelines.Sockets.Unofficial.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\RabbitMQ.Client.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Serilog.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Serilog.AspNetCore.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Serilog.Extensions.Hosting.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Serilog.Extensions.Logging.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Serilog.Formatting.Compact.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Serilog.Settings.Configuration.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Serilog.Sinks.Console.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Serilog.Sinks.Debug.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Serilog.Sinks.File.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\SixLabors.ImageSharp.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\StackExchange.Redis.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Swashbuckle.AspNetCore.Swagger.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Swashbuckle.AspNetCore.SwaggerGen.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\Swashbuckle.AspNetCore.SwaggerUI.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\System.IdentityModel.Tokens.Jwt.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\System.IO.Hashing.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\System.Reactive.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\ca\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\de\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\es\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\fa\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\fr\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\nb\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\nl\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\pt-BR\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\pt-PT\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\pt\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\sv\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\tr-TR\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\zh-TW\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\zh\Hangfire.Core.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Application.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Contracts.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Domain.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Infrastructure.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Shared.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Application.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Infrastructure.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Contracts.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Domain.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\bin\Debug\net10.0\FileProcessing.Shared.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\rjimswa.dswa.cache.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\rjsmrazor.dswa.cache.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\rjsmcshtml.dswa.cache.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\scopedcss\bundle\FileProcessing.Api.styles.css -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\staticwebassets.build.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\staticwebassets.build.json.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\staticwebassets.development.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\staticwebassets.build.endpoints.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\swae.build.ex.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProc.156A36AD.Up2Date -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProcessing.Api.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\refint\FileProcessing.Api.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProcessing.Api.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\FileProcessing.Api.genruntimeconfig.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Api\obj\Debug\net10.0\ref\FileProcessing.Api.dll diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.dll b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.dll deleted file mode 100644 index 9561a2d..0000000 Binary files a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.dll and /dev/null differ diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.genruntimeconfig.cache b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.genruntimeconfig.cache deleted file mode 100644 index 8df9742..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -3eef34567d582baa24b4bf787d42332f4304d067ceb473b9efd9af62e1dcb4ae diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.pdb b/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.pdb deleted file mode 100644 index 492c3a6..0000000 Binary files a/src/FileProcessing.Api/obj/Debug/net10.0/FileProcessing.Api.pdb and /dev/null differ diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/apphost.exe b/src/FileProcessing.Api/obj/Debug/net10.0/apphost.exe deleted file mode 100644 index ae9e48c..0000000 Binary files a/src/FileProcessing.Api/obj/Debug/net10.0/apphost.exe and /dev/null differ diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/ref/FileProcessing.Api.dll b/src/FileProcessing.Api/obj/Debug/net10.0/ref/FileProcessing.Api.dll deleted file mode 100644 index 4f38cda..0000000 Binary files a/src/FileProcessing.Api/obj/Debug/net10.0/ref/FileProcessing.Api.dll and /dev/null differ diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/refint/FileProcessing.Api.dll b/src/FileProcessing.Api/obj/Debug/net10.0/refint/FileProcessing.Api.dll deleted file mode 100644 index 4f38cda..0000000 Binary files a/src/FileProcessing.Api/obj/Debug/net10.0/refint/FileProcessing.Api.dll and /dev/null differ diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/src/FileProcessing.Api/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json deleted file mode 100644 index 2c30743..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +++ /dev/null @@ -1 +0,0 @@ -{"GlobalPropertiesHash":"MIeZmQC+RGLIld8R39S+hGj18pyO3QTnMEIe3BXYcH4=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["RCrVz4TbSDKPdrHs5EEJQhS8i27QPtImOA/aMYmQtdQ=","JlYKQ/u/NQBdBPYTQtUdWVYtj\u002BRWrlvud0VwXg9fgl8=","fNylDXrLNOHy76rfGDl1sf/gx\u002BM/RoKJ6W50NwgmsiA=","UMDvW/nXhFaI/gd1FfmPMumn8P7siqYIU5rwsAG7mY4=","cVO9Es\u002BDEawOJVx2aMQ/2QofhlcnLKblO9hL/9\u002BdVF4=","OvJNT8n1cWX9NDYRs1mba7Uq5PHZmQxlXvMagnI3g7A="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/src/FileProcessing.Api/obj/Debug/net10.0/rjsmrazor.dswa.cache.json deleted file mode 100644 index 40b889e..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +++ /dev/null @@ -1 +0,0 @@ -{"GlobalPropertiesHash":"j7n+RO1idCmIPHld0oM2zGld6NoszsAjWv4BHIN/8tw=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["RCrVz4TbSDKPdrHs5EEJQhS8i27QPtImOA/aMYmQtdQ=","JlYKQ/u/NQBdBPYTQtUdWVYtj\u002BRWrlvud0VwXg9fgl8=","fNylDXrLNOHy76rfGDl1sf/gx\u002BM/RoKJ6W50NwgmsiA=","UMDvW/nXhFaI/gd1FfmPMumn8P7siqYIU5rwsAG7mY4=","cVO9Es\u002BDEawOJVx2aMQ/2QofhlcnLKblO9hL/9\u002BdVF4=","OvJNT8n1cWX9NDYRs1mba7Uq5PHZmQxlXvMagnI3g7A="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/rpswa.dswa.cache.json b/src/FileProcessing.Api/obj/Debug/net10.0/rpswa.dswa.cache.json deleted file mode 100644 index 0f16e68..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/rpswa.dswa.cache.json +++ /dev/null @@ -1 +0,0 @@ -{"GlobalPropertiesHash":"56Dk0GlVJfUPbIdepoQ+60gbKPR8teHX8cp0806kEY4=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["RCrVz4TbSDKPdrHs5EEJQhS8i27QPtImOA/aMYmQtdQ=","JlYKQ/u/NQBdBPYTQtUdWVYtj\u002BRWrlvud0VwXg9fgl8="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/src/FileProcessing.Api/obj/Debug/net10.0/staticwebassets.build.endpoints.json deleted file mode 100644 index 5576e88..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/staticwebassets.build.endpoints.json +++ /dev/null @@ -1 +0,0 @@ -{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/staticwebassets.build.json b/src/FileProcessing.Api/obj/Debug/net10.0/staticwebassets.build.json deleted file mode 100644 index 87b1a31..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/staticwebassets.build.json +++ /dev/null @@ -1 +0,0 @@ -{"Version":1,"Hash":"yCpOSB7DEYT//tk7aktkuuPQJbU1a/DXb0IRIy9xnMg=","Source":"FileProcessing.Api","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/staticwebassets.build.json.cache b/src/FileProcessing.Api/obj/Debug/net10.0/staticwebassets.build.json.cache deleted file mode 100644 index df9f4be..0000000 --- a/src/FileProcessing.Api/obj/Debug/net10.0/staticwebassets.build.json.cache +++ /dev/null @@ -1 +0,0 @@ -yCpOSB7DEYT//tk7aktkuuPQJbU1a/DXb0IRIy9xnMg= \ No newline at end of file diff --git a/src/FileProcessing.Api/obj/Debug/net10.0/swae.build.ex.cache b/src/FileProcessing.Api/obj/Debug/net10.0/swae.build.ex.cache deleted file mode 100644 index e69de29..0000000 diff --git a/src/FileProcessing.Api/obj/FileProcessing.Api.csproj.nuget.dgspec.json b/src/FileProcessing.Api/obj/FileProcessing.Api.csproj.nuget.dgspec.json deleted file mode 100644 index 43d160a..0000000 --- a/src/FileProcessing.Api/obj/FileProcessing.Api.csproj.nuget.dgspec.json +++ /dev/null @@ -1,2345 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Api\\FileProcessing.Api.csproj": {} - }, - "projects": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Api\\FileProcessing.Api.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Api\\FileProcessing.Api.csproj", - "projectName": "FileProcessing.Api", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Api\\FileProcessing.Api.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Api\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Hangfire.AspNetCore": { - "target": "Package", - "version": "[1.8.22, )" - }, - "Hangfire.PostgreSql": { - "target": "Package", - "version": "[1.20.13, )" - }, - "Microsoft.AspNetCore.Authentication.JwtBearer": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.OpenApi": { - "target": "Package", - "version": "[3.9.0, )" - }, - "Newtonsoft.Json": { - "target": "Package", - "version": "[13.0.4, )" - }, - "OpenTelemetry.Exporter.OpenTelemetryProtocol": { - "target": "Package", - "version": "[1.17.0, )" - }, - "OpenTelemetry.Extensions.Hosting": { - "target": "Package", - "version": "[1.17.0, )" - }, - "OpenTelemetry.Instrumentation.AspNetCore": { - "target": "Package", - "version": "[1.17.0, )" - }, - "OpenTelemetry.Instrumentation.Http": { - "target": "Package", - "version": "[1.17.0, )" - }, - "OpenTelemetry.Instrumentation.Runtime": { - "target": "Package", - "version": "[1.17.0, )" - }, - "Serilog.AspNetCore": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Serilog.Sinks.Console": { - "target": "Package", - "version": "[6.1.1, )" - }, - "Swashbuckle.AspNetCore": { - "target": "Package", - "version": "[10.2.3, )" - } - }, - "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\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.AspNetCore": "(,10.0.32767]", - "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", - "Microsoft.AspNetCore.App": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", - "Microsoft.AspNetCore.Components": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", - "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Identity": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", - "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", - "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", - "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", - "Microsoft.AspNetCore.Session": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", - "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", - "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", - "Microsoft.Extensions.Configuration": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", - "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", - "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Features": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", - "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", - "Microsoft.Extensions.Hosting": "(,10.0.32767]", - "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Http": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", - "Microsoft.Extensions.Localization": "(,10.0.32767]", - "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging": "(,10.0.32767]", - "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", - "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", - "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", - "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", - "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", - "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", - "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", - "Microsoft.Extensions.Options": "(,10.0.32767]", - "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", - "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", - "Microsoft.Extensions.Primitives": "(,10.0.32767]", - "Microsoft.Extensions.Validation": "(,10.0.32767]", - "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", - "Microsoft.JSInterop": "(,10.0.32767]", - "Microsoft.Net.Http.Headers": "(,10.0.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.EventLog": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Cbor": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Cryptography.Xml": "(,10.0.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.RateLimiting": "(,10.0.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "projectName": "FileProcessing.Application", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "FluentValidation.DependencyInjectionExtensions": { - "target": "Package", - "version": "[12.1.1, )" - }, - "MediatR": { - "target": "Package", - "version": "[14.0.0, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions": { - "target": "Package", - "version": "[10.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "projectName": "FileProcessing.Contracts", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "projectName": "FileProcessing.Domain", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj", - "projectName": "FileProcessing.Infrastructure", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Http": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Minio": { - "target": "Package", - "version": "[7.0.0, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - }, - "RabbitMQ.Client": { - "target": "Package", - "version": "[7.2.0, )" - }, - "SixLabors.ImageSharp": { - "target": "Package", - "version": "[3.1.12, )" - }, - "StackExchange.Redis": { - "target": "Package", - "version": "[2.10.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "projectName": "FileProcessing.Shared", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Api/obj/FileProcessing.Api.csproj.nuget.g.props b/src/FileProcessing.Api/obj/FileProcessing.Api.csproj.nuget.g.props deleted file mode 100644 index 93dabe1..0000000 --- a/src/FileProcessing.Api/obj/FileProcessing.Api.csproj.nuget.g.props +++ /dev/null @@ -1,24 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Dell\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - - - - - - - C:\Users\Dell\.nuget\packages\microsoft.extensions.apidescription.server\10.0.0 - - \ No newline at end of file diff --git a/src/FileProcessing.Api/obj/FileProcessing.Api.csproj.nuget.g.targets b/src/FileProcessing.Api/obj/FileProcessing.Api.csproj.nuget.g.targets deleted file mode 100644 index 0c22722..0000000 --- a/src/FileProcessing.Api/obj/FileProcessing.Api.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/FileProcessing.Api/obj/project.assets.json b/src/FileProcessing.Api/obj/project.assets.json deleted file mode 100644 index 03b6f55..0000000 --- a/src/FileProcessing.Api/obj/project.assets.json +++ /dev/null @@ -1,3194 +0,0 @@ -{ - "version": 4, - "targets": { - "net10.0": { - "CommunityToolkit.HighPerformance/8.4.0": { - "type": "package", - "compile": { - "lib/net8.0/CommunityToolkit.HighPerformance.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/CommunityToolkit.HighPerformance.dll": { - "related": ".pdb;.xml" - } - } - }, - "Dapper/2.0.123": { - "type": "package", - "compile": { - "lib/net5.0/Dapper.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Dapper.dll": { - "related": ".xml" - } - } - }, - "FluentValidation/12.1.1": { - "type": "package", - "compile": { - "lib/net8.0/FluentValidation.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/FluentValidation.dll": { - "related": ".xml" - } - } - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "type": "package", - "dependencies": { - "FluentValidation": "12.1.1" - }, - "compile": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "related": ".xml" - } - } - }, - "Hangfire.AspNetCore/1.8.22": { - "type": "package", - "dependencies": { - "Hangfire.NetCore": "[1.8.22]" - }, - "compile": { - "lib/netcoreapp3.0/Hangfire.AspNetCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/Hangfire.AspNetCore.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Hangfire.Core/1.8.22": { - "type": "package", - "dependencies": { - "Newtonsoft.Json": "11.0.1" - }, - "compile": { - "lib/netstandard2.0/Hangfire.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Hangfire.Core.dll": { - "related": ".xml" - } - }, - "resource": { - "lib/netstandard2.0/ca/Hangfire.Core.resources.dll": { - "locale": "ca" - }, - "lib/netstandard2.0/de/Hangfire.Core.resources.dll": { - "locale": "de" - }, - "lib/netstandard2.0/es/Hangfire.Core.resources.dll": { - "locale": "es" - }, - "lib/netstandard2.0/fa/Hangfire.Core.resources.dll": { - "locale": "fa" - }, - "lib/netstandard2.0/fr/Hangfire.Core.resources.dll": { - "locale": "fr" - }, - "lib/netstandard2.0/nb/Hangfire.Core.resources.dll": { - "locale": "nb" - }, - "lib/netstandard2.0/nl/Hangfire.Core.resources.dll": { - "locale": "nl" - }, - "lib/netstandard2.0/pt-BR/Hangfire.Core.resources.dll": { - "locale": "pt-BR" - }, - "lib/netstandard2.0/pt-PT/Hangfire.Core.resources.dll": { - "locale": "pt-PT" - }, - "lib/netstandard2.0/pt/Hangfire.Core.resources.dll": { - "locale": "pt" - }, - "lib/netstandard2.0/sv/Hangfire.Core.resources.dll": { - "locale": "sv" - }, - "lib/netstandard2.0/tr-TR/Hangfire.Core.resources.dll": { - "locale": "tr-TR" - }, - "lib/netstandard2.0/zh-TW/Hangfire.Core.resources.dll": { - "locale": "zh-TW" - }, - "lib/netstandard2.0/zh/Hangfire.Core.resources.dll": { - "locale": "zh" - } - } - }, - "Hangfire.NetCore/1.8.22": { - "type": "package", - "dependencies": { - "Hangfire.Core": "[1.8.22]" - }, - "compile": { - "lib/netstandard2.1/Hangfire.NetCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Hangfire.NetCore.dll": { - "related": ".xml" - } - } - }, - "Hangfire.PostgreSql/1.20.13": { - "type": "package", - "dependencies": { - "Dapper": "2.0.123", - "Hangfire.Core": "1.8.0", - "Npgsql": "6.0.11" - }, - "compile": { - "lib/netstandard2.0/Hangfire.PostgreSql.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Hangfire.PostgreSql.dll": { - "related": ".xml" - } - } - }, - "MediatR/14.0.0": { - "type": "package", - "dependencies": { - "MediatR.Contracts": "[2.0.1, 3.0.0)", - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0" - }, - "compile": { - "lib/net10.0/MediatR.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/MediatR.dll": { - "related": ".xml" - } - } - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" - }, - "compile": { - "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0", - "Microsoft.EntityFrameworkCore.Analyzers": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { - "type": "package" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.ApiDescription.Server/10.0.0": { - "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.DependencyModel/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Protocols/8.0.1": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.0.1" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols": "8.0.1", - "System.IdentityModel.Tokens.Jwt": "8.0.1" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.OpenApi/3.9.0": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - } - }, - "Minio/7.0.0": { - "type": "package", - "dependencies": { - "CommunityToolkit.HighPerformance": "8.4.0", - "System.IO.Hashing": "9.0.4", - "System.Reactive": "6.0.1" - }, - "compile": { - "lib/net8.0/Minio.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/Minio.dll": { - "related": ".pdb;.xml" - } - } - }, - "Newtonsoft.Json/13.0.4": { - "type": "package", - "compile": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "Npgsql/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", - "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", - "Npgsql": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - } - }, - "OpenTelemetry/1.17.0": { - "type": "package", - "dependencies": { - "OpenTelemetry.Api.ProviderBuilderExtensions": "1.17.0" - }, - "compile": { - "lib/net10.0/OpenTelemetry.dll": { - "related": ".dll.sigstore.json;.xml" - } - }, - "runtime": { - "lib/net10.0/OpenTelemetry.dll": { - "related": ".dll.sigstore.json;.xml" - } - } - }, - "OpenTelemetry.Api/1.17.0": { - "type": "package", - "compile": { - "lib/net10.0/OpenTelemetry.Api.dll": { - "related": ".dll.sigstore.json;.xml" - } - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Api.dll": { - "related": ".dll.sigstore.json;.xml" - } - } - }, - "OpenTelemetry.Api.ProviderBuilderExtensions/1.17.0": { - "type": "package", - "dependencies": { - "OpenTelemetry.Api": "1.17.0" - }, - "compile": { - "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { - "related": ".dll.sigstore.json;.xml" - } - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll": { - "related": ".dll.sigstore.json;.xml" - } - } - }, - "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.17.0": { - "type": "package", - "dependencies": { - "OpenTelemetry": "1.17.0" - }, - "compile": { - "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { - "related": ".dll.sigstore.json;.xml" - } - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll": { - "related": ".dll.sigstore.json;.xml" - } - } - }, - "OpenTelemetry.Extensions.Hosting/1.17.0": { - "type": "package", - "dependencies": { - "OpenTelemetry": "1.17.0" - }, - "compile": { - "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { - "related": ".dll.sigstore.json;.xml" - } - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll": { - "related": ".dll.sigstore.json;.xml" - } - } - }, - "OpenTelemetry.Instrumentation.AspNetCore/1.17.0": { - "type": "package", - "dependencies": { - "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.17.0, 2.0.0)" - }, - "compile": { - "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { - "related": ".dll.sigstore.json;.xml" - } - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll": { - "related": ".dll.sigstore.json;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "OpenTelemetry.Instrumentation.Http/1.17.0": { - "type": "package", - "dependencies": { - "OpenTelemetry.Api.ProviderBuilderExtensions": "[1.17.0, 2.0.0)" - }, - "compile": { - "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { - "related": ".dll.sigstore.json;.xml" - } - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll": { - "related": ".dll.sigstore.json;.xml" - } - } - }, - "OpenTelemetry.Instrumentation.Runtime/1.17.0": { - "type": "package", - "dependencies": { - "OpenTelemetry.Api": "[1.17.0, 2.0.0)" - }, - "compile": { - "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { - "related": ".dll.sigstore.json;.xml" - } - }, - "runtime": { - "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll": { - "related": ".dll.sigstore.json;.xml" - } - } - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "type": "package", - "compile": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "related": ".xml" - } - } - }, - "RabbitMQ.Client/7.2.0": { - "type": "package", - "compile": { - "lib/net8.0/RabbitMQ.Client.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/RabbitMQ.Client.dll": { - "related": ".xml" - } - } - }, - "Serilog/4.3.0": { - "type": "package", - "compile": { - "lib/net9.0/Serilog.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Serilog.dll": { - "related": ".xml" - } - }, - "build": { - "build/_._": {} - } - }, - "Serilog.AspNetCore/10.0.0": { - "type": "package", - "dependencies": { - "Serilog": "4.3.0", - "Serilog.Extensions.Hosting": "10.0.0", - "Serilog.Formatting.Compact": "3.0.0", - "Serilog.Settings.Configuration": "10.0.0", - "Serilog.Sinks.Console": "6.1.1", - "Serilog.Sinks.Debug": "3.0.0", - "Serilog.Sinks.File": "7.0.0" - }, - "compile": { - "lib/net10.0/Serilog.AspNetCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Serilog.AspNetCore.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Serilog.Extensions.Hosting/10.0.0": { - "type": "package", - "dependencies": { - "Serilog": "4.3.0", - "Serilog.Extensions.Logging": "10.0.0" - }, - "compile": { - "lib/net10.0/Serilog.Extensions.Hosting.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Serilog.Extensions.Hosting.dll": { - "related": ".xml" - } - } - }, - "Serilog.Extensions.Logging/10.0.0": { - "type": "package", - "dependencies": { - "Serilog": "4.2.0" - }, - "compile": { - "lib/net10.0/Serilog.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Serilog.Extensions.Logging.dll": { - "related": ".xml" - } - } - }, - "Serilog.Formatting.Compact/3.0.0": { - "type": "package", - "dependencies": { - "Serilog": "4.0.0" - }, - "compile": { - "lib/net8.0/Serilog.Formatting.Compact.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Serilog.Formatting.Compact.dll": { - "related": ".xml" - } - } - }, - "Serilog.Settings.Configuration/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyModel": "10.0.0", - "Serilog": "4.3.0" - }, - "compile": { - "lib/net10.0/Serilog.Settings.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Serilog.Settings.Configuration.dll": { - "related": ".xml" - } - } - }, - "Serilog.Sinks.Console/6.1.1": { - "type": "package", - "dependencies": { - "Serilog": "4.0.0" - }, - "compile": { - "lib/net8.0/Serilog.Sinks.Console.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Serilog.Sinks.Console.dll": { - "related": ".xml" - } - } - }, - "Serilog.Sinks.Debug/3.0.0": { - "type": "package", - "dependencies": { - "Serilog": "4.0.0" - }, - "compile": { - "lib/net8.0/Serilog.Sinks.Debug.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Serilog.Sinks.Debug.dll": { - "related": ".xml" - } - } - }, - "Serilog.Sinks.File/7.0.0": { - "type": "package", - "dependencies": { - "Serilog": "4.2.0" - }, - "compile": { - "lib/net9.0/Serilog.Sinks.File.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Serilog.Sinks.File.dll": { - "related": ".xml" - } - } - }, - "SixLabors.ImageSharp/3.1.12": { - "type": "package", - "compile": { - "lib/net6.0/SixLabors.ImageSharp.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/SixLabors.ImageSharp.dll": { - "related": ".xml" - } - }, - "build": { - "build/_._": {} - } - }, - "StackExchange.Redis/2.10.1": { - "type": "package", - "dependencies": { - "Pipelines.Sockets.Unofficial": "2.2.8", - "System.IO.Hashing": "9.0.10" - }, - "compile": { - "lib/net8.0/StackExchange.Redis.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/StackExchange.Redis.dll": { - "related": ".xml" - } - } - }, - "Swashbuckle.AspNetCore/10.2.3": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "10.0.0", - "Swashbuckle.AspNetCore.Swagger": "10.2.3", - "Swashbuckle.AspNetCore.SwaggerGen": "10.2.3", - "Swashbuckle.AspNetCore.SwaggerUI": "10.2.3" - }, - "build": { - "build/Swashbuckle.AspNetCore.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Swashbuckle.AspNetCore.props": {} - } - }, - "Swashbuckle.AspNetCore.Swagger/10.2.3": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "2.7.5" - }, - "compile": { - "lib/net10.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/10.2.3": { - "type": "package", - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "10.2.3" - }, - "compile": { - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/10.2.3": { - "type": "package", - "compile": { - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "System.IdentityModel.Tokens.Jwt/8.0.1": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "8.0.1", - "Microsoft.IdentityModel.Tokens": "8.0.1" - }, - "compile": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - } - }, - "System.IO.Hashing/9.0.10": { - "type": "package", - "compile": { - "lib/net9.0/System.IO.Hashing.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/System.IO.Hashing.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "System.Reactive/6.0.1": { - "type": "package", - "compile": { - "lib/net6.0/System.Reactive.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Reactive.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "FileProcessing.Application/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "FileProcessing.Shared": "1.0.0", - "FluentValidation.DependencyInjectionExtensions": "12.1.1", - "MediatR": "14.0.0" - }, - "compile": { - "bin/placeholder/FileProcessing.Application.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Application.dll": {} - } - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Contracts.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Contracts.dll": {} - } - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Domain.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Domain.dll": {} - } - }, - "FileProcessing.Infrastructure/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "FileProcessing.Application": "1.0.0", - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "Microsoft.EntityFrameworkCore": "10.0.0", - "Minio": "7.0.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "RabbitMQ.Client": "7.2.0", - "SixLabors.ImageSharp": "3.1.12", - "StackExchange.Redis": "2.10.1" - }, - "compile": { - "bin/placeholder/FileProcessing.Infrastructure.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Infrastructure.dll": {} - } - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Shared.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Shared.dll": {} - } - } - } - }, - "libraries": { - "CommunityToolkit.HighPerformance/8.4.0": { - "sha512": "flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg==", - "type": "package", - "path": "communitytoolkit.highperformance/8.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "License.md", - "ThirdPartyNotices.txt", - "communitytoolkit.highperformance.8.4.0.nupkg.sha512", - "communitytoolkit.highperformance.nuspec", - "lib/net7.0/CommunityToolkit.HighPerformance.dll", - "lib/net7.0/CommunityToolkit.HighPerformance.pdb", - "lib/net7.0/CommunityToolkit.HighPerformance.xml", - "lib/net8.0/CommunityToolkit.HighPerformance.dll", - "lib/net8.0/CommunityToolkit.HighPerformance.pdb", - "lib/net8.0/CommunityToolkit.HighPerformance.xml", - "lib/netstandard2.0/CommunityToolkit.HighPerformance.dll", - "lib/netstandard2.0/CommunityToolkit.HighPerformance.pdb", - "lib/netstandard2.0/CommunityToolkit.HighPerformance.xml", - "lib/netstandard2.1/CommunityToolkit.HighPerformance.dll", - "lib/netstandard2.1/CommunityToolkit.HighPerformance.pdb", - "lib/netstandard2.1/CommunityToolkit.HighPerformance.xml" - ] - }, - "Dapper/2.0.123": { - "sha512": "RDFF4rBLLmbpi6pwkY7q/M6UXHRJEOerplDGE5jwEkP/JGJnBauAClYavNKJPW1yOTWRPIyfj4is3EaJxQXILQ==", - "type": "package", - "path": "dapper/2.0.123", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Dapper.png", - "dapper.2.0.123.nupkg.sha512", - "dapper.nuspec", - "lib/net461/Dapper.dll", - "lib/net461/Dapper.xml", - "lib/net5.0/Dapper.dll", - "lib/net5.0/Dapper.xml", - "lib/netstandard2.0/Dapper.dll", - "lib/netstandard2.0/Dapper.xml" - ] - }, - "FluentValidation/12.1.1": { - "sha512": "EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==", - "type": "package", - "path": "fluentvalidation/12.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.12.1.1.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net8.0/FluentValidation.dll", - "lib/net8.0/FluentValidation.xml" - ] - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "sha512": "D0VXh4dtjjX2aQizuaa0g6R8X3U1JaVqJPfGCvLwZX9t/O2h7tkpbitbadQMfwcgSPdDbI2vDxuwRMv/Uf9dHA==", - "type": "package", - "path": "fluentvalidation.dependencyinjectionextensions/12.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512", - "fluentvalidation.dependencyinjectionextensions.nuspec", - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll", - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.xml" - ] - }, - "Hangfire.AspNetCore/1.8.22": { - "sha512": "Ud5ZNnH9q5+3MryiuPTW7baRERN9QYLyX+8muLwH9BqumoE9eWZRxna9RrunYaMVkNGbTUUuwOfSYIvCC222TQ==", - "type": "package", - "path": "hangfire.aspnetcore/1.8.22", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "COPYING", - "COPYING.LESSER", - "LICENSE.md", - "LICENSE_ROYALTYFREE", - "LICENSE_STANDARD", - "NOTICES", - "hangfire.aspnetcore.1.8.22.nupkg.sha512", - "hangfire.aspnetcore.nuspec", - "icon.png", - "lib/net451/Hangfire.AspNetCore.dll", - "lib/net451/Hangfire.AspNetCore.xml", - "lib/net461/Hangfire.AspNetCore.dll", - "lib/net461/Hangfire.AspNetCore.xml", - "lib/netcoreapp3.0/Hangfire.AspNetCore.dll", - "lib/netcoreapp3.0/Hangfire.AspNetCore.xml", - "lib/netstandard1.3/Hangfire.AspNetCore.dll", - "lib/netstandard1.3/Hangfire.AspNetCore.xml", - "lib/netstandard2.0/Hangfire.AspNetCore.dll", - "lib/netstandard2.0/Hangfire.AspNetCore.xml" - ] - }, - "Hangfire.Core/1.8.22": { - "sha512": "fjgEtlfkLNnUcX9IB+fp3gTPtt5G7VJ0PCcoKLEWnXJXn5qTm/mvrm/t3/T+Xj35ZePtbWBm+j2PXE0beFwzbA==", - "type": "package", - "path": "hangfire.core/1.8.22", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "COPYING", - "COPYING.LESSER", - "LICENSE.md", - "LICENSE_ROYALTYFREE", - "LICENSE_STANDARD", - "NOTICES", - "README.md", - "hangfire.core.1.8.22.nupkg.sha512", - "hangfire.core.nuspec", - "icon.png", - "lib/net451/Hangfire.Core.dll", - "lib/net451/Hangfire.Core.xml", - "lib/net451/ca/Hangfire.Core.resources.dll", - "lib/net451/de/Hangfire.Core.resources.dll", - "lib/net451/es/Hangfire.Core.resources.dll", - "lib/net451/fa/Hangfire.Core.resources.dll", - "lib/net451/fr/Hangfire.Core.resources.dll", - "lib/net451/nb/Hangfire.Core.resources.dll", - "lib/net451/nl/Hangfire.Core.resources.dll", - "lib/net451/pt-BR/Hangfire.Core.resources.dll", - "lib/net451/pt-PT/Hangfire.Core.resources.dll", - "lib/net451/pt/Hangfire.Core.resources.dll", - "lib/net451/sv/Hangfire.Core.resources.dll", - "lib/net451/tr-TR/Hangfire.Core.resources.dll", - "lib/net451/zh-TW/Hangfire.Core.resources.dll", - "lib/net451/zh/Hangfire.Core.resources.dll", - "lib/net46/Hangfire.Core.dll", - "lib/net46/Hangfire.Core.xml", - "lib/net46/ca/Hangfire.Core.resources.dll", - "lib/net46/de/Hangfire.Core.resources.dll", - "lib/net46/es/Hangfire.Core.resources.dll", - "lib/net46/fa/Hangfire.Core.resources.dll", - "lib/net46/fr/Hangfire.Core.resources.dll", - "lib/net46/nb/Hangfire.Core.resources.dll", - "lib/net46/nl/Hangfire.Core.resources.dll", - "lib/net46/pt-BR/Hangfire.Core.resources.dll", - "lib/net46/pt-PT/Hangfire.Core.resources.dll", - "lib/net46/pt/Hangfire.Core.resources.dll", - "lib/net46/sv/Hangfire.Core.resources.dll", - "lib/net46/tr-TR/Hangfire.Core.resources.dll", - "lib/net46/zh-TW/Hangfire.Core.resources.dll", - "lib/net46/zh/Hangfire.Core.resources.dll", - "lib/netstandard1.3/Hangfire.Core.dll", - "lib/netstandard1.3/Hangfire.Core.xml", - "lib/netstandard1.3/ca/Hangfire.Core.resources.dll", - "lib/netstandard1.3/de/Hangfire.Core.resources.dll", - "lib/netstandard1.3/es/Hangfire.Core.resources.dll", - "lib/netstandard1.3/fa/Hangfire.Core.resources.dll", - "lib/netstandard1.3/fr/Hangfire.Core.resources.dll", - "lib/netstandard1.3/nb/Hangfire.Core.resources.dll", - "lib/netstandard1.3/nl/Hangfire.Core.resources.dll", - "lib/netstandard1.3/pt-BR/Hangfire.Core.resources.dll", - "lib/netstandard1.3/pt-PT/Hangfire.Core.resources.dll", - "lib/netstandard1.3/pt/Hangfire.Core.resources.dll", - "lib/netstandard1.3/sv/Hangfire.Core.resources.dll", - "lib/netstandard1.3/tr-TR/Hangfire.Core.resources.dll", - "lib/netstandard1.3/zh-TW/Hangfire.Core.resources.dll", - "lib/netstandard1.3/zh/Hangfire.Core.resources.dll", - "lib/netstandard2.0/Hangfire.Core.dll", - "lib/netstandard2.0/Hangfire.Core.xml", - "lib/netstandard2.0/ca/Hangfire.Core.resources.dll", - "lib/netstandard2.0/de/Hangfire.Core.resources.dll", - "lib/netstandard2.0/es/Hangfire.Core.resources.dll", - "lib/netstandard2.0/fa/Hangfire.Core.resources.dll", - "lib/netstandard2.0/fr/Hangfire.Core.resources.dll", - "lib/netstandard2.0/nb/Hangfire.Core.resources.dll", - "lib/netstandard2.0/nl/Hangfire.Core.resources.dll", - "lib/netstandard2.0/pt-BR/Hangfire.Core.resources.dll", - "lib/netstandard2.0/pt-PT/Hangfire.Core.resources.dll", - "lib/netstandard2.0/pt/Hangfire.Core.resources.dll", - "lib/netstandard2.0/sv/Hangfire.Core.resources.dll", - "lib/netstandard2.0/tr-TR/Hangfire.Core.resources.dll", - "lib/netstandard2.0/zh-TW/Hangfire.Core.resources.dll", - "lib/netstandard2.0/zh/Hangfire.Core.resources.dll" - ] - }, - "Hangfire.NetCore/1.8.22": { - "sha512": "I7LiUHpC3ks7k+vLFOdwwCwDHxT83H+Mv6bT+7vkI1SLOc4Vwv2zOWdeeN1K86vddu7R36ho+eKP0gvfYlSZjg==", - "type": "package", - "path": "hangfire.netcore/1.8.22", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "COPYING", - "COPYING.LESSER", - "LICENSE.md", - "LICENSE_ROYALTYFREE", - "LICENSE_STANDARD", - "NOTICES", - "hangfire.netcore.1.8.22.nupkg.sha512", - "hangfire.netcore.nuspec", - "icon.png", - "lib/net451/Hangfire.NetCore.dll", - "lib/net451/Hangfire.NetCore.xml", - "lib/net461/Hangfire.NetCore.dll", - "lib/net461/Hangfire.NetCore.xml", - "lib/netstandard1.3/Hangfire.NetCore.dll", - "lib/netstandard1.3/Hangfire.NetCore.xml", - "lib/netstandard2.0/Hangfire.NetCore.dll", - "lib/netstandard2.0/Hangfire.NetCore.xml", - "lib/netstandard2.1/Hangfire.NetCore.dll", - "lib/netstandard2.1/Hangfire.NetCore.xml" - ] - }, - "Hangfire.PostgreSql/1.20.13": { - "sha512": "+JxVOTQINm/gTNstGYgiJQzjP81lGM86COvaSomSyYbbjDExAcqwc5xflsykMVfBKxMP6C/bH0wWgrlhPS0SMQ==", - "type": "package", - "path": "hangfire.postgresql/1.20.13", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "hangfire.postgresql.1.20.13.nupkg.sha512", - "hangfire.postgresql.nuspec", - "lib/netstandard2.0/Hangfire.PostgreSql.dll", - "lib/netstandard2.0/Hangfire.PostgreSql.xml" - ] - }, - "MediatR/14.0.0": { - "sha512": "r5fwUO6NBvOFKaiMRx/gRrD1MEHHOio5yEdzSLs2OMeD2e9ZKnZaBQM6A6vVBEWJF4VY41vplXmDMOY1YvpqNA==", - "type": "package", - "path": "mediatr/14.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "README.md", - "gradient_128x128.png", - "lib/net10.0/MediatR.dll", - "lib/net10.0/MediatR.xml", - "lib/net462/MediatR.dll", - "lib/net462/MediatR.xml", - "lib/net8.0/MediatR.dll", - "lib/net8.0/MediatR.xml", - "lib/net9.0/MediatR.dll", - "lib/net9.0/MediatR.xml", - "lib/netstandard2.0/MediatR.dll", - "lib/netstandard2.0/MediatR.xml", - "mediatr.14.0.0.nupkg.sha512", - "mediatr.nuspec" - ] - }, - "MediatR.Contracts/2.0.1": { - "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "type": "package", - "path": "mediatr.contracts/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/netstandard2.0/MediatR.Contracts.dll", - "lib/netstandard2.0/MediatR.Contracts.xml", - "mediatr.contracts.2.0.1.nupkg.sha512", - "mediatr.contracts.nuspec" - ] - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { - "sha512": "0BgDfT1GoZnzjJOBwx5vFMK5JtqsTEas9pCEwd1/KKxNUAqFmreN60WeUoF+CsmSd9tOQuqWedvdBo/QqHuNTQ==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.jwtbearer/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", - "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", - "microsoft.aspnetcore.authentication.jwtbearer.10.0.0.nupkg.sha512", - "microsoft.aspnetcore.authentication.jwtbearer.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "sha512": "hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", - "type": "package", - "path": "microsoft.entityframeworkcore/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", - "lib/net10.0/Microsoft.EntityFrameworkCore.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "sha512": "C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { - "sha512": "TxHQq0kn0tpYs2ljeRl8jtmWk720B0nteqI6mAZM77HWJpYT9Zj8SkkBBlj8K3Yeq18a6NBjz6YutE+shEk4Ag==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "docs/PACKAGE.md", - "microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "sha512": "A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.ApiDescription.Server/10.0.0": { - "sha512": "NCWCGiwRwje8773yzPQhvucYnnfeR+ZoB1VRIrIMp4uaeUNw7jvEPHij3HIbwCDuNCrNcphA00KSAR9yD9qmbg==", - "type": "package", - "path": "microsoft.extensions.apidescription.server/10.0.0", - "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.10.0.0.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/net10.0/GetDocument.Insider.deps.json", - "tools/net10.0/GetDocument.Insider.dll", - "tools/net10.0/GetDocument.Insider.exe", - "tools/net10.0/GetDocument.Insider.runtimeconfig.json", - "tools/net10.0/Microsoft.AspNetCore.Connections.Abstractions.dll", - "tools/net10.0/Microsoft.AspNetCore.Connections.Abstractions.xml", - "tools/net10.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", - "tools/net10.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", - "tools/net10.0/Microsoft.AspNetCore.Http.Features.dll", - "tools/net10.0/Microsoft.AspNetCore.Http.Features.xml", - "tools/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "tools/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "tools/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "tools/net10.0/Microsoft.Extensions.Features.dll", - "tools/net10.0/Microsoft.Extensions.Features.xml", - "tools/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "tools/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll", - "tools/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", - "tools/net10.0/Microsoft.Extensions.Options.dll", - "tools/net10.0/Microsoft.Extensions.Primitives.dll", - "tools/net10.0/Microsoft.Net.Http.Headers.dll", - "tools/net10.0/Microsoft.Net.Http.Headers.xml", - "tools/net10.0/Microsoft.OpenApi.dll", - "tools/net462-x86/GetDocument.Insider.exe", - "tools/net462-x86/GetDocument.Insider.exe.config", - "tools/net462-x86/Microsoft.Bcl.AsyncInterfaces.dll", - "tools/net462-x86/Microsoft.OpenApi.dll", - "tools/net462-x86/Microsoft.Win32.Primitives.dll", - "tools/net462-x86/System.AppContext.dll", - "tools/net462-x86/System.Buffers.dll", - "tools/net462-x86/System.Collections.Concurrent.dll", - "tools/net462-x86/System.Collections.NonGeneric.dll", - "tools/net462-x86/System.Collections.Specialized.dll", - "tools/net462-x86/System.Collections.dll", - "tools/net462-x86/System.ComponentModel.EventBasedAsync.dll", - "tools/net462-x86/System.ComponentModel.Primitives.dll", - "tools/net462-x86/System.ComponentModel.TypeConverter.dll", - "tools/net462-x86/System.ComponentModel.dll", - "tools/net462-x86/System.Console.dll", - "tools/net462-x86/System.Data.Common.dll", - "tools/net462-x86/System.Diagnostics.Contracts.dll", - "tools/net462-x86/System.Diagnostics.Debug.dll", - "tools/net462-x86/System.Diagnostics.DiagnosticSource.dll", - "tools/net462-x86/System.Diagnostics.FileVersionInfo.dll", - "tools/net462-x86/System.Diagnostics.Process.dll", - "tools/net462-x86/System.Diagnostics.StackTrace.dll", - "tools/net462-x86/System.Diagnostics.TextWriterTraceListener.dll", - "tools/net462-x86/System.Diagnostics.Tools.dll", - "tools/net462-x86/System.Diagnostics.TraceSource.dll", - "tools/net462-x86/System.Diagnostics.Tracing.dll", - "tools/net462-x86/System.Drawing.Primitives.dll", - "tools/net462-x86/System.Dynamic.Runtime.dll", - "tools/net462-x86/System.Globalization.Calendars.dll", - "tools/net462-x86/System.Globalization.Extensions.dll", - "tools/net462-x86/System.Globalization.dll", - "tools/net462-x86/System.IO.Compression.ZipFile.dll", - "tools/net462-x86/System.IO.Compression.dll", - "tools/net462-x86/System.IO.FileSystem.DriveInfo.dll", - "tools/net462-x86/System.IO.FileSystem.Primitives.dll", - "tools/net462-x86/System.IO.FileSystem.Watcher.dll", - "tools/net462-x86/System.IO.FileSystem.dll", - "tools/net462-x86/System.IO.IsolatedStorage.dll", - "tools/net462-x86/System.IO.MemoryMappedFiles.dll", - "tools/net462-x86/System.IO.Pipes.dll", - "tools/net462-x86/System.IO.UnmanagedMemoryStream.dll", - "tools/net462-x86/System.IO.dll", - "tools/net462-x86/System.Linq.Expressions.dll", - "tools/net462-x86/System.Linq.Parallel.dll", - "tools/net462-x86/System.Linq.Queryable.dll", - "tools/net462-x86/System.Linq.dll", - "tools/net462-x86/System.Memory.dll", - "tools/net462-x86/System.Net.Http.dll", - "tools/net462-x86/System.Net.NameResolution.dll", - "tools/net462-x86/System.Net.NetworkInformation.dll", - "tools/net462-x86/System.Net.Ping.dll", - "tools/net462-x86/System.Net.Primitives.dll", - "tools/net462-x86/System.Net.Requests.dll", - "tools/net462-x86/System.Net.Security.dll", - "tools/net462-x86/System.Net.Sockets.dll", - "tools/net462-x86/System.Net.WebHeaderCollection.dll", - "tools/net462-x86/System.Net.WebSockets.Client.dll", - "tools/net462-x86/System.Net.WebSockets.dll", - "tools/net462-x86/System.Numerics.Vectors.dll", - "tools/net462-x86/System.ObjectModel.dll", - "tools/net462-x86/System.Reflection.Extensions.dll", - "tools/net462-x86/System.Reflection.Primitives.dll", - "tools/net462-x86/System.Reflection.dll", - "tools/net462-x86/System.Resources.Reader.dll", - "tools/net462-x86/System.Resources.ResourceManager.dll", - "tools/net462-x86/System.Resources.Writer.dll", - "tools/net462-x86/System.Runtime.CompilerServices.Unsafe.dll", - "tools/net462-x86/System.Runtime.CompilerServices.VisualC.dll", - "tools/net462-x86/System.Runtime.Extensions.dll", - "tools/net462-x86/System.Runtime.Handles.dll", - "tools/net462-x86/System.Runtime.InteropServices.RuntimeInformation.dll", - "tools/net462-x86/System.Runtime.InteropServices.dll", - "tools/net462-x86/System.Runtime.Numerics.dll", - "tools/net462-x86/System.Runtime.Serialization.Formatters.dll", - "tools/net462-x86/System.Runtime.Serialization.Json.dll", - "tools/net462-x86/System.Runtime.Serialization.Primitives.dll", - "tools/net462-x86/System.Runtime.Serialization.Xml.dll", - "tools/net462-x86/System.Runtime.dll", - "tools/net462-x86/System.Security.Claims.dll", - "tools/net462-x86/System.Security.Cryptography.Algorithms.dll", - "tools/net462-x86/System.Security.Cryptography.Csp.dll", - "tools/net462-x86/System.Security.Cryptography.Encoding.dll", - "tools/net462-x86/System.Security.Cryptography.Primitives.dll", - "tools/net462-x86/System.Security.Cryptography.X509Certificates.dll", - "tools/net462-x86/System.Security.Principal.dll", - "tools/net462-x86/System.Security.SecureString.dll", - "tools/net462-x86/System.Text.Encoding.Extensions.dll", - "tools/net462-x86/System.Text.Encoding.dll", - "tools/net462-x86/System.Text.Encodings.Web.dll", - "tools/net462-x86/System.Text.Json.dll", - "tools/net462-x86/System.Text.RegularExpressions.dll", - "tools/net462-x86/System.Threading.Overlapped.dll", - "tools/net462-x86/System.Threading.Tasks.Extensions.dll", - "tools/net462-x86/System.Threading.Tasks.Parallel.dll", - "tools/net462-x86/System.Threading.Tasks.dll", - "tools/net462-x86/System.Threading.Thread.dll", - "tools/net462-x86/System.Threading.ThreadPool.dll", - "tools/net462-x86/System.Threading.Timer.dll", - "tools/net462-x86/System.Threading.dll", - "tools/net462-x86/System.ValueTuple.dll", - "tools/net462-x86/System.Xml.ReaderWriter.dll", - "tools/net462-x86/System.Xml.XDocument.dll", - "tools/net462-x86/System.Xml.XPath.XDocument.dll", - "tools/net462-x86/System.Xml.XPath.dll", - "tools/net462-x86/System.Xml.XmlDocument.dll", - "tools/net462-x86/System.Xml.XmlSerializer.dll", - "tools/net462-x86/netstandard.dll", - "tools/net462/GetDocument.Insider.exe", - "tools/net462/GetDocument.Insider.exe.config", - "tools/net462/Microsoft.Bcl.AsyncInterfaces.dll", - "tools/net462/Microsoft.OpenApi.dll", - "tools/net462/Microsoft.Win32.Primitives.dll", - "tools/net462/System.AppContext.dll", - "tools/net462/System.Buffers.dll", - "tools/net462/System.Collections.Concurrent.dll", - "tools/net462/System.Collections.NonGeneric.dll", - "tools/net462/System.Collections.Specialized.dll", - "tools/net462/System.Collections.dll", - "tools/net462/System.ComponentModel.EventBasedAsync.dll", - "tools/net462/System.ComponentModel.Primitives.dll", - "tools/net462/System.ComponentModel.TypeConverter.dll", - "tools/net462/System.ComponentModel.dll", - "tools/net462/System.Console.dll", - "tools/net462/System.Data.Common.dll", - "tools/net462/System.Diagnostics.Contracts.dll", - "tools/net462/System.Diagnostics.Debug.dll", - "tools/net462/System.Diagnostics.DiagnosticSource.dll", - "tools/net462/System.Diagnostics.FileVersionInfo.dll", - "tools/net462/System.Diagnostics.Process.dll", - "tools/net462/System.Diagnostics.StackTrace.dll", - "tools/net462/System.Diagnostics.TextWriterTraceListener.dll", - "tools/net462/System.Diagnostics.Tools.dll", - "tools/net462/System.Diagnostics.TraceSource.dll", - "tools/net462/System.Diagnostics.Tracing.dll", - "tools/net462/System.Drawing.Primitives.dll", - "tools/net462/System.Dynamic.Runtime.dll", - "tools/net462/System.Globalization.Calendars.dll", - "tools/net462/System.Globalization.Extensions.dll", - "tools/net462/System.Globalization.dll", - "tools/net462/System.IO.Compression.ZipFile.dll", - "tools/net462/System.IO.Compression.dll", - "tools/net462/System.IO.FileSystem.DriveInfo.dll", - "tools/net462/System.IO.FileSystem.Primitives.dll", - "tools/net462/System.IO.FileSystem.Watcher.dll", - "tools/net462/System.IO.FileSystem.dll", - "tools/net462/System.IO.IsolatedStorage.dll", - "tools/net462/System.IO.MemoryMappedFiles.dll", - "tools/net462/System.IO.Pipes.dll", - "tools/net462/System.IO.UnmanagedMemoryStream.dll", - "tools/net462/System.IO.dll", - "tools/net462/System.Linq.Expressions.dll", - "tools/net462/System.Linq.Parallel.dll", - "tools/net462/System.Linq.Queryable.dll", - "tools/net462/System.Linq.dll", - "tools/net462/System.Memory.dll", - "tools/net462/System.Net.Http.dll", - "tools/net462/System.Net.NameResolution.dll", - "tools/net462/System.Net.NetworkInformation.dll", - "tools/net462/System.Net.Ping.dll", - "tools/net462/System.Net.Primitives.dll", - "tools/net462/System.Net.Requests.dll", - "tools/net462/System.Net.Security.dll", - "tools/net462/System.Net.Sockets.dll", - "tools/net462/System.Net.WebHeaderCollection.dll", - "tools/net462/System.Net.WebSockets.Client.dll", - "tools/net462/System.Net.WebSockets.dll", - "tools/net462/System.Numerics.Vectors.dll", - "tools/net462/System.ObjectModel.dll", - "tools/net462/System.Reflection.Extensions.dll", - "tools/net462/System.Reflection.Primitives.dll", - "tools/net462/System.Reflection.dll", - "tools/net462/System.Resources.Reader.dll", - "tools/net462/System.Resources.ResourceManager.dll", - "tools/net462/System.Resources.Writer.dll", - "tools/net462/System.Runtime.CompilerServices.Unsafe.dll", - "tools/net462/System.Runtime.CompilerServices.VisualC.dll", - "tools/net462/System.Runtime.Extensions.dll", - "tools/net462/System.Runtime.Handles.dll", - "tools/net462/System.Runtime.InteropServices.RuntimeInformation.dll", - "tools/net462/System.Runtime.InteropServices.dll", - "tools/net462/System.Runtime.Numerics.dll", - "tools/net462/System.Runtime.Serialization.Formatters.dll", - "tools/net462/System.Runtime.Serialization.Json.dll", - "tools/net462/System.Runtime.Serialization.Primitives.dll", - "tools/net462/System.Runtime.Serialization.Xml.dll", - "tools/net462/System.Runtime.dll", - "tools/net462/System.Security.Claims.dll", - "tools/net462/System.Security.Cryptography.Algorithms.dll", - "tools/net462/System.Security.Cryptography.Csp.dll", - "tools/net462/System.Security.Cryptography.Encoding.dll", - "tools/net462/System.Security.Cryptography.Primitives.dll", - "tools/net462/System.Security.Cryptography.X509Certificates.dll", - "tools/net462/System.Security.Principal.dll", - "tools/net462/System.Security.SecureString.dll", - "tools/net462/System.Text.Encoding.Extensions.dll", - "tools/net462/System.Text.Encoding.dll", - "tools/net462/System.Text.Encodings.Web.dll", - "tools/net462/System.Text.Json.dll", - "tools/net462/System.Text.RegularExpressions.dll", - "tools/net462/System.Threading.Overlapped.dll", - "tools/net462/System.Threading.Tasks.Extensions.dll", - "tools/net462/System.Threading.Tasks.Parallel.dll", - "tools/net462/System.Threading.Tasks.dll", - "tools/net462/System.Threading.Thread.dll", - "tools/net462/System.Threading.ThreadPool.dll", - "tools/net462/System.Threading.Timer.dll", - "tools/net462/System.Threading.dll", - "tools/net462/System.ValueTuple.dll", - "tools/net462/System.Xml.ReaderWriter.dll", - "tools/net462/System.Xml.XDocument.dll", - "tools/net462/System.Xml.XPath.XDocument.dll", - "tools/net462/System.Xml.XPath.dll", - "tools/net462/System.Xml.XmlDocument.dll", - "tools/net462/System.Xml.XmlSerializer.dll", - "tools/net462/netstandard.dll" - ] - }, - "Microsoft.Extensions.DependencyModel/10.0.0": { - "sha512": "RFYJR7APio/BiqdQunRq6DB+nDB6nc2qhHr77mlvZ0q0BT8PubMXN7XicmfzCbrDE/dzhBnUKBRXLTcqUiZDGg==", - "type": "package", - "path": "microsoft.extensions.dependencymodel/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", - "lib/net10.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net10.0/Microsoft.Extensions.DependencyModel.xml", - "lib/net462/Microsoft.Extensions.DependencyModel.dll", - "lib/net462/Microsoft.Extensions.DependencyModel.xml", - "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", - "lib/net9.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net9.0/Microsoft.Extensions.DependencyModel.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", - "microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512", - "microsoft.extensions.dependencymodel.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore/10.0.0": { - "sha512": "ND74bTLuvcrhpEPQU8QZwOrq08zPPj76Ev/60SX1juVKLSSnbknXNoOzNYMPJn3xvhyDHmqU3Hvb/aYV3uvvhQ==", - "type": "package", - "path": "microsoft.extensions.diagnostics.healthchecks.entityframeworkcore/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.dll", - "lib/net10.0/Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore.xml", - "microsoft.extensions.diagnostics.healthchecks.entityframeworkcore.10.0.0.nupkg.sha512", - "microsoft.extensions.diagnostics.healthchecks.entityframeworkcore.nuspec" - ] - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Abstractions.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "sha512": "4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "sha512": "eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "type": "package", - "path": "microsoft.identitymodel.logging/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Logging.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Logging.dll", - "lib/net8.0/Microsoft.IdentityModel.Logging.xml", - "lib/net9.0/Microsoft.IdentityModel.Logging.dll", - "lib/net9.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols/8.0.1": { - "sha512": "uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", - "type": "package", - "path": "microsoft.identitymodel.protocols/8.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net462/Microsoft.IdentityModel.Protocols.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Protocols.dll", - "lib/net8.0/Microsoft.IdentityModel.Protocols.xml", - "lib/net9.0/Microsoft.IdentityModel.Protocols.dll", - "lib/net9.0/Microsoft.IdentityModel.Protocols.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", - "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512", - "microsoft.identitymodel.protocols.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { - "sha512": "AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", - "type": "package", - "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net9.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.8.0.1.nupkg.sha512", - "microsoft.identitymodel.protocols.openidconnect.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "sha512": "lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "type": "package", - "path": "microsoft.identitymodel.tokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Tokens.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Microsoft.OpenApi/3.9.0": { - "sha512": "2sDK6AFY1L/Xg8JvwlaDoPwzGqCftjUgHG2NhCy8gNV/1v4eXziYoH39e/pwC7oTBJInuYUUJqfkRpIMPQ/Fyw==", - "type": "package", - "path": "microsoft.openapi/3.9.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net8.0/Microsoft.OpenApi.dll", - "lib/net8.0/Microsoft.OpenApi.pdb", - "lib/net8.0/Microsoft.OpenApi.xml", - "lib/netstandard2.0/Microsoft.OpenApi.dll", - "lib/netstandard2.0/Microsoft.OpenApi.pdb", - "lib/netstandard2.0/Microsoft.OpenApi.xml", - "microsoft.openapi.3.9.0.nupkg.sha512", - "microsoft.openapi.nuspec" - ] - }, - "Minio/7.0.0": { - "sha512": "GiCD0koYBM8/VCXRkrfSzOtySEmrA2ngceJuxRO5H+/uGodiTX+XPaUHQq9/1DpaeBxWnkmrgqu52dwuZqIYgw==", - "type": "package", - "path": "minio/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "icon.png", - "lib/net8.0/Minio.dll", - "lib/net8.0/Minio.pdb", - "lib/net8.0/Minio.xml", - "lib/netstandard2.0/Minio.dll", - "lib/netstandard2.0/Minio.pdb", - "lib/netstandard2.0/Minio.xml", - "minio.7.0.0.nupkg.sha512", - "minio.nuspec", - "readme.md" - ] - }, - "Newtonsoft.Json/13.0.4": { - "sha512": "pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==", - "type": "package", - "path": "newtonsoft.json/13.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "README.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/net6.0/Newtonsoft.Json.dll", - "lib/net6.0/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.4.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "Npgsql/10.0.0": { - "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "type": "package", - "path": "npgsql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.dll", - "lib/net10.0/Npgsql.xml", - "lib/net8.0/Npgsql.dll", - "lib/net8.0/Npgsql.xml", - "lib/net9.0/Npgsql.dll", - "lib/net9.0/Npgsql.xml", - "npgsql.10.0.0.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", - "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "OpenTelemetry/1.17.0": { - "sha512": "rMLOTftlMlTm7+MSrvXDHnJRjVkROFNKXHZrYjOsX+LankaFG7QSflx7qRRGjoqZoirohnxmJQ7GEb9occO4Gg==", - "type": "package", - "path": "opentelemetry/1.17.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "README.md", - "THIRD-PARTY-NOTICES.TXT", - "lib/net10.0/OpenTelemetry.dll", - "lib/net10.0/OpenTelemetry.dll.sigstore.json", - "lib/net10.0/OpenTelemetry.xml", - "lib/net462/OpenTelemetry.dll", - "lib/net462/OpenTelemetry.dll.sigstore.json", - "lib/net462/OpenTelemetry.xml", - "lib/net8.0/OpenTelemetry.dll", - "lib/net8.0/OpenTelemetry.dll.sigstore.json", - "lib/net8.0/OpenTelemetry.xml", - "lib/net9.0/OpenTelemetry.dll", - "lib/net9.0/OpenTelemetry.dll.sigstore.json", - "lib/net9.0/OpenTelemetry.xml", - "lib/netstandard2.0/OpenTelemetry.dll", - "lib/netstandard2.0/OpenTelemetry.dll.sigstore.json", - "lib/netstandard2.0/OpenTelemetry.xml", - "lib/netstandard2.1/OpenTelemetry.dll", - "lib/netstandard2.1/OpenTelemetry.dll.sigstore.json", - "lib/netstandard2.1/OpenTelemetry.xml", - "opentelemetry-icon-color.png", - "opentelemetry.1.17.0.nupkg.sha512", - "opentelemetry.nuspec" - ] - }, - "OpenTelemetry.Api/1.17.0": { - "sha512": "mSBxzomZgHIJu9CyVNqyDu/n2JHEtqVgfcCD1Br0cV5iLYogjZOMqhlVLt99PEp+0KGBNUR3GXgeOdN2GR3F9g==", - "type": "package", - "path": "opentelemetry.api/1.17.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "README.md", - "THIRD-PARTY-NOTICES.TXT", - "lib/net10.0/OpenTelemetry.Api.dll", - "lib/net10.0/OpenTelemetry.Api.dll.sigstore.json", - "lib/net10.0/OpenTelemetry.Api.xml", - "lib/net462/OpenTelemetry.Api.dll", - "lib/net462/OpenTelemetry.Api.dll.sigstore.json", - "lib/net462/OpenTelemetry.Api.xml", - "lib/net8.0/OpenTelemetry.Api.dll", - "lib/net8.0/OpenTelemetry.Api.dll.sigstore.json", - "lib/net8.0/OpenTelemetry.Api.xml", - "lib/net9.0/OpenTelemetry.Api.dll", - "lib/net9.0/OpenTelemetry.Api.dll.sigstore.json", - "lib/net9.0/OpenTelemetry.Api.xml", - "lib/netstandard2.0/OpenTelemetry.Api.dll", - "lib/netstandard2.0/OpenTelemetry.Api.dll.sigstore.json", - "lib/netstandard2.0/OpenTelemetry.Api.xml", - "opentelemetry-icon-color.png", - "opentelemetry.api.1.17.0.nupkg.sha512", - "opentelemetry.api.nuspec" - ] - }, - "OpenTelemetry.Api.ProviderBuilderExtensions/1.17.0": { - "sha512": "Xgc3Qf9B9TFMFpx6exTdGqMWuYIT2miNzkdMPutVvT9YuMFaEovXWke1Gb6z8NxYaQbbGF38vYLuSg1JCeui5Q==", - "type": "package", - "path": "opentelemetry.api.providerbuilderextensions/1.17.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "README.md", - "THIRD-PARTY-NOTICES.TXT", - "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", - "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", - "lib/net10.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", - "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll", - "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", - "lib/net462/OpenTelemetry.Api.ProviderBuilderExtensions.xml", - "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", - "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", - "lib/net8.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", - "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", - "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", - "lib/net9.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", - "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll", - "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.dll.sigstore.json", - "lib/netstandard2.0/OpenTelemetry.Api.ProviderBuilderExtensions.xml", - "opentelemetry-icon-color.png", - "opentelemetry.api.providerbuilderextensions.1.17.0.nupkg.sha512", - "opentelemetry.api.providerbuilderextensions.nuspec" - ] - }, - "OpenTelemetry.Exporter.OpenTelemetryProtocol/1.17.0": { - "sha512": "R1omQOrQpGlS0Cp5UIr/TAiuEA48JrPlgr1NPV5gESiTU7HhWU+ILe2EBSYb1fKdsSavZ7nZkHcUxAzofPqr2A==", - "type": "package", - "path": "opentelemetry.exporter.opentelemetryprotocol/1.17.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "README.md", - "THIRD-PARTY-NOTICES.TXT", - "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", - "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", - "lib/net10.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", - "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", - "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", - "lib/net462/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", - "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", - "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", - "lib/net8.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", - "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", - "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", - "lib/net9.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", - "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", - "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", - "lib/netstandard2.0/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", - "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll", - "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.dll.sigstore.json", - "lib/netstandard2.1/OpenTelemetry.Exporter.OpenTelemetryProtocol.xml", - "opentelemetry-icon-color.png", - "opentelemetry.exporter.opentelemetryprotocol.1.17.0.nupkg.sha512", - "opentelemetry.exporter.opentelemetryprotocol.nuspec" - ] - }, - "OpenTelemetry.Extensions.Hosting/1.17.0": { - "sha512": "t1OwL/4qgboGMobYVT+UV5zgWnFqCp4Pw8lcsmzh8m2K8PQsTKkyxrC32tqYTMYny3GOW4q5cltE3dTVzLmRew==", - "type": "package", - "path": "opentelemetry.extensions.hosting/1.17.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "README.md", - "THIRD-PARTY-NOTICES.TXT", - "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll", - "lib/net10.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", - "lib/net10.0/OpenTelemetry.Extensions.Hosting.xml", - "lib/net462/OpenTelemetry.Extensions.Hosting.dll", - "lib/net462/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", - "lib/net462/OpenTelemetry.Extensions.Hosting.xml", - "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll", - "lib/net8.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", - "lib/net8.0/OpenTelemetry.Extensions.Hosting.xml", - "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll", - "lib/net9.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", - "lib/net9.0/OpenTelemetry.Extensions.Hosting.xml", - "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll", - "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.dll.sigstore.json", - "lib/netstandard2.0/OpenTelemetry.Extensions.Hosting.xml", - "opentelemetry-icon-color.png", - "opentelemetry.extensions.hosting.1.17.0.nupkg.sha512", - "opentelemetry.extensions.hosting.nuspec" - ] - }, - "OpenTelemetry.Instrumentation.AspNetCore/1.17.0": { - "sha512": "rGbmk1vuy1kvgZmE0ps7Vb99YZvDap6AalrrF60FwnNit1uW/PbeFZj1cpb0T8MPkYmjhBrRJ1/JB6QqXkRjHA==", - "type": "package", - "path": "opentelemetry.instrumentation.aspnetcore/1.17.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "README.md", - "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll", - "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.dll.sigstore.json", - "lib/net10.0/OpenTelemetry.Instrumentation.AspNetCore.xml", - "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll", - "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.dll.sigstore.json", - "lib/net8.0/OpenTelemetry.Instrumentation.AspNetCore.xml", - "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.dll", - "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.dll.sigstore.json", - "lib/netstandard2.0/OpenTelemetry.Instrumentation.AspNetCore.xml", - "opentelemetry-icon-color.png", - "opentelemetry.instrumentation.aspnetcore.1.17.0.nupkg.sha512", - "opentelemetry.instrumentation.aspnetcore.nuspec" - ] - }, - "OpenTelemetry.Instrumentation.Http/1.17.0": { - "sha512": "uTwVtxIJ/xB96wGYTaDsbkJVeCFdUxTwvrlDUn2YJixy0UuKc8DvQMzwKNJMTzNFiiyYO9c40id6tUHTmWs33A==", - "type": "package", - "path": "opentelemetry.instrumentation.http/1.17.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "README.md", - "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll", - "lib/net10.0/OpenTelemetry.Instrumentation.Http.dll.sigstore.json", - "lib/net10.0/OpenTelemetry.Instrumentation.Http.xml", - "lib/net462/OpenTelemetry.Instrumentation.Http.dll", - "lib/net462/OpenTelemetry.Instrumentation.Http.dll.sigstore.json", - "lib/net462/OpenTelemetry.Instrumentation.Http.xml", - "lib/net8.0/OpenTelemetry.Instrumentation.Http.dll", - "lib/net8.0/OpenTelemetry.Instrumentation.Http.dll.sigstore.json", - "lib/net8.0/OpenTelemetry.Instrumentation.Http.xml", - "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.dll", - "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.dll.sigstore.json", - "lib/netstandard2.0/OpenTelemetry.Instrumentation.Http.xml", - "opentelemetry-icon-color.png", - "opentelemetry.instrumentation.http.1.17.0.nupkg.sha512", - "opentelemetry.instrumentation.http.nuspec" - ] - }, - "OpenTelemetry.Instrumentation.Runtime/1.17.0": { - "sha512": "HyYenisDn/xdtyVXdjImsCl+RNC2gq01N0rvSR7tsYAylXR2sxX/YgMsyTajMXA27+r1vB7lNU8cWRhV0fwL+Q==", - "type": "package", - "path": "opentelemetry.instrumentation.runtime/1.17.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "README.md", - "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll", - "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.dll.sigstore.json", - "lib/net10.0/OpenTelemetry.Instrumentation.Runtime.xml", - "lib/net462/OpenTelemetry.Instrumentation.Runtime.dll", - "lib/net462/OpenTelemetry.Instrumentation.Runtime.dll.sigstore.json", - "lib/net462/OpenTelemetry.Instrumentation.Runtime.xml", - "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.dll", - "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.dll.sigstore.json", - "lib/net8.0/OpenTelemetry.Instrumentation.Runtime.xml", - "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.dll", - "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.dll.sigstore.json", - "lib/netstandard2.0/OpenTelemetry.Instrumentation.Runtime.xml", - "opentelemetry-icon-color.png", - "opentelemetry.instrumentation.runtime.1.17.0.nupkg.sha512", - "opentelemetry.instrumentation.runtime.nuspec" - ] - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", - "type": "package", - "path": "pipelines.sockets.unofficial/2.2.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Pipelines.Sockets.Unofficial.dll", - "lib/net461/Pipelines.Sockets.Unofficial.xml", - "lib/net472/Pipelines.Sockets.Unofficial.dll", - "lib/net472/Pipelines.Sockets.Unofficial.xml", - "lib/net5.0/Pipelines.Sockets.Unofficial.dll", - "lib/net5.0/Pipelines.Sockets.Unofficial.xml", - "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", - "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", - "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", - "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", - "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", - "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", - "pipelines.sockets.unofficial.2.2.8.nupkg.sha512", - "pipelines.sockets.unofficial.nuspec" - ] - }, - "RabbitMQ.Client/7.2.0": { - "sha512": "PPQ7cF7lwbhqC4up6en1bTUZlz06YqQwJecOJzsguTtyhNA7oL5uNDZIx/h6ZfcyPZV4V3DYKSCxfm4RUFLcbA==", - "type": "package", - "path": "rabbitmq.client/7.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net8.0/RabbitMQ.Client.dll", - "lib/net8.0/RabbitMQ.Client.xml", - "lib/netstandard2.0/RabbitMQ.Client.dll", - "lib/netstandard2.0/RabbitMQ.Client.xml", - "rabbitmq.client.7.2.0.nupkg.sha512", - "rabbitmq.client.nuspec" - ] - }, - "Serilog/4.3.0": { - "sha512": "+cDryFR0GRhsGOnZSKwaDzRRl4MupvJ42FhCE4zhQRVanX0Jpg6WuCBk59OVhVDPmab1bB+nRykAnykYELA9qQ==", - "type": "package", - "path": "serilog/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "build/Serilog.targets", - "icon.png", - "lib/net462/Serilog.dll", - "lib/net462/Serilog.xml", - "lib/net471/Serilog.dll", - "lib/net471/Serilog.xml", - "lib/net6.0/Serilog.dll", - "lib/net6.0/Serilog.xml", - "lib/net8.0/Serilog.dll", - "lib/net8.0/Serilog.xml", - "lib/net9.0/Serilog.dll", - "lib/net9.0/Serilog.xml", - "lib/netstandard2.0/Serilog.dll", - "lib/netstandard2.0/Serilog.xml", - "serilog.4.3.0.nupkg.sha512", - "serilog.nuspec" - ] - }, - "Serilog.AspNetCore/10.0.0": { - "sha512": "a/cNa1mY4On1oJlfGG1wAvxjp5g7OEzk/Jf/nm7NF9cWoE7KlZw1GldrifUBWm9oKibHkR7Lg/l5jy3y7ACR8w==", - "type": "package", - "path": "serilog.aspnetcore/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net10.0/Serilog.AspNetCore.dll", - "lib/net10.0/Serilog.AspNetCore.xml", - "lib/net462/Serilog.AspNetCore.dll", - "lib/net462/Serilog.AspNetCore.xml", - "lib/net8.0/Serilog.AspNetCore.dll", - "lib/net8.0/Serilog.AspNetCore.xml", - "lib/net9.0/Serilog.AspNetCore.dll", - "lib/net9.0/Serilog.AspNetCore.xml", - "lib/netstandard2.0/Serilog.AspNetCore.dll", - "lib/netstandard2.0/Serilog.AspNetCore.xml", - "lib/netstandard2.1/Serilog.AspNetCore.dll", - "lib/netstandard2.1/Serilog.AspNetCore.xml", - "serilog.aspnetcore.10.0.0.nupkg.sha512", - "serilog.aspnetcore.nuspec" - ] - }, - "Serilog.Extensions.Hosting/10.0.0": { - "sha512": "E7juuIc+gzoGxgzFooFgAV8g9BfiSXNKsUok9NmEpyAXg2odkcPsMa/Yo4axkJRlh0se7mkYQ1GXDaBemR+b6w==", - "type": "package", - "path": "serilog.extensions.hosting/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net10.0/Serilog.Extensions.Hosting.dll", - "lib/net10.0/Serilog.Extensions.Hosting.xml", - "lib/net462/Serilog.Extensions.Hosting.dll", - "lib/net462/Serilog.Extensions.Hosting.xml", - "lib/net8.0/Serilog.Extensions.Hosting.dll", - "lib/net8.0/Serilog.Extensions.Hosting.xml", - "lib/net9.0/Serilog.Extensions.Hosting.dll", - "lib/net9.0/Serilog.Extensions.Hosting.xml", - "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", - "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", - "lib/netstandard2.1/Serilog.Extensions.Hosting.dll", - "lib/netstandard2.1/Serilog.Extensions.Hosting.xml", - "serilog.extensions.hosting.10.0.0.nupkg.sha512", - "serilog.extensions.hosting.nuspec" - ] - }, - "Serilog.Extensions.Logging/10.0.0": { - "sha512": "vx0kABKl2dWbBhhqAfTOk53/i8aV/5VaT3a6il9gn72Wqs2pM7EK2OB6No6xdqK2IaY6Zf9gdjLuK9BVa2rT+Q==", - "type": "package", - "path": "serilog.extensions.logging/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Serilog.Extensions.Logging.dll", - "lib/net10.0/Serilog.Extensions.Logging.xml", - "lib/net462/Serilog.Extensions.Logging.dll", - "lib/net462/Serilog.Extensions.Logging.xml", - "lib/net8.0/Serilog.Extensions.Logging.dll", - "lib/net8.0/Serilog.Extensions.Logging.xml", - "lib/net9.0/Serilog.Extensions.Logging.dll", - "lib/net9.0/Serilog.Extensions.Logging.xml", - "lib/netstandard2.0/Serilog.Extensions.Logging.dll", - "lib/netstandard2.0/Serilog.Extensions.Logging.xml", - "lib/netstandard2.1/Serilog.Extensions.Logging.dll", - "lib/netstandard2.1/Serilog.Extensions.Logging.xml", - "serilog-extension-nuget.png", - "serilog.extensions.logging.10.0.0.nupkg.sha512", - "serilog.extensions.logging.nuspec" - ] - }, - "Serilog.Formatting.Compact/3.0.0": { - "sha512": "wQsv14w9cqlfB5FX2MZpNsTawckN4a8dryuNGbebB/3Nh1pXnROHZov3swtu3Nj5oNG7Ba+xdu7Et/ulAUPanQ==", - "type": "package", - "path": "serilog.formatting.compact/3.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Serilog.Formatting.Compact.dll", - "lib/net462/Serilog.Formatting.Compact.xml", - "lib/net471/Serilog.Formatting.Compact.dll", - "lib/net471/Serilog.Formatting.Compact.xml", - "lib/net6.0/Serilog.Formatting.Compact.dll", - "lib/net6.0/Serilog.Formatting.Compact.xml", - "lib/net8.0/Serilog.Formatting.Compact.dll", - "lib/net8.0/Serilog.Formatting.Compact.xml", - "lib/netstandard2.0/Serilog.Formatting.Compact.dll", - "lib/netstandard2.0/Serilog.Formatting.Compact.xml", - "serilog-extension-nuget.png", - "serilog.formatting.compact.3.0.0.nupkg.sha512", - "serilog.formatting.compact.nuspec" - ] - }, - "Serilog.Settings.Configuration/10.0.0": { - "sha512": "LNq+ibS1sbhTqPV1FIE69/9AJJbfaOhnaqkzcjFy95o+4U+STsta9mi97f1smgXsWYKICDeGUf8xUGzd/52/uA==", - "type": "package", - "path": "serilog.settings.configuration/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net10.0/Serilog.Settings.Configuration.dll", - "lib/net10.0/Serilog.Settings.Configuration.xml", - "lib/net462/Serilog.Settings.Configuration.dll", - "lib/net462/Serilog.Settings.Configuration.xml", - "lib/net8.0/Serilog.Settings.Configuration.dll", - "lib/net8.0/Serilog.Settings.Configuration.xml", - "lib/net9.0/Serilog.Settings.Configuration.dll", - "lib/net9.0/Serilog.Settings.Configuration.xml", - "lib/netstandard2.0/Serilog.Settings.Configuration.dll", - "lib/netstandard2.0/Serilog.Settings.Configuration.xml", - "serilog.settings.configuration.10.0.0.nupkg.sha512", - "serilog.settings.configuration.nuspec" - ] - }, - "Serilog.Sinks.Console/6.1.1": { - "sha512": "8jbqgjUyZlfCuSTaJk6lOca465OndqOz3KZP6Cryt/IqZYybyBu7GP0fE/AXBzrrQB3EBmQntBFAvMVz1COvAA==", - "type": "package", - "path": "serilog.sinks.console/6.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net462/Serilog.Sinks.Console.dll", - "lib/net462/Serilog.Sinks.Console.xml", - "lib/net471/Serilog.Sinks.Console.dll", - "lib/net471/Serilog.Sinks.Console.xml", - "lib/net6.0/Serilog.Sinks.Console.dll", - "lib/net6.0/Serilog.Sinks.Console.xml", - "lib/net8.0/Serilog.Sinks.Console.dll", - "lib/net8.0/Serilog.Sinks.Console.xml", - "lib/netstandard2.0/Serilog.Sinks.Console.dll", - "lib/netstandard2.0/Serilog.Sinks.Console.xml", - "serilog.sinks.console.6.1.1.nupkg.sha512", - "serilog.sinks.console.nuspec" - ] - }, - "Serilog.Sinks.Debug/3.0.0": { - "sha512": "4BzXcdrgRX7wde9PmHuYd9U6YqycCC28hhpKonK7hx0wb19eiuRj16fPcPSVp0o/Y1ipJuNLYQ00R3q2Zs8FDA==", - "type": "package", - "path": "serilog.sinks.debug/3.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net462/Serilog.Sinks.Debug.dll", - "lib/net462/Serilog.Sinks.Debug.xml", - "lib/net471/Serilog.Sinks.Debug.dll", - "lib/net471/Serilog.Sinks.Debug.xml", - "lib/net6.0/Serilog.Sinks.Debug.dll", - "lib/net6.0/Serilog.Sinks.Debug.xml", - "lib/net8.0/Serilog.Sinks.Debug.dll", - "lib/net8.0/Serilog.Sinks.Debug.xml", - "lib/netstandard2.0/Serilog.Sinks.Debug.dll", - "lib/netstandard2.0/Serilog.Sinks.Debug.xml", - "serilog.sinks.debug.3.0.0.nupkg.sha512", - "serilog.sinks.debug.nuspec" - ] - }, - "Serilog.Sinks.File/7.0.0": { - "sha512": "fKL7mXv7qaiNBUC71ssvn/dU0k9t0o45+qm2XgKAlSt19xF+ijjxyA3R6HmCgfKEKwfcfkwWjayuQtRueZFkYw==", - "type": "package", - "path": "serilog.sinks.file/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Serilog.Sinks.File.dll", - "lib/net462/Serilog.Sinks.File.xml", - "lib/net471/Serilog.Sinks.File.dll", - "lib/net471/Serilog.Sinks.File.xml", - "lib/net6.0/Serilog.Sinks.File.dll", - "lib/net6.0/Serilog.Sinks.File.xml", - "lib/net8.0/Serilog.Sinks.File.dll", - "lib/net8.0/Serilog.Sinks.File.xml", - "lib/net9.0/Serilog.Sinks.File.dll", - "lib/net9.0/Serilog.Sinks.File.xml", - "lib/netstandard2.0/Serilog.Sinks.File.dll", - "lib/netstandard2.0/Serilog.Sinks.File.xml", - "serilog-sink-nuget.png", - "serilog.sinks.file.7.0.0.nupkg.sha512", - "serilog.sinks.file.nuspec" - ] - }, - "SixLabors.ImageSharp/3.1.12": { - "sha512": "iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", - "type": "package", - "path": "sixlabors.imagesharp/3.1.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "build/SixLabors.ImageSharp.props", - "lib/net6.0/SixLabors.ImageSharp.dll", - "lib/net6.0/SixLabors.ImageSharp.xml", - "sixlabors.imagesharp.128.png", - "sixlabors.imagesharp.3.1.12.nupkg.sha512", - "sixlabors.imagesharp.nuspec" - ] - }, - "StackExchange.Redis/2.10.1": { - "sha512": "se08WZvD42H3bV4XBW07pupTiE2/72qStKyi/lRqqcijksFWfRtwLTuhFtZ4OX19f4+we/2qruFZBXYJBFc8PQ==", - "type": "package", - "path": "stackexchange.redis/2.10.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net461/StackExchange.Redis.dll", - "lib/net461/StackExchange.Redis.xml", - "lib/net472/StackExchange.Redis.dll", - "lib/net472/StackExchange.Redis.xml", - "lib/net6.0/StackExchange.Redis.dll", - "lib/net6.0/StackExchange.Redis.xml", - "lib/net8.0/StackExchange.Redis.dll", - "lib/net8.0/StackExchange.Redis.xml", - "lib/netcoreapp3.1/StackExchange.Redis.dll", - "lib/netcoreapp3.1/StackExchange.Redis.xml", - "lib/netstandard2.0/StackExchange.Redis.dll", - "lib/netstandard2.0/StackExchange.Redis.xml", - "stackexchange.redis.2.10.1.nupkg.sha512", - "stackexchange.redis.nuspec" - ] - }, - "Swashbuckle.AspNetCore/10.2.3": { - "sha512": "8KNh1RWvofdU6DVLyBs4Z/OpUMnmf8oNvJQc0QxpwySRbi42bwLfdVMMrXZWANg5U5KQGQq1xW6r/hlcqw99tQ==", - "type": "package", - "path": "swashbuckle.aspnetcore/10.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/Swashbuckle.AspNetCore.props", - "buildMultiTargeting/Swashbuckle.AspNetCore.props", - "docs/package-readme.md", - "swashbuckle.aspnetcore.10.2.3.nupkg.sha512", - "swashbuckle.aspnetcore.nuspec" - ] - }, - "Swashbuckle.AspNetCore.Swagger/10.2.3": { - "sha512": "1jUUs3WQnrS0FUtaZPLSy1yYMEwS1zlvDmvQ2/eldPHUANX0LJSLVZecCMgSMdeGiRqeaRrIXLtSz++TCiTMww==", - "type": "package", - "path": "swashbuckle.aspnetcore.swagger/10.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net10.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/net10.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/net10.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/net8.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/net8.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/net9.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/net9.0/Swashbuckle.AspNetCore.Swagger.xml", - "package-readme.md", - "swashbuckle.aspnetcore.swagger.10.2.3.nupkg.sha512", - "swashbuckle.aspnetcore.swagger.nuspec" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/10.2.3": { - "sha512": "y7t4coDRAeFYChmvlMRiH2OjbiRrm9AVIDgt17fQfs3x9PVAI5PiwWYOhg+4F13R4Q36WDc9lqfoOnNa3tNbGg==", - "type": "package", - "path": "swashbuckle.aspnetcore.swaggergen/10.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "package-readme.md", - "swashbuckle.aspnetcore.swaggergen.10.2.3.nupkg.sha512", - "swashbuckle.aspnetcore.swaggergen.nuspec" - ] - }, - "Swashbuckle.AspNetCore.SwaggerUI/10.2.3": { - "sha512": "nthWONRs/FJ4yyG206g1cC52WEG8EqrjuMWjGdR+5XG7lbjFto6NqcI9EMICgVFom/UivIjUVwI76ZHbHwTPfQ==", - "type": "package", - "path": "swashbuckle.aspnetcore.swaggerui/10.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/net10.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "package-readme.md", - "swashbuckle.aspnetcore.swaggerui.10.2.3.nupkg.sha512", - "swashbuckle.aspnetcore.swaggerui.nuspec" - ] - }, - "System.IdentityModel.Tokens.Jwt/8.0.1": { - "sha512": "GJw3bYkWpOgvN3tJo5X4lYUeIFA2HD293FPUhKmp7qxS+g5ywAb34Dnd3cDAFLkcMohy5XTpoaZ4uAHuw0uSPQ==", - "type": "package", - "path": "system.identitymodel.tokens.jwt/8.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net462/System.IdentityModel.Tokens.Jwt.dll", - "lib/net462/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/net8.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml", - "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/net9.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.8.0.1.nupkg.sha512", - "system.identitymodel.tokens.jwt.nuspec" - ] - }, - "System.IO.Hashing/9.0.10": { - "sha512": "9gv5z71xaWWmcGEs4bXdreIhKp2kYLK2fvPK5gQkgnWMYvZ8ieaxKofDjxL3scZiEYfi/yW2nJTiKV2awcWEdA==", - "type": "package", - "path": "system.io.hashing/9.0.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.IO.Hashing.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", - "lib/net462/System.IO.Hashing.dll", - "lib/net462/System.IO.Hashing.xml", - "lib/net8.0/System.IO.Hashing.dll", - "lib/net8.0/System.IO.Hashing.xml", - "lib/net9.0/System.IO.Hashing.dll", - "lib/net9.0/System.IO.Hashing.xml", - "lib/netstandard2.0/System.IO.Hashing.dll", - "lib/netstandard2.0/System.IO.Hashing.xml", - "system.io.hashing.9.0.10.nupkg.sha512", - "system.io.hashing.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Reactive/6.0.1": { - "sha512": "rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", - "type": "package", - "path": "system.reactive/6.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/net6.0-windows10.0.19041/_._", - "build/net6.0/_._", - "buildTransitive/net6.0-windows10.0.19041/_._", - "buildTransitive/net6.0/_._", - "icon.png", - "lib/net472/System.Reactive.dll", - "lib/net472/System.Reactive.xml", - "lib/net6.0-windows10.0.19041/System.Reactive.dll", - "lib/net6.0-windows10.0.19041/System.Reactive.xml", - "lib/net6.0/System.Reactive.dll", - "lib/net6.0/System.Reactive.xml", - "lib/netstandard2.0/System.Reactive.dll", - "lib/netstandard2.0/System.Reactive.xml", - "lib/uap10.0.18362/System.Reactive.dll", - "lib/uap10.0.18362/System.Reactive.pri", - "lib/uap10.0.18362/System.Reactive.xml", - "readme.md", - "system.reactive.6.0.1.nupkg.sha512", - "system.reactive.nuspec" - ] - }, - "FileProcessing.Application/1.0.0": { - "type": "project", - "path": "../FileProcessing.Application/FileProcessing.Application.csproj", - "msbuildProject": "../FileProcessing.Application/FileProcessing.Application.csproj" - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "path": "../FileProcessing.Contracts/FileProcessing.Contracts.csproj", - "msbuildProject": "../FileProcessing.Contracts/FileProcessing.Contracts.csproj" - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "path": "../FileProcessing.Domain/FileProcessing.Domain.csproj", - "msbuildProject": "../FileProcessing.Domain/FileProcessing.Domain.csproj" - }, - "FileProcessing.Infrastructure/1.0.0": { - "type": "project", - "path": "../FileProcessing.Infrastructure/FileProcessing.Infrastructure.csproj", - "msbuildProject": "../FileProcessing.Infrastructure/FileProcessing.Infrastructure.csproj" - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "path": "../FileProcessing.Shared/FileProcessing.Shared.csproj", - "msbuildProject": "../FileProcessing.Shared/FileProcessing.Shared.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "FileProcessing.Application >= 1.0.0", - "FileProcessing.Contracts >= 1.0.0", - "FileProcessing.Infrastructure >= 1.0.0", - "Hangfire.AspNetCore >= 1.8.22", - "Hangfire.PostgreSql >= 1.20.13", - "Microsoft.AspNetCore.Authentication.JwtBearer >= 10.0.0", - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore >= 10.0.0", - "Microsoft.OpenApi >= 3.9.0", - "Newtonsoft.Json >= 13.0.4", - "OpenTelemetry.Exporter.OpenTelemetryProtocol >= 1.17.0", - "OpenTelemetry.Extensions.Hosting >= 1.17.0", - "OpenTelemetry.Instrumentation.AspNetCore >= 1.17.0", - "OpenTelemetry.Instrumentation.Http >= 1.17.0", - "OpenTelemetry.Instrumentation.Runtime >= 1.17.0", - "Serilog.AspNetCore >= 10.0.0", - "Serilog.Sinks.Console >= 6.1.1", - "Swashbuckle.AspNetCore >= 10.2.3" - ] - }, - "packageFolders": { - "C:\\Users\\Dell\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Api\\FileProcessing.Api.csproj", - "projectName": "FileProcessing.Api", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Api\\FileProcessing.Api.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Api\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Hangfire.AspNetCore": { - "target": "Package", - "version": "[1.8.22, )" - }, - "Hangfire.PostgreSql": { - "target": "Package", - "version": "[1.20.13, )" - }, - "Microsoft.AspNetCore.Authentication.JwtBearer": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.OpenApi": { - "target": "Package", - "version": "[3.9.0, )" - }, - "Newtonsoft.Json": { - "target": "Package", - "version": "[13.0.4, )" - }, - "OpenTelemetry.Exporter.OpenTelemetryProtocol": { - "target": "Package", - "version": "[1.17.0, )" - }, - "OpenTelemetry.Extensions.Hosting": { - "target": "Package", - "version": "[1.17.0, )" - }, - "OpenTelemetry.Instrumentation.AspNetCore": { - "target": "Package", - "version": "[1.17.0, )" - }, - "OpenTelemetry.Instrumentation.Http": { - "target": "Package", - "version": "[1.17.0, )" - }, - "OpenTelemetry.Instrumentation.Runtime": { - "target": "Package", - "version": "[1.17.0, )" - }, - "Serilog.AspNetCore": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Serilog.Sinks.Console": { - "target": "Package", - "version": "[6.1.1, )" - }, - "Swashbuckle.AspNetCore": { - "target": "Package", - "version": "[10.2.3, )" - } - }, - "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\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.AspNetCore": "(,10.0.32767]", - "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", - "Microsoft.AspNetCore.App": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", - "Microsoft.AspNetCore.Components": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", - "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", - "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", - "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", - "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", - "Microsoft.AspNetCore.Identity": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", - "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor": "(,10.0.32767]", - "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", - "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", - "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing": "(,10.0.32767]", - "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", - "Microsoft.AspNetCore.Session": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", - "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", - "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", - "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", - "Microsoft.Extensions.Configuration": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", - "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", - "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", - "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Features": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", - "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", - "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", - "Microsoft.Extensions.Hosting": "(,10.0.32767]", - "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Http": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", - "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", - "Microsoft.Extensions.Localization": "(,10.0.32767]", - "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging": "(,10.0.32767]", - "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", - "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", - "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", - "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", - "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", - "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", - "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", - "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", - "Microsoft.Extensions.Options": "(,10.0.32767]", - "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", - "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", - "Microsoft.Extensions.Primitives": "(,10.0.32767]", - "Microsoft.Extensions.Validation": "(,10.0.32767]", - "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", - "Microsoft.JSInterop": "(,10.0.32767]", - "Microsoft.Net.Http.Headers": "(,10.0.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.EventLog": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Cbor": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Cryptography.Xml": "(,10.0.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.RateLimiting": "(,10.0.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Api/obj/project.nuget.cache b/src/FileProcessing.Api/obj/project.nuget.cache deleted file mode 100644 index e4d50fe..0000000 --- a/src/FileProcessing.Api/obj/project.nuget.cache +++ /dev/null @@ -1,66 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "ZegNs6ubTAo=", - "success": true, - "projectFilePath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Api\\FileProcessing.Api.csproj", - "expectedPackageFiles": [ - "C:\\Users\\Dell\\.nuget\\packages\\communitytoolkit.highperformance\\8.4.0\\communitytoolkit.highperformance.8.4.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\dapper\\2.0.123\\dapper.2.0.123.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\fluentvalidation\\12.1.1\\fluentvalidation.12.1.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\12.1.1\\fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\hangfire.aspnetcore\\1.8.22\\hangfire.aspnetcore.1.8.22.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\hangfire.core\\1.8.22\\hangfire.core.1.8.22.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\hangfire.netcore\\1.8.22\\hangfire.netcore.1.8.22.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\hangfire.postgresql\\1.20.13\\hangfire.postgresql.1.20.13.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\mediatr\\14.0.0\\mediatr.14.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\10.0.0\\microsoft.aspnetcore.authentication.jwtbearer.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.0\\microsoft.entityframeworkcore.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.0\\microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\10.0.0\\microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\10.0.0\\microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.apidescription.server\\10.0.0\\microsoft.extensions.apidescription.server.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.dependencymodel\\10.0.0\\microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.diagnostics.healthchecks.entityframeworkcore\\10.0.0\\microsoft.extensions.diagnostics.healthchecks.entityframeworkcore.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.14.0\\microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.protocols\\8.0.1\\microsoft.identitymodel.protocols.8.0.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\8.0.1\\microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.openapi\\3.9.0\\microsoft.openapi.3.9.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\minio\\7.0.0\\minio.7.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\newtonsoft.json\\13.0.4\\newtonsoft.json.13.0.4.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\npgsql\\10.0.0\\npgsql.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\10.0.0\\npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\opentelemetry\\1.17.0\\opentelemetry.1.17.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\opentelemetry.api\\1.17.0\\opentelemetry.api.1.17.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\opentelemetry.api.providerbuilderextensions\\1.17.0\\opentelemetry.api.providerbuilderextensions.1.17.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\opentelemetry.exporter.opentelemetryprotocol\\1.17.0\\opentelemetry.exporter.opentelemetryprotocol.1.17.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\opentelemetry.extensions.hosting\\1.17.0\\opentelemetry.extensions.hosting.1.17.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\opentelemetry.instrumentation.aspnetcore\\1.17.0\\opentelemetry.instrumentation.aspnetcore.1.17.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\opentelemetry.instrumentation.http\\1.17.0\\opentelemetry.instrumentation.http.1.17.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\opentelemetry.instrumentation.runtime\\1.17.0\\opentelemetry.instrumentation.runtime.1.17.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\pipelines.sockets.unofficial\\2.2.8\\pipelines.sockets.unofficial.2.2.8.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\rabbitmq.client\\7.2.0\\rabbitmq.client.7.2.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog\\4.3.0\\serilog.4.3.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.aspnetcore\\10.0.0\\serilog.aspnetcore.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.extensions.hosting\\10.0.0\\serilog.extensions.hosting.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.extensions.logging\\10.0.0\\serilog.extensions.logging.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.formatting.compact\\3.0.0\\serilog.formatting.compact.3.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.settings.configuration\\10.0.0\\serilog.settings.configuration.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.sinks.console\\6.1.1\\serilog.sinks.console.6.1.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.sinks.debug\\3.0.0\\serilog.sinks.debug.3.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.sinks.file\\7.0.0\\serilog.sinks.file.7.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\sixlabors.imagesharp\\3.1.12\\sixlabors.imagesharp.3.1.12.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\stackexchange.redis\\2.10.1\\stackexchange.redis.2.10.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\swashbuckle.aspnetcore\\10.2.3\\swashbuckle.aspnetcore.10.2.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\10.2.3\\swashbuckle.aspnetcore.swagger.10.2.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\10.2.3\\swashbuckle.aspnetcore.swaggergen.10.2.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\10.2.3\\swashbuckle.aspnetcore.swaggerui.10.2.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.0.1\\system.identitymodel.tokens.jwt.8.0.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\system.io.hashing\\9.0.10\\system.io.hashing.9.0.10.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\system.reactive\\6.0.1\\system.reactive.6.0.1.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/src/FileProcessing.Application/Abstractions.cs b/src/FileProcessing.Application/Abstractions.cs index 3131010..54fdcaf 100644 --- a/src/FileProcessing.Application/Abstractions.cs +++ b/src/FileProcessing.Application/Abstractions.cs @@ -3,33 +3,33 @@ namespace FileProcessing.Application; -public sealed record UploadInput(string FileName,string ContentType,long Length,Stream Content,string CorrelationId); -public sealed record OcrOutput(string Text,string Provider); -public sealed record ScanOutput(bool IsInfected,string? Threat); -public sealed record ThumbnailOutput(byte[] Content,string ContentType,int Width,int Height,string Extension); +public sealed record UploadInput(string FileName, string ContentType, long Length, Stream Content, string CorrelationId); +public sealed record OcrOutput(string Text, string Provider); +public sealed record ScanOutput(bool IsInfected, string? Threat); +public sealed record ThumbnailOutput(byte[] Content, string ContentType, int Width, int Height, string Extension); public interface IFileRepository { - Task GetAsync(Guid id,CancellationToken ct); - Task FindByChecksumAsync(string checksum,CancellationToken ct); - Task<(IReadOnlyList Items,int Total)> ListAsync(int page,int pageSize,CancellationToken ct); - Task AddAsync(FileRecord file,CancellationToken ct); - Task AddOcrAsync(OcrResult result,CancellationToken ct); - Task AddScanAsync(VirusScanResult result,CancellationToken ct); - Task AddThumbnailAsync(Thumbnail thumbnail,CancellationToken ct); - Task AddNotificationAsync(Notification notification,CancellationToken ct); - Task AuditAsync(Guid? fileId,string action,string correlationId,string? detail,CancellationToken ct); + Task GetAsync(Guid id, CancellationToken ct); + Task FindByChecksumAsync(string checksum, CancellationToken ct); + Task<(IReadOnlyList Items, int Total)> ListAsync(int page, int pageSize, CancellationToken ct); + Task AddAsync(FileRecord file, CancellationToken ct); + Task AddOcrAsync(OcrResult result, CancellationToken ct); + Task AddScanAsync(VirusScanResult result, CancellationToken ct); + Task AddThumbnailAsync(Thumbnail thumbnail, CancellationToken ct); + Task AddNotificationAsync(Notification notification, CancellationToken ct); + Task AuditAsync(Guid? fileId, string action, string correlationId, string? detail, CancellationToken ct); Task SaveAsync(CancellationToken ct); } -public interface IBlobStorage { Task PutAsync(string objectName,Stream content,string contentType,IReadOnlyDictionary? metadata,CancellationToken ct); Task GetAsync(string objectName,CancellationToken ct); Task DeleteAsync(string objectName,CancellationToken ct); Task PresignedGetAsync(string objectName,TimeSpan lifetime,CancellationToken ct); } -public interface IJobPublisher { Task PublishAsync(FileJob job,byte priority,CancellationToken ct); } -public interface IOcrProvider { Task ExtractAsync(Stream file,string contentType,CancellationToken ct); } -public interface IVirusScanner { Task ScanAsync(Stream file,CancellationToken ct); } -public interface IThumbnailGenerator { Task GenerateAsync(Stream file,string contentType,CancellationToken ct); } -public interface INotificationSender { string Channel { get; } Task SendAsync(NotificationMessage message,CancellationToken ct); } +public interface IBlobStorage { Task PutAsync(string objectName, Stream content, string contentType, IReadOnlyDictionary? metadata, CancellationToken ct); Task GetAsync(string objectName, CancellationToken ct); Task DeleteAsync(string objectName, CancellationToken ct); Task PresignedGetAsync(string objectName, TimeSpan lifetime, CancellationToken ct); } +public interface IJobPublisher { Task PublishAsync(FileJob job, byte priority, CancellationToken ct); } +public interface IOcrProvider { Task ExtractAsync(Stream file, string contentType, CancellationToken ct); } +public interface IVirusScanner { Task ScanAsync(Stream file, CancellationToken ct); } +public interface IThumbnailGenerator { Task GenerateAsync(Stream file, string contentType, CancellationToken ct); } +public interface INotificationSender { string Channel { get; } Task SendAsync(NotificationMessage message, CancellationToken ct); } public interface IFileProcessingService { - Task UploadAsync(UploadInput input,CancellationToken ct); - Task ProcessAsync(FileJob job,CancellationToken ct); - Task RetryAsync(Guid id,string correlationId,CancellationToken ct); + Task UploadAsync(UploadInput input, CancellationToken ct); + Task ProcessAsync(FileJob job, CancellationToken ct); + Task RetryAsync(Guid id, string correlationId, CancellationToken ct); } diff --git a/src/FileProcessing.Application/Class1.cs b/src/FileProcessing.Application/Class1.cs deleted file mode 100644 index cfffde6..0000000 --- a/src/FileProcessing.Application/Class1.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace FileProcessing.Application; - -public class Class1 -{ - -} diff --git a/src/FileProcessing.Application/DependencyInjection.cs b/src/FileProcessing.Application/DependencyInjection.cs index efea724..7d2eed8 100644 --- a/src/FileProcessing.Application/DependencyInjection.cs +++ b/src/FileProcessing.Application/DependencyInjection.cs @@ -1,3 +1,4 @@ using Microsoft.Extensions.DependencyInjection; namespace FileProcessing.Application; -public static class DependencyInjection { public static IServiceCollection AddApplication(this IServiceCollection services,Microsoft.Extensions.Configuration.IConfiguration configuration){services.Configure(configuration.GetSection(FileProcessingOptions.Section));services.AddScoped();return services;} } + +public static class DependencyInjection { public static IServiceCollection AddApplication(this IServiceCollection services, Microsoft.Extensions.Configuration.IConfiguration configuration) { services.Configure(configuration.GetSection(FileProcessingOptions.Section)); services.AddScoped(); return services; } } diff --git a/src/FileProcessing.Application/FileProcessingService.cs b/src/FileProcessing.Application/FileProcessingService.cs index 15681c6..855895a 100644 --- a/src/FileProcessing.Application/FileProcessingService.cs +++ b/src/FileProcessing.Application/FileProcessingService.cs @@ -6,51 +6,53 @@ namespace FileProcessing.Application; public sealed class FileProcessingOptions { - public const string Section="FileProcessing"; - public long MaxFileSizeBytes { get; init; }=104_857_600; - public int MaxRetries { get; init; }=5; - public string[] AllowedExtensions { get; init; }=[".pdf",".docx",".xlsx",".txt",".png",".jpg",".jpeg",".tif",".tiff"]; - public string[] AllowedContentTypes { get; init; }=["application/pdf","application/vnd.openxmlformats-officedocument.wordprocessingml.document","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","text/plain","image/png","image/jpeg","image/tiff"]; + public const string Section = "FileProcessing"; + public long MaxFileSizeBytes { get; init; } = 104_857_600; + public int MaxRetries { get; init; } = 5; + public string[] AllowedExtensions { get; init; } = [".pdf", ".docx", ".xlsx", ".txt", ".png", ".jpg", ".jpeg", ".tif", ".tiff"]; + public string[] AllowedContentTypes { get; init; } = ["application/pdf", "application/vnd.openxmlformats-officedocument.wordprocessingml.document", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "text/plain", "image/png", "image/jpeg", "image/tiff"]; } -public sealed class FileProcessingService(IFileRepository repository,IBlobStorage storage,IJobPublisher publisher,IOcrProvider ocr,IVirusScanner scanner,IThumbnailGenerator thumbnails,IEnumerable senders,Microsoft.Extensions.Options.IOptions options) : IFileProcessingService +public sealed class FileProcessingService(IFileRepository repository, IBlobStorage storage, IJobPublisher publisher, IOcrProvider ocr, IVirusScanner scanner, IThumbnailGenerator thumbnails, IEnumerable senders, Microsoft.Extensions.Options.IOptions options) : IFileProcessingService { - private readonly FileProcessingOptions _options=options.Value; - public async Task UploadAsync(UploadInput input,CancellationToken ct) + private readonly FileProcessingOptions _options = options.Value; + public async Task UploadAsync(UploadInput input, CancellationToken ct) { - var extension=Path.GetExtension(input.FileName).ToLowerInvariant(); - if (!_options.AllowedExtensions.Contains(extension,StringComparer.OrdinalIgnoreCase) || !_options.AllowedContentTypes.Contains(input.ContentType,StringComparer.OrdinalIgnoreCase)) throw new InvalidDataException("Unsupported file type."); - if (input.Length<=0 || input.Length>_options.MaxFileSizeBytes) throw new InvalidDataException("File size is invalid."); - await using var buffered=new MemoryStream(); await input.Content.CopyToAsync(buffered,ct); buffered.Position=0; - var checksum=Convert.ToHexString(await SHA256.HashDataAsync(buffered,ct)).ToLowerInvariant(); buffered.Position=0; - if (await repository.FindByChecksumAsync(checksum,ct) is not null) throw new InvalidOperationException("Duplicate file."); - ValidateSignature(buffered,input.ContentType); buffered.Position=0; - var id=Guid.NewGuid(); var objectName=$"original/{id:N}/{Path.GetFileName(input.FileName)}"; - await storage.PutAsync(objectName,buffered,input.ContentType,new Dictionary{{"checksum",checksum}},ct); - var file=new FileRecord(id,Path.GetFileName(input.FileName),input.ContentType,input.Length,checksum,objectName,DateTimeOffset.UtcNow); + var extension = Path.GetExtension(input.FileName).ToLowerInvariant(); + if (!_options.AllowedExtensions.Contains(extension, StringComparer.OrdinalIgnoreCase) || !_options.AllowedContentTypes.Contains(input.ContentType, StringComparer.OrdinalIgnoreCase)) throw new InvalidDataException("Unsupported file type."); + if (input.Length <= 0 || input.Length > _options.MaxFileSizeBytes) throw new InvalidDataException("File size is invalid."); + var tempPath = Path.Combine(Path.GetTempPath(), $"file-processing-{Guid.NewGuid():N}.upload"); + await using var buffered = new FileStream(tempPath, FileMode.CreateNew, FileAccess.ReadWrite, FileShare.None, 81920, FileOptions.Asynchronous | FileOptions.SequentialScan | FileOptions.DeleteOnClose); + await input.Content.CopyToAsync(buffered, ct); buffered.Position = 0; + var checksum = Convert.ToHexString(await SHA256.HashDataAsync(buffered, ct)).ToLowerInvariant(); buffered.Position = 0; + if (await repository.FindByChecksumAsync(checksum, ct) is not null) throw new InvalidOperationException("Duplicate file."); + ValidateSignature(buffered, input.ContentType); buffered.Position = 0; + var id = Guid.NewGuid(); var objectName = $"original/{id:N}/{Path.GetFileName(input.FileName)}"; + await storage.PutAsync(objectName, buffered, input.ContentType, new Dictionary { { "checksum", checksum } }, ct); + var file = new FileRecord(id, Path.GetFileName(input.FileName), input.ContentType, input.Length, checksum, objectName, DateTimeOffset.UtcNow); file.Transition(ProcessingStatus.Validated); file.Transition(ProcessingStatus.Queued); - await repository.AddAsync(file,ct); await repository.AuditAsync(id,"Upload",input.CorrelationId,checksum,ct); await repository.SaveAsync(ct); - await publisher.PublishAsync(new FileJob(id,input.CorrelationId),5,ct); - return new(id,file.Status.ToString(),checksum); + await repository.AddAsync(file, ct); await repository.AuditAsync(id, "Upload", input.CorrelationId, checksum, ct); await repository.SaveAsync(ct); + await publisher.PublishAsync(new FileJob(id, input.CorrelationId), 5, ct); + return new(id, file.Status.ToString(), checksum); } - public async Task ProcessAsync(FileJob job,CancellationToken ct) + public async Task ProcessAsync(FileJob job, CancellationToken ct) { - var file=await repository.GetAsync(job.FileId,ct) ?? throw new InvalidOperationException("File does not exist."); - if (file.Status==ProcessingStatus.Completed) return; + var file = await repository.GetAsync(job.FileId, ct) ?? throw new InvalidOperationException("File does not exist."); + if (file.Status == ProcessingStatus.Completed) return; try { file.Transition(ProcessingStatus.VirusScanning); await repository.SaveAsync(ct); - await using (var stream=await storage.GetAsync(file.ObjectName,ct)) { var scan=await scanner.ScanAsync(stream,ct); await repository.AddScanAsync(new(file.Id,scan.IsInfected,scan.Threat),ct); if(scan.IsInfected){file.Transition(ProcessingStatus.VirusDetected,scan.Threat);await NotifyAsync(file,"VirusDetected",ct);await repository.SaveAsync(ct);return;} } + await using (var stream = await storage.GetAsync(file.ObjectName, ct)) { var scan = await scanner.ScanAsync(stream, ct); await repository.AddScanAsync(new(file.Id, scan.IsInfected, scan.Threat), ct); if (scan.IsInfected) { file.Transition(ProcessingStatus.VirusDetected, scan.Threat); await NotifyAsync(file, "VirusDetected", ct); await repository.SaveAsync(ct); return; } } file.Transition(ProcessingStatus.VirusClean); file.Transition(ProcessingStatus.OCRProcessing); await repository.SaveAsync(ct); - await using (var stream=await storage.GetAsync(file.ObjectName,ct)) { var result=await ocr.ExtractAsync(stream,file.ContentType,ct); await repository.AddOcrAsync(new(file.Id,result.Text,result.Provider),ct); await using var text=new MemoryStream(System.Text.Encoding.UTF8.GetBytes(result.Text)); await storage.PutAsync($"ocr/{file.Id:N}.txt",text,"text/plain",null,ct); } + await using (var stream = await storage.GetAsync(file.ObjectName, ct)) { var result = await ocr.ExtractAsync(stream, file.ContentType, ct); await repository.AddOcrAsync(new(file.Id, result.Text, result.Provider), ct); await using var text = new MemoryStream(System.Text.Encoding.UTF8.GetBytes(result.Text)); await storage.PutAsync($"ocr/{file.Id:N}.txt", text, "text/plain", null, ct); } file.Transition(ProcessingStatus.OCRCompleted); file.Transition(ProcessingStatus.ThumbnailGenerating); await repository.SaveAsync(ct); - await using (var stream=await storage.GetAsync(file.ObjectName,ct)) { var thumb=await thumbnails.GenerateAsync(stream,file.ContentType,ct); if(thumb is not null){var name=$"thumbnails/{file.Id:N}{thumb.Extension}";await using var content=new MemoryStream(thumb.Content);await storage.PutAsync(name,content,thumb.ContentType,null,ct);await repository.AddThumbnailAsync(new(file.Id,name,thumb.Width,thumb.Height),ct);} } - file.Transition(ProcessingStatus.ThumbnailCompleted); file.Transition(ProcessingStatus.Stored); await NotifyAsync(file,"ProcessingCompleted",ct); file.Transition(ProcessingStatus.NotificationSent); file.Transition(ProcessingStatus.Completed); - await repository.AuditAsync(file.Id,"ProcessingCompleted",job.CorrelationId,null,ct); await repository.SaveAsync(ct); + await using (var stream = await storage.GetAsync(file.ObjectName, ct)) { var thumb = await thumbnails.GenerateAsync(stream, file.ContentType, ct); if (thumb is not null) { var name = $"thumbnails/{file.Id:N}{thumb.Extension}"; await using var content = new MemoryStream(thumb.Content); await storage.PutAsync(name, content, thumb.ContentType, null, ct); await repository.AddThumbnailAsync(new(file.Id, name, thumb.Width, thumb.Height), ct); } } + file.Transition(ProcessingStatus.ThumbnailCompleted); file.Transition(ProcessingStatus.Stored); await NotifyAsync(file, "ProcessingCompleted", ct); file.Transition(ProcessingStatus.NotificationSent); file.Transition(ProcessingStatus.Completed); + await repository.AuditAsync(file.Id, "ProcessingCompleted", job.CorrelationId, null, ct); await repository.SaveAsync(ct); } - catch(Exception ex) when(ex is not OperationCanceledException) { file.Transition(ProcessingStatus.Failed,ex.Message);await repository.AuditAsync(file.Id,"Failure",job.CorrelationId,ex.Message,ct);await repository.SaveAsync(ct);throw; } + catch (Exception ex) when (ex is not OperationCanceledException) { file.Transition(ProcessingStatus.Failed, ex.Message); await repository.AuditAsync(file.Id, "Failure", job.CorrelationId, ex.Message, ct); await repository.SaveAsync(ct); throw; } } - public async Task RetryAsync(Guid id,string correlationId,CancellationToken ct){var file=await repository.GetAsync(id,ct)??throw new KeyNotFoundException();if(file.RetryCount>=_options.MaxRetries)throw new InvalidOperationException("Maximum retries reached.");file.Retry();await repository.AuditAsync(id,"Retry",correlationId,null,ct);await repository.SaveAsync(ct);await publisher.PublishAsync(new(id,correlationId,file.RetryCount),9,ct);} - private async Task NotifyAsync(FileRecord file,string eventName,CancellationToken ct){foreach(var sender in senders){try{await sender.SendAsync(new(file.Id,eventName,file.OriginalName,file.Status.ToString()),ct);await repository.AddNotificationAsync(new(file.Id,sender.Channel,eventName,true,null),ct);}catch(Exception ex){await repository.AddNotificationAsync(new(file.Id,sender.Channel,eventName,false,ex.Message),ct);}}} - private static void ValidateSignature(Stream stream,string type){Span h=stackalloc byte[8];var n=stream.Read(h);stream.Position=0;if(type=="application/pdf"&&(n<4||!h[..4].SequenceEqual("%PDF"u8)))throw new InvalidDataException("Corrupted PDF.");if(type=="image/png"&&(n<8||!h.SequenceEqual(new byte[]{137,80,78,71,13,10,26,10})))throw new InvalidDataException("Corrupted PNG.");if(type=="image/jpeg"&&(n<2||h[0]!=0xFF||h[1]!=0xD8))throw new InvalidDataException("Corrupted JPEG.");if((type.Contains("officedocument",StringComparison.Ordinal))&&(n<2||h[0]!=0x50||h[1]!=0x4B))throw new InvalidDataException("Corrupted Office document.");} + public async Task RetryAsync(Guid id, string correlationId, CancellationToken ct) { var file = await repository.GetAsync(id, ct) ?? throw new KeyNotFoundException(); if (file.RetryCount >= _options.MaxRetries) throw new InvalidOperationException("Maximum retries reached."); file.Retry(); await repository.AuditAsync(id, "Retry", correlationId, null, ct); await repository.SaveAsync(ct); await publisher.PublishAsync(new(id, correlationId, file.RetryCount), 9, ct); } + private async Task NotifyAsync(FileRecord file, string eventName, CancellationToken ct) { foreach (var sender in senders) { try { await sender.SendAsync(new(file.Id, eventName, file.OriginalName, file.Status.ToString()), ct); await repository.AddNotificationAsync(new(file.Id, sender.Channel, eventName, true, null), ct); } catch (Exception ex) { await repository.AddNotificationAsync(new(file.Id, sender.Channel, eventName, false, ex.Message), ct); } } } + private static void ValidateSignature(Stream stream, string type) { Span h = stackalloc byte[8]; var n = stream.Read(h); stream.Position = 0; if (type == "application/pdf" && (n < 4 || !h[..4].SequenceEqual("%PDF"u8))) throw new InvalidDataException("Corrupted PDF."); if (type == "image/png" && (n < 8 || !h.SequenceEqual(new byte[] { 137, 80, 78, 71, 13, 10, 26, 10 }))) throw new InvalidDataException("Corrupted PNG."); if (type == "image/jpeg" && (n < 2 || h[0] != 0xFF || h[1] != 0xD8)) throw new InvalidDataException("Corrupted JPEG."); if ((type.Contains("officedocument", StringComparison.Ordinal)) && (n < 2 || h[0] != 0x50 || h[1] != 0x4B)) throw new InvalidDataException("Corrupted Office document."); } } diff --git a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Application.deps.json b/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Application.deps.json deleted file mode 100644 index d382639..0000000 --- a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Application.deps.json +++ /dev/null @@ -1,356 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "FileProcessing.Application/1.0.0": { - "dependencies": { - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "FileProcessing.Shared": "1.0.0", - "FluentValidation.DependencyInjectionExtensions": "12.1.1", - "MediatR": "14.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "runtime": { - "FileProcessing.Application.dll": {} - } - }, - "FluentValidation/12.1.1": { - "runtime": { - "lib/net8.0/FluentValidation.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.1.1.0" - } - } - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "dependencies": { - "FluentValidation": "12.1.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.1.1.0" - } - } - }, - "MediatR/14.0.0": { - "dependencies": { - "MediatR.Contracts": "2.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0" - }, - "runtime": { - "lib/net10.0/MediatR.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.0.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Options/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Binder": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "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.Tokens/8.14.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "FileProcessing.Contracts/1.0.0": { - "runtime": { - "FileProcessing.Contracts.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Domain/1.0.0": { - "runtime": { - "FileProcessing.Domain.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Shared/1.0.0": { - "runtime": { - "FileProcessing.Shared.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "FileProcessing.Application/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FluentValidation/12.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==", - "path": "fluentvalidation/12.1.1", - "hashPath": "fluentvalidation.12.1.1.nupkg.sha512" - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D0VXh4dtjjX2aQizuaa0g6R8X3U1JaVqJPfGCvLwZX9t/O2h7tkpbitbadQMfwcgSPdDbI2vDxuwRMv/Uf9dHA==", - "path": "fluentvalidation.dependencyinjectionextensions/12.1.1", - "hashPath": "fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512" - }, - "MediatR/14.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r5fwUO6NBvOFKaiMRx/gRrD1MEHHOio5yEdzSLs2OMeD2e9ZKnZaBQM6A6vVBEWJF4VY41vplXmDMOY1YvpqNA==", - "path": "mediatr/14.0.0", - "hashPath": "mediatr.14.0.0.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H4SWETCh/cC5L1WtWchHR6LntGk3rDTTznZMssr4cL8IbDmMWBxY+MOGDc/ASnqNolLKPIWHWeuC1ddiL/iNPw==", - "path": "microsoft.extensions.configuration/10.0.0", - "hashPath": "microsoft.extensions.configuration.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", - "path": "microsoft.extensions.configuration.abstractions/10.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tMF9wNh+hlyYDWB8mrFCQHQmWHlRosol1b/N2Jrefy1bFLnuTlgSYmPyHNmz8xVQgs7DpXytBRWxGhG+mSTp0g==", - "path": "microsoft.extensions.configuration.binder/10.0.0", - "hashPath": "microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", - "path": "microsoft.extensions.logging.abstractions/10.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", - "path": "microsoft.extensions.options/10.0.0", - "hashPath": "microsoft.extensions.options.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tL9cSl3maS5FPzp/3MtlZI21ExWhni0nnUCF8HY4npTsINw45n9SNDbkKXBMtFyUFGSsQep25fHIDN4f/Vp3AQ==", - "path": "microsoft.extensions.options.configurationextensions/10.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", - "path": "microsoft.extensions.primitives/10.0.0", - "hashPath": "microsoft.extensions.primitives.10.0.0.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.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" - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Application.dll b/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Application.dll deleted file mode 100644 index 5600ec1..0000000 Binary files a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Application.dll and /dev/null differ diff --git a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Application.pdb b/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Application.pdb deleted file mode 100644 index 2118379..0000000 Binary files a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Application.pdb and /dev/null differ diff --git a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Contracts.dll b/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Contracts.dll deleted file mode 100644 index 36b4f21..0000000 Binary files a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Contracts.dll and /dev/null differ diff --git a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Contracts.pdb b/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Contracts.pdb deleted file mode 100644 index 9b799b5..0000000 Binary files a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Contracts.pdb and /dev/null differ diff --git a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Domain.dll b/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Domain.dll deleted file mode 100644 index 88c7b60..0000000 Binary files a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Domain.dll and /dev/null differ diff --git a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Domain.pdb b/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Domain.pdb deleted file mode 100644 index 646827e..0000000 Binary files a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Domain.pdb and /dev/null differ diff --git a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Shared.dll b/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Shared.dll deleted file mode 100644 index 2ffdd5c..0000000 Binary files a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Shared.dll and /dev/null differ diff --git a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Shared.pdb b/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Shared.pdb deleted file mode 100644 index 3b07c6b..0000000 Binary files a/src/FileProcessing.Application/bin/Debug/net10.0/FileProcessing.Shared.pdb and /dev/null differ diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/FileProcessing.Application/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/src/FileProcessing.Application/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProc.39229881.Up2Date b/src/FileProcessing.Application/obj/Debug/net10.0/FileProc.39229881.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.AssemblyInfo.cs b/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.AssemblyInfo.cs deleted file mode 100644 index 1c6d7fc..0000000 --- a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.AssemblyInfo.cs +++ /dev/null @@ -1,22 +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: System.Reflection.AssemblyCompanyAttribute("FileProcessing.Application")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("FileProcessing.Application")] -[assembly: System.Reflection.AssemblyTitleAttribute("FileProcessing.Application")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.AssemblyInfoInputs.cache b/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.AssemblyInfoInputs.cache deleted file mode 100644 index 72e0818..0000000 --- a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -7f98b83b6b83870968e56d733b1a4b7927a096681aee414ccb7e7a132c75633b diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.GeneratedMSBuildEditorConfig.editorconfig b/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 85f7e17..0000000 --- a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,18 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property.EntryPointFilePath = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = FileProcessing.Application -build_property.ProjectDir = D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.GlobalUsings.g.cs b/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.assets.cache b/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.assets.cache deleted file mode 100644 index 56bfd59..0000000 Binary files a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.assets.cache and /dev/null differ diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.csproj.AssemblyReference.cache b/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.csproj.AssemblyReference.cache deleted file mode 100644 index cc5d325..0000000 Binary files a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.csproj.AssemblyReference.cache and /dev/null differ diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.csproj.CoreCompileInputs.cache b/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.csproj.CoreCompileInputs.cache deleted file mode 100644 index 2cae525..0000000 --- a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -b49747773ae6f39e0f91b4c1172a06bd9764e193edb84855b8fa732ee017305d diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.csproj.FileListAbsolute.txt b/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.csproj.FileListAbsolute.txt deleted file mode 100644 index f20774f..0000000 --- a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,19 +0,0 @@ -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\obj\Debug\net10.0\FileProcessing.Application.csproj.AssemblyReference.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\obj\Debug\net10.0\FileProcessing.Application.GeneratedMSBuildEditorConfig.editorconfig -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\obj\Debug\net10.0\FileProcessing.Application.AssemblyInfoInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\obj\Debug\net10.0\FileProcessing.Application.AssemblyInfo.cs -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\obj\Debug\net10.0\FileProcessing.Application.csproj.CoreCompileInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\bin\Debug\net10.0\FileProcessing.Application.deps.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\bin\Debug\net10.0\FileProcessing.Application.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\bin\Debug\net10.0\FileProcessing.Application.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\bin\Debug\net10.0\FileProcessing.Contracts.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\bin\Debug\net10.0\FileProcessing.Domain.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\bin\Debug\net10.0\FileProcessing.Shared.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\bin\Debug\net10.0\FileProcessing.Domain.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\bin\Debug\net10.0\FileProcessing.Contracts.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\bin\Debug\net10.0\FileProcessing.Shared.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\obj\Debug\net10.0\FileProc.39229881.Up2Date -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\obj\Debug\net10.0\FileProcessing.Application.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\obj\Debug\net10.0\refint\FileProcessing.Application.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\obj\Debug\net10.0\FileProcessing.Application.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Application\obj\Debug\net10.0\ref\FileProcessing.Application.dll diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.dll b/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.dll deleted file mode 100644 index 5600ec1..0000000 Binary files a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.dll and /dev/null differ diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.pdb b/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.pdb deleted file mode 100644 index 2118379..0000000 Binary files a/src/FileProcessing.Application/obj/Debug/net10.0/FileProcessing.Application.pdb and /dev/null differ diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/ref/FileProcessing.Application.dll b/src/FileProcessing.Application/obj/Debug/net10.0/ref/FileProcessing.Application.dll deleted file mode 100644 index 9232220..0000000 Binary files a/src/FileProcessing.Application/obj/Debug/net10.0/ref/FileProcessing.Application.dll and /dev/null differ diff --git a/src/FileProcessing.Application/obj/Debug/net10.0/refint/FileProcessing.Application.dll b/src/FileProcessing.Application/obj/Debug/net10.0/refint/FileProcessing.Application.dll deleted file mode 100644 index 9232220..0000000 Binary files a/src/FileProcessing.Application/obj/Debug/net10.0/refint/FileProcessing.Application.dll and /dev/null differ diff --git a/src/FileProcessing.Application/obj/FileProcessing.Application.csproj.nuget.dgspec.json b/src/FileProcessing.Application/obj/FileProcessing.Application.csproj.nuget.dgspec.json deleted file mode 100644 index cf5cffa..0000000 --- a/src/FileProcessing.Application/obj/FileProcessing.Application.csproj.nuget.dgspec.json +++ /dev/null @@ -1,1408 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": {} - }, - "projects": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "projectName": "FileProcessing.Application", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "FluentValidation.DependencyInjectionExtensions": { - "target": "Package", - "version": "[12.1.1, )" - }, - "MediatR": { - "target": "Package", - "version": "[14.0.0, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions": { - "target": "Package", - "version": "[10.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "projectName": "FileProcessing.Contracts", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "projectName": "FileProcessing.Domain", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "projectName": "FileProcessing.Shared", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Application/obj/FileProcessing.Application.csproj.nuget.g.props b/src/FileProcessing.Application/obj/FileProcessing.Application.csproj.nuget.g.props deleted file mode 100644 index c64e515..0000000 --- a/src/FileProcessing.Application/obj/FileProcessing.Application.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Dell\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - \ No newline at end of file diff --git a/src/FileProcessing.Application/obj/FileProcessing.Application.csproj.nuget.g.targets b/src/FileProcessing.Application/obj/FileProcessing.Application.csproj.nuget.g.targets deleted file mode 100644 index 237fda5..0000000 --- a/src/FileProcessing.Application/obj/FileProcessing.Application.csproj.nuget.g.targets +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/FileProcessing.Application/obj/project.assets.json b/src/FileProcessing.Application/obj/project.assets.json deleted file mode 100644 index 7a34b0e..0000000 --- a/src/FileProcessing.Application/obj/project.assets.json +++ /dev/null @@ -1,1186 +0,0 @@ -{ - "version": 4, - "targets": { - "net10.0": { - "FluentValidation/12.1.1": { - "type": "package", - "compile": { - "lib/net8.0/FluentValidation.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/FluentValidation.dll": { - "related": ".xml" - } - } - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "type": "package", - "dependencies": { - "FluentValidation": "12.1.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0" - }, - "compile": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "related": ".xml" - } - } - }, - "MediatR/14.0.0": { - "type": "package", - "dependencies": { - "MediatR.Contracts": "[2.0.1, 3.0.0)", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0" - }, - "compile": { - "lib/net10.0/MediatR.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/MediatR.dll": { - "related": ".xml" - } - } - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Options/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Binder": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Contracts.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Contracts.dll": {} - } - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Domain.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Domain.dll": {} - } - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Shared.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Shared.dll": {} - } - } - } - }, - "libraries": { - "FluentValidation/12.1.1": { - "sha512": "EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==", - "type": "package", - "path": "fluentvalidation/12.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.12.1.1.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net8.0/FluentValidation.dll", - "lib/net8.0/FluentValidation.xml" - ] - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "sha512": "D0VXh4dtjjX2aQizuaa0g6R8X3U1JaVqJPfGCvLwZX9t/O2h7tkpbitbadQMfwcgSPdDbI2vDxuwRMv/Uf9dHA==", - "type": "package", - "path": "fluentvalidation.dependencyinjectionextensions/12.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512", - "fluentvalidation.dependencyinjectionextensions.nuspec", - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll", - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.xml" - ] - }, - "MediatR/14.0.0": { - "sha512": "r5fwUO6NBvOFKaiMRx/gRrD1MEHHOio5yEdzSLs2OMeD2e9ZKnZaBQM6A6vVBEWJF4VY41vplXmDMOY1YvpqNA==", - "type": "package", - "path": "mediatr/14.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "README.md", - "gradient_128x128.png", - "lib/net10.0/MediatR.dll", - "lib/net10.0/MediatR.xml", - "lib/net462/MediatR.dll", - "lib/net462/MediatR.xml", - "lib/net8.0/MediatR.dll", - "lib/net8.0/MediatR.xml", - "lib/net9.0/MediatR.dll", - "lib/net9.0/MediatR.xml", - "lib/netstandard2.0/MediatR.dll", - "lib/netstandard2.0/MediatR.xml", - "mediatr.14.0.0.nupkg.sha512", - "mediatr.nuspec" - ] - }, - "MediatR.Contracts/2.0.1": { - "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "type": "package", - "path": "mediatr.contracts/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/netstandard2.0/MediatR.Contracts.dll", - "lib/netstandard2.0/MediatR.Contracts.xml", - "mediatr.contracts.2.0.1.nupkg.sha512", - "mediatr.contracts.nuspec" - ] - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "sha512": "H4SWETCh/cC5L1WtWchHR6LntGk3rDTTznZMssr4cL8IbDmMWBxY+MOGDc/ASnqNolLKPIWHWeuC1ddiL/iNPw==", - "type": "package", - "path": "microsoft.extensions.configuration/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.xml", - "lib/net462/Microsoft.Extensions.Configuration.dll", - "lib/net462/Microsoft.Extensions.Configuration.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "sha512": "d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "sha512": "tMF9wNh+hlyYDWB8mrFCQHQmWHlRosol1b/N2Jrefy1bFLnuTlgSYmPyHNmz8xVQgs7DpXytBRWxGhG+mSTp0g==", - "type": "package", - "path": "microsoft.extensions.configuration.binder/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", - "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "sha512": "L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "sha512": "FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "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/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/10.0.0": { - "sha512": "8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", - "type": "package", - "path": "microsoft.extensions.options/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Options.targets", - "buildTransitive/net462/Microsoft.Extensions.Options.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", - "lib/net10.0/Microsoft.Extensions.Options.dll", - "lib/net10.0/Microsoft.Extensions.Options.xml", - "lib/net462/Microsoft.Extensions.Options.dll", - "lib/net462/Microsoft.Extensions.Options.xml", - "lib/net8.0/Microsoft.Extensions.Options.dll", - "lib/net8.0/Microsoft.Extensions.Options.xml", - "lib/net9.0/Microsoft.Extensions.Options.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "sha512": "tL9cSl3maS5FPzp/3MtlZI21ExWhni0nnUCF8HY4npTsINw45n9SNDbkKXBMtFyUFGSsQep25fHIDN4f/Vp3AQ==", - "type": "package", - "path": "microsoft.extensions.options.configurationextensions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512", - "microsoft.extensions.options.configurationextensions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "sha512": "inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", - "type": "package", - "path": "microsoft.extensions.primitives/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "lib/net10.0/Microsoft.Extensions.Primitives.dll", - "lib/net10.0/Microsoft.Extensions.Primitives.xml", - "lib/net462/Microsoft.Extensions.Primitives.dll", - "lib/net462/Microsoft.Extensions.Primitives.xml", - "lib/net8.0/Microsoft.Extensions.Primitives.dll", - "lib/net8.0/Microsoft.Extensions.Primitives.xml", - "lib/net9.0/Microsoft.Extensions.Primitives.dll", - "lib/net9.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.10.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Abstractions.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "sha512": "4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "sha512": "eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "type": "package", - "path": "microsoft.identitymodel.logging/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Logging.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Logging.dll", - "lib/net8.0/Microsoft.IdentityModel.Logging.xml", - "lib/net9.0/Microsoft.IdentityModel.Logging.dll", - "lib/net9.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "sha512": "lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "type": "package", - "path": "microsoft.identitymodel.tokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Tokens.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "path": "../FileProcessing.Contracts/FileProcessing.Contracts.csproj", - "msbuildProject": "../FileProcessing.Contracts/FileProcessing.Contracts.csproj" - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "path": "../FileProcessing.Domain/FileProcessing.Domain.csproj", - "msbuildProject": "../FileProcessing.Domain/FileProcessing.Domain.csproj" - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "path": "../FileProcessing.Shared/FileProcessing.Shared.csproj", - "msbuildProject": "../FileProcessing.Shared/FileProcessing.Shared.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "FileProcessing.Contracts >= 1.0.0", - "FileProcessing.Domain >= 1.0.0", - "FileProcessing.Shared >= 1.0.0", - "FluentValidation.DependencyInjectionExtensions >= 12.1.1", - "MediatR >= 14.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions >= 10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions >= 10.0.0" - ] - }, - "packageFolders": { - "C:\\Users\\Dell\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "projectName": "FileProcessing.Application", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "FluentValidation.DependencyInjectionExtensions": { - "target": "Package", - "version": "[12.1.1, )" - }, - "MediatR": { - "target": "Package", - "version": "[14.0.0, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions": { - "target": "Package", - "version": "[10.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Application/obj/project.nuget.cache b/src/FileProcessing.Application/obj/project.nuget.cache deleted file mode 100644 index 03f2a24..0000000 --- a/src/FileProcessing.Application/obj/project.nuget.cache +++ /dev/null @@ -1,25 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "EVxbeRzMRDw=", - "success": true, - "projectFilePath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "expectedPackageFiles": [ - "C:\\Users\\Dell\\.nuget\\packages\\fluentvalidation\\12.1.1\\fluentvalidation.12.1.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\12.1.1\\fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\mediatr\\14.0.0\\mediatr.14.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration\\10.0.0\\microsoft.extensions.configuration.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.0\\microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.binder\\10.0.0\\microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.0\\microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.options\\10.0.0\\microsoft.extensions.options.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\10.0.0\\microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.0\\microsoft.extensions.primitives.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.14.0\\microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/src/FileProcessing.Contracts/Contracts.cs b/src/FileProcessing.Contracts/Contracts.cs index 0dbe348..5711ac6 100644 --- a/src/FileProcessing.Contracts/Contracts.cs +++ b/src/FileProcessing.Contracts/Contracts.cs @@ -1,6 +1,7 @@ namespace FileProcessing.Contracts; + public sealed record FileJob(Guid FileId, string CorrelationId, int Attempt = 0); -public sealed record FileResponse(Guid Id,string Name,string ContentType,long Size,string Checksum,string Status,int RetryCount,DateTimeOffset CreatedAt,string? FailureReason); -public sealed record PagedResponse(IReadOnlyList Items,int Page,int PageSize,int Total); -public sealed record UploadResponse(Guid Id,string Status,string Checksum); -public sealed record NotificationMessage(Guid FileId,string Event,string Name,string Status); +public sealed record FileResponse(Guid Id, string Name, string ContentType, long Size, string Checksum, string Status, int RetryCount, DateTimeOffset CreatedAt, string? FailureReason); +public sealed record PagedResponse(IReadOnlyList Items, int Page, int PageSize, int Total); +public sealed record UploadResponse(Guid Id, string Status, string Checksum); +public sealed record NotificationMessage(Guid FileId, string Event, string Name, string Status); diff --git a/src/FileProcessing.Contracts/bin/Debug/net10.0/FileProcessing.Contracts.deps.json b/src/FileProcessing.Contracts/bin/Debug/net10.0/FileProcessing.Contracts.deps.json deleted file mode 100644 index 9e481a0..0000000 --- a/src/FileProcessing.Contracts/bin/Debug/net10.0/FileProcessing.Contracts.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "FileProcessing.Contracts/1.0.0": { - "runtime": { - "FileProcessing.Contracts.dll": {} - } - } - } - }, - "libraries": { - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Contracts/bin/Debug/net10.0/FileProcessing.Contracts.dll b/src/FileProcessing.Contracts/bin/Debug/net10.0/FileProcessing.Contracts.dll deleted file mode 100644 index 36b4f21..0000000 Binary files a/src/FileProcessing.Contracts/bin/Debug/net10.0/FileProcessing.Contracts.dll and /dev/null differ diff --git a/src/FileProcessing.Contracts/bin/Debug/net10.0/FileProcessing.Contracts.pdb b/src/FileProcessing.Contracts/bin/Debug/net10.0/FileProcessing.Contracts.pdb deleted file mode 100644 index 9b799b5..0000000 Binary files a/src/FileProcessing.Contracts/bin/Debug/net10.0/FileProcessing.Contracts.pdb and /dev/null differ diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/FileProcessing.Contracts/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/src/FileProcessing.Contracts/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.AssemblyInfo.cs b/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.AssemblyInfo.cs deleted file mode 100644 index e81916a..0000000 --- a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.AssemblyInfo.cs +++ /dev/null @@ -1,22 +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: System.Reflection.AssemblyCompanyAttribute("FileProcessing.Contracts")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("FileProcessing.Contracts")] -[assembly: System.Reflection.AssemblyTitleAttribute("FileProcessing.Contracts")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.AssemblyInfoInputs.cache b/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.AssemblyInfoInputs.cache deleted file mode 100644 index 3db6b4d..0000000 --- a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -b5bad070a6de32375ba93b1c7f4ba6278aade2030da870e6e0ff3f440c5ddd63 diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.GeneratedMSBuildEditorConfig.editorconfig b/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 20d9c32..0000000 --- a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,18 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property.EntryPointFilePath = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = FileProcessing.Contracts -build_property.ProjectDir = D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.GlobalUsings.g.cs b/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.assets.cache b/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.assets.cache deleted file mode 100644 index 1c3e0d9..0000000 Binary files a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.assets.cache and /dev/null differ diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.csproj.CoreCompileInputs.cache b/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.csproj.CoreCompileInputs.cache deleted file mode 100644 index 206fcdd..0000000 --- a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -5c5f816315b500142c1a65e857017b613e6622050b24a21a5381f7c3f44dc5b0 diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.csproj.FileListAbsolute.txt b/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.csproj.FileListAbsolute.txt deleted file mode 100644 index e3ff6a0..0000000 --- a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,11 +0,0 @@ -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\bin\Debug\net10.0\FileProcessing.Contracts.deps.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\bin\Debug\net10.0\FileProcessing.Contracts.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\bin\Debug\net10.0\FileProcessing.Contracts.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\obj\Debug\net10.0\FileProcessing.Contracts.GeneratedMSBuildEditorConfig.editorconfig -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\obj\Debug\net10.0\FileProcessing.Contracts.AssemblyInfoInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\obj\Debug\net10.0\FileProcessing.Contracts.AssemblyInfo.cs -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\obj\Debug\net10.0\FileProcessing.Contracts.csproj.CoreCompileInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\obj\Debug\net10.0\FileProcessing.Contracts.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\obj\Debug\net10.0\refint\FileProcessing.Contracts.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\obj\Debug\net10.0\FileProcessing.Contracts.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Contracts\obj\Debug\net10.0\ref\FileProcessing.Contracts.dll diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.dll b/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.dll deleted file mode 100644 index 36b4f21..0000000 Binary files a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.dll and /dev/null differ diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.pdb b/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.pdb deleted file mode 100644 index 9b799b5..0000000 Binary files a/src/FileProcessing.Contracts/obj/Debug/net10.0/FileProcessing.Contracts.pdb and /dev/null differ diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/ref/FileProcessing.Contracts.dll b/src/FileProcessing.Contracts/obj/Debug/net10.0/ref/FileProcessing.Contracts.dll deleted file mode 100644 index 32a78ce..0000000 Binary files a/src/FileProcessing.Contracts/obj/Debug/net10.0/ref/FileProcessing.Contracts.dll and /dev/null differ diff --git a/src/FileProcessing.Contracts/obj/Debug/net10.0/refint/FileProcessing.Contracts.dll b/src/FileProcessing.Contracts/obj/Debug/net10.0/refint/FileProcessing.Contracts.dll deleted file mode 100644 index 32a78ce..0000000 Binary files a/src/FileProcessing.Contracts/obj/Debug/net10.0/refint/FileProcessing.Contracts.dll and /dev/null differ diff --git a/src/FileProcessing.Contracts/obj/FileProcessing.Contracts.csproj.nuget.dgspec.json b/src/FileProcessing.Contracts/obj/FileProcessing.Contracts.csproj.nuget.dgspec.json deleted file mode 100644 index d61b8dc..0000000 --- a/src/FileProcessing.Contracts/obj/FileProcessing.Contracts.csproj.nuget.dgspec.json +++ /dev/null @@ -1,351 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": {} - }, - "projects": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "projectName": "FileProcessing.Contracts", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Contracts/obj/FileProcessing.Contracts.csproj.nuget.g.props b/src/FileProcessing.Contracts/obj/FileProcessing.Contracts.csproj.nuget.g.props deleted file mode 100644 index c64e515..0000000 --- a/src/FileProcessing.Contracts/obj/FileProcessing.Contracts.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Dell\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - \ No newline at end of file diff --git a/src/FileProcessing.Contracts/obj/FileProcessing.Contracts.csproj.nuget.g.targets b/src/FileProcessing.Contracts/obj/FileProcessing.Contracts.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/src/FileProcessing.Contracts/obj/FileProcessing.Contracts.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/src/FileProcessing.Contracts/obj/project.assets.json b/src/FileProcessing.Contracts/obj/project.assets.json deleted file mode 100644 index 6f11552..0000000 --- a/src/FileProcessing.Contracts/obj/project.assets.json +++ /dev/null @@ -1,357 +0,0 @@ -{ - "version": 4, - "targets": { - "net10.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net10.0": [] - }, - "packageFolders": { - "C:\\Users\\Dell\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "projectName": "FileProcessing.Contracts", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Contracts/obj/project.nuget.cache b/src/FileProcessing.Contracts/obj/project.nuget.cache deleted file mode 100644 index a035cb0..0000000 --- a/src/FileProcessing.Contracts/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "hE49nXy3DUE=", - "success": true, - "projectFilePath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/src/FileProcessing.Domain/Model.cs b/src/FileProcessing.Domain/Model.cs index 47e91c3..6aafbbf 100644 --- a/src/FileProcessing.Domain/Model.cs +++ b/src/FileProcessing.Domain/Model.cs @@ -7,7 +7,7 @@ public sealed class FileRecord { private FileRecord() { } public FileRecord(Guid id, string name, string contentType, long size, string checksum, string objectName, DateTimeOffset now) - { Id=id; OriginalName=name; ContentType=contentType; Size=size; Checksum=checksum; ObjectName=objectName; Status=ProcessingStatus.Uploaded; CreatedAt=UpdatedAt=now; } + { Id = id; OriginalName = name; ContentType = contentType; Size = size; Checksum = checksum; ObjectName = objectName; Status = ProcessingStatus.Uploaded; CreatedAt = UpdatedAt = now; } public Guid Id { get; private set; } public string OriginalName { get; private set; } = ""; public string ContentType { get; private set; } = ""; @@ -21,13 +21,13 @@ public FileRecord(Guid id, string name, string contentType, long size, string ch public DateTimeOffset UpdatedAt { get; private set; } public bool IsDeleted { get; private set; } public ICollection History { get; private set; } = []; - public void Transition(ProcessingStatus status, string? detail=null) { Status=status; FailureReason=status==ProcessingStatus.Failed?detail:null; UpdatedAt=DateTimeOffset.UtcNow; History.Add(new(Id,status,detail)); } + public void Transition(ProcessingStatus status, string? detail = null) { Status = status; FailureReason = status == ProcessingStatus.Failed ? detail : null; UpdatedAt = DateTimeOffset.UtcNow; History.Add(new(Id, status, detail)); } public void Retry() { RetryCount++; Transition(ProcessingStatus.Retrying); } - public void Delete() { IsDeleted=true; Transition(ProcessingStatus.Cancelled,"Deleted"); } + public void Delete() { IsDeleted = true; Transition(ProcessingStatus.Cancelled, "Deleted"); } } -public sealed class ProcessingHistory { private ProcessingHistory(){} public ProcessingHistory(Guid fileId, ProcessingStatus status, string? detail){Id=Guid.NewGuid();FileId=fileId;Status=status;Detail=detail;OccurredAt=DateTimeOffset.UtcNow;} public Guid Id{get;private set;} public Guid FileId{get;private set;} public ProcessingStatus Status{get;private set;} public string? Detail{get;private set;} public DateTimeOffset OccurredAt{get;private set;} } -public sealed class AuditLog { private AuditLog(){} public AuditLog(Guid? fileId,string action,string correlationId,string? detail){Id=Guid.NewGuid();FileId=fileId;Action=action;CorrelationId=correlationId;Detail=detail;OccurredAt=DateTimeOffset.UtcNow;} public Guid Id{get;private set;} public Guid? FileId{get;private set;} public string Action{get;private set;}=""; public string CorrelationId{get;private set;}=""; public string? Detail{get;private set;} public DateTimeOffset OccurredAt{get;private set;} } -public sealed class OcrResult { private OcrResult(){} public OcrResult(Guid fileId,string text,string provider){Id=Guid.NewGuid();FileId=fileId;Text=text;Provider=provider;CreatedAt=DateTimeOffset.UtcNow;} public Guid Id{get;private set;} public Guid FileId{get;private set;} public string Text{get;private set;}=""; public string Provider{get;private set;}=""; public DateTimeOffset CreatedAt{get;private set;} } -public sealed class VirusScanResult { private VirusScanResult(){} public VirusScanResult(Guid fileId,bool infected,string? threat){Id=Guid.NewGuid();FileId=fileId;IsInfected=infected;Threat=threat;ScannedAt=DateTimeOffset.UtcNow;} public Guid Id{get;private set;} public Guid FileId{get;private set;} public bool IsInfected{get;private set;} public string? Threat{get;private set;} public DateTimeOffset ScannedAt{get;private set;} } -public sealed class Thumbnail { private Thumbnail(){} public Thumbnail(Guid fileId,string objectName,int width,int height){Id=Guid.NewGuid();FileId=fileId;ObjectName=objectName;Width=width;Height=height;CreatedAt=DateTimeOffset.UtcNow;} public Guid Id{get;private set;} public Guid FileId{get;private set;} public string ObjectName{get;private set;}=""; public int Width{get;private set;} public int Height{get;private set;} public DateTimeOffset CreatedAt{get;private set;} } -public sealed class Notification { private Notification(){} public Notification(Guid fileId,string channel,string eventName,bool delivered,string? error){Id=Guid.NewGuid();FileId=fileId;Channel=channel;EventName=eventName;Delivered=delivered;Error=error;CreatedAt=DateTimeOffset.UtcNow;} public Guid Id{get;private set;} public Guid FileId{get;private set;} public string Channel{get;private set;}=""; public string EventName{get;private set;}=""; public bool Delivered{get;private set;} public string? Error{get;private set;} public DateTimeOffset CreatedAt{get;private set;} } +public sealed class ProcessingHistory { private ProcessingHistory() { } public ProcessingHistory(Guid fileId, ProcessingStatus status, string? detail) { Id = Guid.NewGuid(); FileId = fileId; Status = status; Detail = detail; OccurredAt = DateTimeOffset.UtcNow; } public Guid Id { get; private set; } public Guid FileId { get; private set; } public ProcessingStatus Status { get; private set; } public string? Detail { get; private set; } public DateTimeOffset OccurredAt { get; private set; } } +public sealed class AuditLog { private AuditLog() { } public AuditLog(Guid? fileId, string action, string correlationId, string? detail) { Id = Guid.NewGuid(); FileId = fileId; Action = action; CorrelationId = correlationId; Detail = detail; OccurredAt = DateTimeOffset.UtcNow; } public Guid Id { get; private set; } public Guid? FileId { get; private set; } public string Action { get; private set; } = ""; public string CorrelationId { get; private set; } = ""; public string? Detail { get; private set; } public DateTimeOffset OccurredAt { get; private set; } } +public sealed class OcrResult { private OcrResult() { } public OcrResult(Guid fileId, string text, string provider) { Id = Guid.NewGuid(); FileId = fileId; Text = text; Provider = provider; CreatedAt = DateTimeOffset.UtcNow; } public Guid Id { get; private set; } public Guid FileId { get; private set; } public string Text { get; private set; } = ""; public string Provider { get; private set; } = ""; public DateTimeOffset CreatedAt { get; private set; } } +public sealed class VirusScanResult { private VirusScanResult() { } public VirusScanResult(Guid fileId, bool infected, string? threat) { Id = Guid.NewGuid(); FileId = fileId; IsInfected = infected; Threat = threat; ScannedAt = DateTimeOffset.UtcNow; } public Guid Id { get; private set; } public Guid FileId { get; private set; } public bool IsInfected { get; private set; } public string? Threat { get; private set; } public DateTimeOffset ScannedAt { get; private set; } } +public sealed class Thumbnail { private Thumbnail() { } public Thumbnail(Guid fileId, string objectName, int width, int height) { Id = Guid.NewGuid(); FileId = fileId; ObjectName = objectName; Width = width; Height = height; CreatedAt = DateTimeOffset.UtcNow; } public Guid Id { get; private set; } public Guid FileId { get; private set; } public string ObjectName { get; private set; } = ""; public int Width { get; private set; } public int Height { get; private set; } public DateTimeOffset CreatedAt { get; private set; } } +public sealed class Notification { private Notification() { } public Notification(Guid fileId, string channel, string eventName, bool delivered, string? error) { Id = Guid.NewGuid(); FileId = fileId; Channel = channel; EventName = eventName; Delivered = delivered; Error = error; CreatedAt = DateTimeOffset.UtcNow; } public Guid Id { get; private set; } public Guid FileId { get; private set; } public string Channel { get; private set; } = ""; public string EventName { get; private set; } = ""; public bool Delivered { get; private set; } public string? Error { get; private set; } public DateTimeOffset CreatedAt { get; private set; } } diff --git a/src/FileProcessing.Domain/bin/Debug/net10.0/FileProcessing.Domain.deps.json b/src/FileProcessing.Domain/bin/Debug/net10.0/FileProcessing.Domain.deps.json deleted file mode 100644 index a8214ac..0000000 --- a/src/FileProcessing.Domain/bin/Debug/net10.0/FileProcessing.Domain.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "FileProcessing.Domain/1.0.0": { - "runtime": { - "FileProcessing.Domain.dll": {} - } - } - } - }, - "libraries": { - "FileProcessing.Domain/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Domain/bin/Debug/net10.0/FileProcessing.Domain.dll b/src/FileProcessing.Domain/bin/Debug/net10.0/FileProcessing.Domain.dll deleted file mode 100644 index 88c7b60..0000000 Binary files a/src/FileProcessing.Domain/bin/Debug/net10.0/FileProcessing.Domain.dll and /dev/null differ diff --git a/src/FileProcessing.Domain/bin/Debug/net10.0/FileProcessing.Domain.pdb b/src/FileProcessing.Domain/bin/Debug/net10.0/FileProcessing.Domain.pdb deleted file mode 100644 index 646827e..0000000 Binary files a/src/FileProcessing.Domain/bin/Debug/net10.0/FileProcessing.Domain.pdb and /dev/null differ diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/FileProcessing.Domain/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/src/FileProcessing.Domain/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.AssemblyInfo.cs b/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.AssemblyInfo.cs deleted file mode 100644 index d842684..0000000 --- a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.AssemblyInfo.cs +++ /dev/null @@ -1,22 +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: System.Reflection.AssemblyCompanyAttribute("FileProcessing.Domain")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("FileProcessing.Domain")] -[assembly: System.Reflection.AssemblyTitleAttribute("FileProcessing.Domain")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.AssemblyInfoInputs.cache b/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.AssemblyInfoInputs.cache deleted file mode 100644 index 26630b7..0000000 --- a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -04f636c70989af45488cde0b79208466b57eba029d10fee01ae9624d6c628d2f diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.GeneratedMSBuildEditorConfig.editorconfig b/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index f7bd309..0000000 --- a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,18 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property.EntryPointFilePath = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = FileProcessing.Domain -build_property.ProjectDir = D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.GlobalUsings.g.cs b/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.assets.cache b/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.assets.cache deleted file mode 100644 index 805a314..0000000 Binary files a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.assets.cache and /dev/null differ diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.csproj.CoreCompileInputs.cache b/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.csproj.CoreCompileInputs.cache deleted file mode 100644 index c88bc53..0000000 --- a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0f8b685506828b2fbd65f41ed5d6f09af3f5f538ede47c02d012717b79ca7e10 diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.csproj.FileListAbsolute.txt b/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.csproj.FileListAbsolute.txt deleted file mode 100644 index e5de60d..0000000 --- a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,11 +0,0 @@ -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\bin\Debug\net10.0\FileProcessing.Domain.deps.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\bin\Debug\net10.0\FileProcessing.Domain.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\bin\Debug\net10.0\FileProcessing.Domain.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\obj\Debug\net10.0\FileProcessing.Domain.GeneratedMSBuildEditorConfig.editorconfig -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\obj\Debug\net10.0\FileProcessing.Domain.AssemblyInfoInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\obj\Debug\net10.0\FileProcessing.Domain.AssemblyInfo.cs -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\obj\Debug\net10.0\FileProcessing.Domain.csproj.CoreCompileInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\obj\Debug\net10.0\FileProcessing.Domain.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\obj\Debug\net10.0\refint\FileProcessing.Domain.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\obj\Debug\net10.0\FileProcessing.Domain.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Domain\obj\Debug\net10.0\ref\FileProcessing.Domain.dll diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.dll b/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.dll deleted file mode 100644 index 88c7b60..0000000 Binary files a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.dll and /dev/null differ diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.pdb b/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.pdb deleted file mode 100644 index 646827e..0000000 Binary files a/src/FileProcessing.Domain/obj/Debug/net10.0/FileProcessing.Domain.pdb and /dev/null differ diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/ref/FileProcessing.Domain.dll b/src/FileProcessing.Domain/obj/Debug/net10.0/ref/FileProcessing.Domain.dll deleted file mode 100644 index 6ee75c8..0000000 Binary files a/src/FileProcessing.Domain/obj/Debug/net10.0/ref/FileProcessing.Domain.dll and /dev/null differ diff --git a/src/FileProcessing.Domain/obj/Debug/net10.0/refint/FileProcessing.Domain.dll b/src/FileProcessing.Domain/obj/Debug/net10.0/refint/FileProcessing.Domain.dll deleted file mode 100644 index 6ee75c8..0000000 Binary files a/src/FileProcessing.Domain/obj/Debug/net10.0/refint/FileProcessing.Domain.dll and /dev/null differ diff --git a/src/FileProcessing.Domain/obj/FileProcessing.Domain.csproj.nuget.dgspec.json b/src/FileProcessing.Domain/obj/FileProcessing.Domain.csproj.nuget.dgspec.json deleted file mode 100644 index c49709c..0000000 --- a/src/FileProcessing.Domain/obj/FileProcessing.Domain.csproj.nuget.dgspec.json +++ /dev/null @@ -1,351 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": {} - }, - "projects": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "projectName": "FileProcessing.Domain", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Domain/obj/FileProcessing.Domain.csproj.nuget.g.props b/src/FileProcessing.Domain/obj/FileProcessing.Domain.csproj.nuget.g.props deleted file mode 100644 index c64e515..0000000 --- a/src/FileProcessing.Domain/obj/FileProcessing.Domain.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Dell\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - \ No newline at end of file diff --git a/src/FileProcessing.Domain/obj/FileProcessing.Domain.csproj.nuget.g.targets b/src/FileProcessing.Domain/obj/FileProcessing.Domain.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/src/FileProcessing.Domain/obj/FileProcessing.Domain.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/src/FileProcessing.Domain/obj/project.assets.json b/src/FileProcessing.Domain/obj/project.assets.json deleted file mode 100644 index 728bfc5..0000000 --- a/src/FileProcessing.Domain/obj/project.assets.json +++ /dev/null @@ -1,357 +0,0 @@ -{ - "version": 4, - "targets": { - "net10.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net10.0": [] - }, - "packageFolders": { - "C:\\Users\\Dell\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "projectName": "FileProcessing.Domain", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Domain/obj/project.nuget.cache b/src/FileProcessing.Domain/obj/project.nuget.cache deleted file mode 100644 index 8df4de6..0000000 --- a/src/FileProcessing.Domain/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "HhVV73LCj/g=", - "success": true, - "projectFilePath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/src/FileProcessing.Infrastructure/DependencyInjection.cs b/src/FileProcessing.Infrastructure/DependencyInjection.cs index fb48411..b78420d 100644 --- a/src/FileProcessing.Infrastructure/DependencyInjection.cs +++ b/src/FileProcessing.Infrastructure/DependencyInjection.cs @@ -6,7 +6,8 @@ using StackExchange.Redis; namespace FileProcessing.Infrastructure; + public static class DependencyInjection { - public static IServiceCollection AddInfrastructure(this IServiceCollection s,IConfiguration c){s.Configure(c.GetSection(StorageOptions.Section));s.Configure(c.GetSection(RabbitOptions.Section));s.Configure(c.GetSection(ClamAvOptions.Section));s.Configure(c.GetSection(OcrOptions.Section));s.Configure(c.GetSection(ThumbnailOptions.Section));s.AddDbContext(x=>x.UseNpgsql(c.GetConnectionString("PostgreSql")));var minio=c.GetSection(StorageOptions.Section).Get()??new();s.AddSingleton(_=>new MinioClient().WithEndpoint(minio.Endpoint).WithCredentials(minio.AccessKey,minio.SecretKey).WithSSL(minio.Secure).Build());s.AddSingleton(_=>ConnectionMultiplexer.Connect(c.GetConnectionString("Redis")??"localhost:6379"));s.AddScoped();s.AddScoped();s.AddSingleton();s.AddScoped();s.AddScoped();s.AddScoped();s.AddHttpClient();return s;} + public static IServiceCollection AddInfrastructure(this IServiceCollection s, IConfiguration c) { s.Configure(c.GetSection(StorageOptions.Section)); s.Configure(c.GetSection(RabbitOptions.Section)); s.Configure(c.GetSection(ClamAvOptions.Section)); s.Configure(c.GetSection(OcrOptions.Section)); s.Configure(c.GetSection(ThumbnailOptions.Section)); s.AddDbContext(x => x.UseNpgsql(c.GetConnectionString("PostgreSql"))); var minio = c.GetSection(StorageOptions.Section).Get() ?? new(); s.AddSingleton(_ => new MinioClient().WithEndpoint(minio.Endpoint).WithCredentials(minio.AccessKey, minio.SecretKey).WithSSL(minio.Secure).Build()); s.AddSingleton(_ => ConnectionMultiplexer.Connect(c.GetConnectionString("Redis") ?? "localhost:6379")); s.AddScoped(); s.AddScoped(); s.AddSingleton(); s.AddScoped(); s.AddScoped(); s.AddScoped(); s.AddHttpClient(); return s; } } diff --git a/src/FileProcessing.Infrastructure/Persistence.cs b/src/FileProcessing.Infrastructure/Persistence.cs index c74e74a..c298ee7 100644 --- a/src/FileProcessing.Infrastructure/Persistence.cs +++ b/src/FileProcessing.Infrastructure/Persistence.cs @@ -4,18 +4,18 @@ namespace FileProcessing.Infrastructure; -public sealed class ProcessingDbContext(DbContextOptions options):DbContext(options) +public sealed class ProcessingDbContext(DbContextOptions options) : DbContext(options) { - public DbSet Files=>Set(); public DbSet ProcessingHistory=>Set(); public DbSet AuditLogs=>Set(); public DbSet OcrResults=>Set(); public DbSet VirusScanResults=>Set(); public DbSet Thumbnails=>Set(); public DbSet Notifications=>Set(); - protected override void OnModelCreating(ModelBuilder b){b.Entity(e=>{e.ToTable("Files");e.HasKey(x=>x.Id);e.HasIndex(x=>x.Checksum).IsUnique();e.Property(x=>x.OriginalName).HasMaxLength(512);e.Property(x=>x.ContentType).HasMaxLength(200);e.Property(x=>x.Checksum).HasMaxLength(64);e.Property(x=>x.Status).HasConversion();e.HasMany(x=>x.History).WithOne().HasForeignKey(x=>x.FileId).OnDelete(DeleteBehavior.Cascade);});b.Entity(e=>{e.ToTable("ProcessingHistory");e.HasKey(x=>x.Id);e.Property(x=>x.Status).HasConversion();});b.Entity(e=>{e.ToTable("AuditLogs");e.HasKey(x=>x.Id);e.HasIndex(x=>x.CorrelationId);});b.Entity(e=>{e.ToTable("OcrResults");e.HasKey(x=>x.Id);e.HasIndex(x=>x.FileId);});b.Entity(e=>{e.ToTable("VirusScanResults");e.HasKey(x=>x.Id);});b.Entity(e=>{e.ToTable("Thumbnails");e.HasKey(x=>x.Id);});b.Entity(e=>{e.ToTable("Notifications");e.HasKey(x=>x.Id);});} + public DbSet Files => Set(); public DbSet ProcessingHistory => Set(); public DbSet AuditLogs => Set(); public DbSet OcrResults => Set(); public DbSet VirusScanResults => Set(); public DbSet Thumbnails => Set(); public DbSet Notifications => Set(); + protected override void OnModelCreating(ModelBuilder b) { b.Entity(e => { e.ToTable("Files"); e.HasKey(x => x.Id); e.HasIndex(x => x.Checksum).IsUnique(); e.Property(x => x.OriginalName).HasMaxLength(512); e.Property(x => x.ContentType).HasMaxLength(200); e.Property(x => x.Checksum).HasMaxLength(64); e.Property(x => x.Status).HasConversion(); e.HasMany(x => x.History).WithOne().HasForeignKey(x => x.FileId).OnDelete(DeleteBehavior.Cascade); }); b.Entity(e => { e.ToTable("ProcessingHistory"); e.HasKey(x => x.Id); e.Property(x => x.Status).HasConversion(); }); b.Entity(e => { e.ToTable("AuditLogs"); e.HasKey(x => x.Id); e.HasIndex(x => x.CorrelationId); }); b.Entity(e => { e.ToTable("OcrResults"); e.HasKey(x => x.Id); e.HasIndex(x => x.FileId); }); b.Entity(e => { e.ToTable("VirusScanResults"); e.HasKey(x => x.Id); }); b.Entity(e => { e.ToTable("Thumbnails"); e.HasKey(x => x.Id); }); b.Entity(e => { e.ToTable("Notifications"); e.HasKey(x => x.Id); }); } } -public sealed class FileRepository(ProcessingDbContext db):IFileRepository +public sealed class FileRepository(ProcessingDbContext db) : IFileRepository { - public Task GetAsync(Guid id,CancellationToken ct)=>db.Files.Include(x=>x.History).SingleOrDefaultAsync(x=>x.Id==id&&!x.IsDeleted,ct); - public Task FindByChecksumAsync(string checksum,CancellationToken ct)=>db.Files.AsNoTracking().FirstOrDefaultAsync(x=>x.Checksum==checksum&&!x.IsDeleted,ct); - public async Task<(IReadOnlyList Items,int Total)> ListAsync(int page,int pageSize,CancellationToken ct){var query=db.Files.AsNoTracking().Where(x=>!x.IsDeleted);var total=await query.CountAsync(ct);var items=await query.OrderByDescending(x=>x.CreatedAt).Skip((page-1)*pageSize).Take(pageSize).ToListAsync(ct);return(items,total);} - public Task AddAsync(FileRecord file,CancellationToken ct)=>db.Files.AddAsync(file,ct).AsTask(); - public Task AddOcrAsync(OcrResult value,CancellationToken ct)=>db.OcrResults.AddAsync(value,ct).AsTask(); public Task AddScanAsync(VirusScanResult value,CancellationToken ct)=>db.VirusScanResults.AddAsync(value,ct).AsTask(); public Task AddThumbnailAsync(Thumbnail value,CancellationToken ct)=>db.Thumbnails.AddAsync(value,ct).AsTask(); public Task AddNotificationAsync(Notification value,CancellationToken ct)=>db.Notifications.AddAsync(value,ct).AsTask(); - public Task AuditAsync(Guid? fileId,string action,string correlationId,string? detail,CancellationToken ct)=>db.AuditLogs.AddAsync(new(fileId,action,correlationId,detail),ct).AsTask(); public Task SaveAsync(CancellationToken ct)=>db.SaveChangesAsync(ct); + public Task GetAsync(Guid id, CancellationToken ct) => db.Files.Include(x => x.History).SingleOrDefaultAsync(x => x.Id == id && !x.IsDeleted, ct); + public Task FindByChecksumAsync(string checksum, CancellationToken ct) => db.Files.AsNoTracking().FirstOrDefaultAsync(x => x.Checksum == checksum && !x.IsDeleted, ct); + public async Task<(IReadOnlyList Items, int Total)> ListAsync(int page, int pageSize, CancellationToken ct) { var query = db.Files.AsNoTracking().Where(x => !x.IsDeleted); var total = await query.CountAsync(ct); var items = await query.OrderByDescending(x => x.CreatedAt).Skip((page - 1) * pageSize).Take(pageSize).ToListAsync(ct); return (items, total); } + public Task AddAsync(FileRecord file, CancellationToken ct) => db.Files.AddAsync(file, ct).AsTask(); + public Task AddOcrAsync(OcrResult value, CancellationToken ct) => db.OcrResults.AddAsync(value, ct).AsTask(); public Task AddScanAsync(VirusScanResult value, CancellationToken ct) => db.VirusScanResults.AddAsync(value, ct).AsTask(); public Task AddThumbnailAsync(Thumbnail value, CancellationToken ct) => db.Thumbnails.AddAsync(value, ct).AsTask(); public Task AddNotificationAsync(Notification value, CancellationToken ct) => db.Notifications.AddAsync(value, ct).AsTask(); + public Task AuditAsync(Guid? fileId, string action, string correlationId, string? detail, CancellationToken ct) => db.AuditLogs.AddAsync(new(fileId, action, correlationId, detail), ct).AsTask(); public Task SaveAsync(CancellationToken ct) => db.SaveChangesAsync(ct); } diff --git a/src/FileProcessing.Infrastructure/Services.cs b/src/FileProcessing.Infrastructure/Services.cs index 909e289..0dc24b7 100644 --- a/src/FileProcessing.Infrastructure/Services.cs +++ b/src/FileProcessing.Infrastructure/Services.cs @@ -14,39 +14,39 @@ namespace FileProcessing.Infrastructure; -public sealed class StorageOptions { public const string Section="Minio"; public string Endpoint{get;init;}="localhost:9000";public string AccessKey{get;init;}="minioadmin";public string SecretKey{get;init;}="minioadmin";public string Bucket{get;init;}="files";public bool Secure{get;init;} } -public sealed class RabbitOptions { public const string Section="RabbitMq";public string Host{get;init;}="localhost";public string UserName{get;init;}="guest";public string Password{get;init;}="guest";public string Queue{get;init;}="file-processing";public ushort Prefetch{get;init;}=4; } -public sealed class ClamAvOptions { public const string Section="ClamAV";public string Host{get;init;}="localhost";public int Port{get;init;}=3310;public int TimeoutSeconds{get;init;}=120; } -public sealed class OcrOptions { public const string Section="OCR";public string Executable{get;init;}="tesseract";public string Language{get;init;}="eng";public int TimeoutSeconds{get;init;}=120; } -public sealed class ThumbnailOptions { public const string Section="Thumbnails";public int Width{get;init;}=320;public int Height{get;init;}=320; } +public sealed class StorageOptions { public const string Section = "Minio"; public string Endpoint { get; init; } = "localhost:9000"; public string AccessKey { get; init; } = "minioadmin"; public string SecretKey { get; init; } = "minioadmin"; public string Bucket { get; init; } = "files"; public bool Secure { get; init; } } +public sealed class RabbitOptions { public const string Section = "RabbitMq"; public string Host { get; init; } = "localhost"; public string UserName { get; init; } = "guest"; public string Password { get; init; } = "guest"; public string Queue { get; init; } = "file-processing"; public ushort Prefetch { get; init; } = 4; } +public sealed class ClamAvOptions { public const string Section = "ClamAV"; public string Host { get; init; } = "localhost"; public int Port { get; init; } = 3310; public int TimeoutSeconds { get; init; } = 120; } +public sealed class OcrOptions { public const string Section = "OCR"; public string Executable { get; init; } = "tesseract"; public string Language { get; init; } = "eng"; public int TimeoutSeconds { get; init; } = 120; } +public sealed class ThumbnailOptions { public const string Section = "Thumbnails"; public int Width { get; init; } = 320; public int Height { get; init; } = 320; } -public sealed class MinioBlobStorage(IMinioClient client,Microsoft.Extensions.Options.IOptions settings):IBlobStorage +public sealed class MinioBlobStorage(IMinioClient client, Microsoft.Extensions.Options.IOptions settings) : IBlobStorage { - private readonly StorageOptions o=settings.Value; - private async Task EnsureAsync(CancellationToken ct){if(!await client.BucketExistsAsync(new BucketExistsArgs().WithBucket(o.Bucket),ct))await client.MakeBucketAsync(new MakeBucketArgs().WithBucket(o.Bucket),ct);} - public async Task PutAsync(string name,Stream content,string type,IReadOnlyDictionary? metadata,CancellationToken ct){await EnsureAsync(ct);var args=new PutObjectArgs().WithBucket(o.Bucket).WithObject(name).WithStreamData(content).WithObjectSize(content.CanSeek?content.Length:-1).WithContentType(type);if(metadata is not null)args.WithHeaders(new Dictionary(metadata));await client.PutObjectAsync(args,ct);} - public async Task GetAsync(string name,CancellationToken ct){var ms=new MemoryStream();await client.GetObjectAsync(new GetObjectArgs().WithBucket(o.Bucket).WithObject(name).WithCallbackStream(async (stream,token)=>await stream.CopyToAsync(ms,token)),ct);ms.Position=0;return ms;} - public Task DeleteAsync(string name,CancellationToken ct)=>client.RemoveObjectAsync(new RemoveObjectArgs().WithBucket(o.Bucket).WithObject(name),ct); - public Task PresignedGetAsync(string name,TimeSpan lifetime,CancellationToken ct)=>client.PresignedGetObjectAsync(new PresignedGetObjectArgs().WithBucket(o.Bucket).WithObject(name).WithExpiry((int)lifetime.TotalSeconds)); + private readonly StorageOptions o = settings.Value; + private async Task EnsureAsync(CancellationToken ct) { if (!await client.BucketExistsAsync(new BucketExistsArgs().WithBucket(o.Bucket), ct)) await client.MakeBucketAsync(new MakeBucketArgs().WithBucket(o.Bucket), ct); } + public async Task PutAsync(string name, Stream content, string type, IReadOnlyDictionary? metadata, CancellationToken ct) { await EnsureAsync(ct); var args = new PutObjectArgs().WithBucket(o.Bucket).WithObject(name).WithStreamData(content).WithObjectSize(content.CanSeek ? content.Length : -1).WithContentType(type); if (metadata is not null) args.WithHeaders(new Dictionary(metadata)); await client.PutObjectAsync(args, ct); } + public async Task GetAsync(string name, CancellationToken ct) { var ms = new MemoryStream(); await client.GetObjectAsync(new GetObjectArgs().WithBucket(o.Bucket).WithObject(name).WithCallbackStream(async (stream, token) => await stream.CopyToAsync(ms, token)), ct); ms.Position = 0; return ms; } + public Task DeleteAsync(string name, CancellationToken ct) => client.RemoveObjectAsync(new RemoveObjectArgs().WithBucket(o.Bucket).WithObject(name), ct); + public Task PresignedGetAsync(string name, TimeSpan lifetime, CancellationToken ct) => client.PresignedGetObjectAsync(new PresignedGetObjectArgs().WithBucket(o.Bucket).WithObject(name).WithExpiry((int)lifetime.TotalSeconds)); } -public sealed class RabbitJobPublisher(Microsoft.Extensions.Options.IOptions settings):IJobPublisher +public sealed class RabbitJobPublisher(Microsoft.Extensions.Options.IOptions settings) : IJobPublisher { - private readonly RabbitOptions o=settings.Value; - public async Task PublishAsync(FileJob job,byte priority,CancellationToken ct){var factory=new ConnectionFactory{HostName=o.Host,UserName=o.UserName,Password=o.Password,AutomaticRecoveryEnabled=true};await using var connection=await factory.CreateConnectionAsync(ct);await using var channel=await connection.CreateChannelAsync(new CreateChannelOptions(true,true),ct);var args=new Dictionary{{"x-max-priority",10},{"x-dead-letter-exchange","file-processing.dlx"}};await channel.ExchangeDeclareAsync("file-processing.dlx",ExchangeType.Direct,true,false,null,false,ct);await channel.QueueDeclareAsync(o.Queue,true,false,false,args,false,ct);var props=new BasicProperties{Persistent=true,Priority=priority,MessageId=job.FileId.ToString(),CorrelationId=job.CorrelationId,ContentType="application/json"};await channel.BasicPublishAsync("",o.Queue,true,props,JsonSerializer.SerializeToUtf8Bytes(job),ct);} + private readonly RabbitOptions o = settings.Value; + public async Task PublishAsync(FileJob job, byte priority, CancellationToken ct) { var factory = new ConnectionFactory { HostName = o.Host, UserName = o.UserName, Password = o.Password, AutomaticRecoveryEnabled = true }; await using var connection = await factory.CreateConnectionAsync(ct); await using var channel = await connection.CreateChannelAsync(new CreateChannelOptions(true, true), ct); var args = new Dictionary { { "x-max-priority", 10 }, { "x-dead-letter-exchange", "file-processing.dlx" } }; await channel.ExchangeDeclareAsync("file-processing.dlx", ExchangeType.Direct, true, false, null, false, ct); await channel.QueueDeclareAsync(o.Queue, true, false, false, args, false, ct); var props = new BasicProperties { Persistent = true, Priority = priority, MessageId = job.FileId.ToString(), CorrelationId = job.CorrelationId, ContentType = "application/json" }; await channel.BasicPublishAsync("", o.Queue, true, props, JsonSerializer.SerializeToUtf8Bytes(job), ct); } } -public sealed class ClamAvScanner(Microsoft.Extensions.Options.IOptions settings):IVirusScanner +public sealed class ClamAvScanner(Microsoft.Extensions.Options.IOptions settings) : IVirusScanner { - private readonly ClamAvOptions o=settings.Value; - public async Task ScanAsync(Stream file,CancellationToken ct){using var timeout=CancellationTokenSource.CreateLinkedTokenSource(ct);timeout.CancelAfter(TimeSpan.FromSeconds(o.TimeoutSeconds));using var client=new TcpClient();await client.ConnectAsync(o.Host,o.Port,timeout.Token);await using var network=client.GetStream();await network.WriteAsync("zINSTREAM\0"u8.ToArray(),timeout.Token);var buffer=new byte[8192];int read;while((read=await file.ReadAsync(buffer,timeout.Token))>0){await network.WriteAsync(BitConverter.GetBytes(System.Net.IPAddress.HostToNetworkOrder(read)),timeout.Token);await network.WriteAsync(buffer.AsMemory(0,read),timeout.Token);}await network.WriteAsync(new byte[4],timeout.Token);var responseBuffer=new byte[1024];var count=await network.ReadAsync(responseBuffer,timeout.Token);var response=Encoding.UTF8.GetString(responseBuffer,0,count).TrimEnd('\0');var infected=response.Contains(" FOUND",StringComparison.Ordinal);return new(infected,infected?response:null);} + private readonly ClamAvOptions o = settings.Value; + public async Task ScanAsync(Stream file, CancellationToken ct) { using var timeout = CancellationTokenSource.CreateLinkedTokenSource(ct); timeout.CancelAfter(TimeSpan.FromSeconds(o.TimeoutSeconds)); using var client = new TcpClient(); await client.ConnectAsync(o.Host, o.Port, timeout.Token); await using var network = client.GetStream(); await network.WriteAsync("zINSTREAM\0"u8.ToArray(), timeout.Token); var buffer = new byte[8192]; int read; while ((read = await file.ReadAsync(buffer, timeout.Token)) > 0) { await network.WriteAsync(BitConverter.GetBytes(System.Net.IPAddress.HostToNetworkOrder(read)), timeout.Token); await network.WriteAsync(buffer.AsMemory(0, read), timeout.Token); } await network.WriteAsync(new byte[4], timeout.Token); var responseBuffer = new byte[1024]; var count = await network.ReadAsync(responseBuffer, timeout.Token); var response = Encoding.UTF8.GetString(responseBuffer, 0, count).TrimEnd('\0'); var infected = response.Contains(" FOUND", StringComparison.Ordinal); return new(infected, infected ? response : null); } } -public sealed class TesseractOcrProvider(Microsoft.Extensions.Options.IOptions settings):IOcrProvider +public sealed class TesseractOcrProvider(Microsoft.Extensions.Options.IOptions settings) : IOcrProvider { - private readonly OcrOptions o=settings.Value; - public async Task ExtractAsync(Stream file,string contentType,CancellationToken ct){if(contentType=="text/plain"){using var reader=new StreamReader(file,Encoding.UTF8,true,leaveOpen:true);return new(await reader.ReadToEndAsync(ct),"plain-text");}var input=Path.GetTempFileName();var output=Path.Combine(Path.GetTempPath(),Guid.NewGuid().ToString("N"));try{await using(var fs=File.Create(input))await file.CopyToAsync(fs,ct);using var process=Process.Start(new ProcessStartInfo(o.Executable,$"\"{input}\" \"{output}\" -l {o.Language}"){RedirectStandardError=true,UseShellExecute=false,CreateNoWindow=true})??throw new InvalidOperationException("Unable to start Tesseract.");using var timeout=CancellationTokenSource.CreateLinkedTokenSource(ct);timeout.CancelAfter(TimeSpan.FromSeconds(o.TimeoutSeconds));await process.WaitForExitAsync(timeout.Token);if(process.ExitCode!=0)throw new InvalidOperationException(await process.StandardError.ReadToEndAsync(timeout.Token));return new(await File.ReadAllTextAsync(output+".txt",ct),"tesseract");}finally{File.Delete(input);File.Delete(output+".txt");}} + private readonly OcrOptions o = settings.Value; + public async Task ExtractAsync(Stream file, string contentType, CancellationToken ct) { if (contentType == "text/plain") { using var reader = new StreamReader(file, Encoding.UTF8, true, leaveOpen: true); return new(await reader.ReadToEndAsync(ct), "plain-text"); } var input = Path.GetTempFileName(); var output = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString("N")); try { await using (var fs = File.Create(input)) await file.CopyToAsync(fs, ct); using var process = Process.Start(new ProcessStartInfo(o.Executable, $"\"{input}\" \"{output}\" -l {o.Language}") { RedirectStandardError = true, UseShellExecute = false, CreateNoWindow = true }) ?? throw new InvalidOperationException("Unable to start Tesseract."); using var timeout = CancellationTokenSource.CreateLinkedTokenSource(ct); timeout.CancelAfter(TimeSpan.FromSeconds(o.TimeoutSeconds)); await process.WaitForExitAsync(timeout.Token); if (process.ExitCode != 0) throw new InvalidOperationException(await process.StandardError.ReadToEndAsync(timeout.Token)); return new(await File.ReadAllTextAsync(output + ".txt", ct), "tesseract"); } finally { File.Delete(input); File.Delete(output + ".txt"); } } } -public sealed class ImageThumbnailGenerator(Microsoft.Extensions.Options.IOptions settings):IThumbnailGenerator +public sealed class ImageThumbnailGenerator(Microsoft.Extensions.Options.IOptions settings) : IThumbnailGenerator { - private readonly ThumbnailOptions o=settings.Value; - public async Task GenerateAsync(Stream file,string contentType,CancellationToken ct){if(!contentType.StartsWith("image/",StringComparison.Ordinal))return null;using var image=await Image.LoadAsync(file,ct);image.Mutate(x=>x.Resize(new ResizeOptions{Size=new(o.Width,o.Height),Mode=ResizeMode.Max}));await using var ms=new MemoryStream();await image.SaveAsync(ms,new JpegEncoder{Quality=80},ct);return new(ms.ToArray(),"image/jpeg",image.Width,image.Height,".jpg");} + private readonly ThumbnailOptions o = settings.Value; + public async Task GenerateAsync(Stream file, string contentType, CancellationToken ct) { if (!contentType.StartsWith("image/", StringComparison.Ordinal)) return null; using var image = await Image.LoadAsync(file, ct); image.Mutate(x => x.Resize(new ResizeOptions { Size = new(o.Width, o.Height), Mode = ResizeMode.Max })); await using var ms = new MemoryStream(); await image.SaveAsync(ms, new JpegEncoder { Quality = 80 }, ct); return new(ms.ToArray(), "image/jpeg", image.Width, image.Height, ".jpg"); } } -public sealed class WebhookNotificationSender(HttpClient client,Microsoft.Extensions.Configuration.IConfiguration configuration):INotificationSender { public string Channel=>"Webhook";public async Task SendAsync(NotificationMessage message,CancellationToken ct){var url=configuration["Notifications:WebhookUrl"];if(string.IsNullOrWhiteSpace(url))return;using var response=await client.PostAsJsonAsync(url,message,ct);response.EnsureSuccessStatusCode();} } +public sealed class WebhookNotificationSender(HttpClient client, Microsoft.Extensions.Configuration.IConfiguration configuration) : INotificationSender { public string Channel => "Webhook"; public async Task SendAsync(NotificationMessage message, CancellationToken ct) { var url = configuration["Notifications:WebhookUrl"]; if (string.IsNullOrWhiteSpace(url)) return; using var response = await client.PostAsJsonAsync(url, message, ct); response.EnsureSuccessStatusCode(); } } diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Application.dll b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Application.dll deleted file mode 100644 index 5600ec1..0000000 Binary files a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Application.dll and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Application.pdb b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Application.pdb deleted file mode 100644 index 2118379..0000000 Binary files a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Application.pdb and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Contracts.dll b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Contracts.dll deleted file mode 100644 index 36b4f21..0000000 Binary files a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Contracts.dll and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Contracts.pdb b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Contracts.pdb deleted file mode 100644 index 9b799b5..0000000 Binary files a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Contracts.pdb and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Domain.dll b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Domain.dll deleted file mode 100644 index 88c7b60..0000000 Binary files a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Domain.dll and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Domain.pdb b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Domain.pdb deleted file mode 100644 index 646827e..0000000 Binary files a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Domain.pdb and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Infrastructure.deps.json b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Infrastructure.deps.json deleted file mode 100644 index f02d6e3..0000000 --- a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Infrastructure.deps.json +++ /dev/null @@ -1,765 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "FileProcessing.Infrastructure/1.0.0": { - "dependencies": { - "FileProcessing.Application": "1.0.0", - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.Extensions.Http": "10.0.0", - "Minio": "7.0.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "RabbitMQ.Client": "7.2.0", - "SixLabors.ImageSharp": "3.1.12", - "StackExchange.Redis": "2.10.1" - }, - "runtime": { - "FileProcessing.Infrastructure.dll": {} - } - }, - "CommunityToolkit.HighPerformance/8.4.0": { - "runtime": { - "lib/net8.0/CommunityToolkit.HighPerformance.dll": { - "assemblyVersion": "8.4.0.0", - "fileVersion": "8.4.0.1" - } - } - }, - "FluentValidation/12.1.1": { - "runtime": { - "lib/net8.0/FluentValidation.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.1.1.0" - } - } - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "dependencies": { - "FluentValidation": "12.1.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.1.1.0" - } - } - }, - "MediatR/14.0.0": { - "dependencies": { - "MediatR.Contracts": "2.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0" - }, - "runtime": { - "lib/net10.0/MediatR.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.0.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0", - "Microsoft.Extensions.Caching.Memory": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.Extensions.Caching.Memory": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Diagnostics/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Http/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Diagnostics": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Http.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Logging/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Options/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Binder": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "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.Tokens/8.14.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Minio/7.0.0": { - "dependencies": { - "CommunityToolkit.HighPerformance": "8.4.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "System.IO.Hashing": "9.0.10", - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/Minio.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.0.0" - } - } - }, - "Npgsql/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.EntityFrameworkCore.Relational": "10.0.0", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "runtime": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "2.2.8.1080" - } - } - }, - "RabbitMQ.Client/7.2.0": { - "dependencies": { - "System.Threading.RateLimiting": "8.0.0" - }, - "runtime": { - "lib/net8.0/RabbitMQ.Client.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.2.0.0" - } - } - }, - "SixLabors.ImageSharp/3.1.12": { - "runtime": { - "lib/net6.0/SixLabors.ImageSharp.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.1.12.0" - } - } - }, - "StackExchange.Redis/2.10.1": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Pipelines.Sockets.Unofficial": "2.2.8", - "System.IO.Hashing": "9.0.10" - }, - "runtime": { - "lib/net8.0/StackExchange.Redis.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.10.1.65101" - } - } - }, - "System.IO.Hashing/9.0.10": { - "runtime": { - "lib/net9.0/System.IO.Hashing.dll": { - "assemblyVersion": "9.0.0.10", - "fileVersion": "9.0.1025.47515" - } - } - }, - "System.Reactive/6.0.1": { - "runtime": { - "lib/net6.0/System.Reactive.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.7420" - } - } - }, - "System.Threading.RateLimiting/8.0.0": { - "runtime": { - "lib/net8.0/System.Threading.RateLimiting.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "FileProcessing.Application/1.0.0": { - "dependencies": { - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "FileProcessing.Shared": "1.0.0", - "FluentValidation.DependencyInjectionExtensions": "12.1.1", - "MediatR": "14.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "runtime": { - "FileProcessing.Application.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Contracts/1.0.0": { - "runtime": { - "FileProcessing.Contracts.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Domain/1.0.0": { - "runtime": { - "FileProcessing.Domain.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Shared/1.0.0": { - "runtime": { - "FileProcessing.Shared.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "FileProcessing.Infrastructure/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "CommunityToolkit.HighPerformance/8.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg==", - "path": "communitytoolkit.highperformance/8.4.0", - "hashPath": "communitytoolkit.highperformance.8.4.0.nupkg.sha512" - }, - "FluentValidation/12.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==", - "path": "fluentvalidation/12.1.1", - "hashPath": "fluentvalidation.12.1.1.nupkg.sha512" - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D0VXh4dtjjX2aQizuaa0g6R8X3U1JaVqJPfGCvLwZX9t/O2h7tkpbitbadQMfwcgSPdDbI2vDxuwRMv/Uf9dHA==", - "path": "fluentvalidation.dependencyinjectionextensions/12.1.1", - "hashPath": "fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512" - }, - "MediatR/14.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r5fwUO6NBvOFKaiMRx/gRrD1MEHHOio5yEdzSLs2OMeD2e9ZKnZaBQM6A6vVBEWJF4VY41vplXmDMOY1YvpqNA==", - "path": "mediatr/14.0.0", - "hashPath": "mediatr.14.0.0.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", - "path": "microsoft.entityframeworkcore/10.0.0", - "hashPath": "microsoft.entityframeworkcore.10.0.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.0", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", - "path": "microsoft.entityframeworkcore.relational/10.0.0", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zcoy6H9mSoGyvr7UvlGokEZrlZkcPCICPZr8mCsSt9U/N8eeCwCXwKF5bShdA66R0obxBCwP4AxomQHvVkC/uA==", - "path": "microsoft.extensions.caching.abstractions/10.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-krK19MKp0BNiR9rpBDW7PKSrTMLVlifS9am3CVc4O1Jq6GWz0o4F+sw5OSL4L3mVd56W8l6JRgghUa2KB51vOw==", - "path": "microsoft.extensions.caching.memory/10.0.0", - "hashPath": "microsoft.extensions.caching.memory.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H4SWETCh/cC5L1WtWchHR6LntGk3rDTTznZMssr4cL8IbDmMWBxY+MOGDc/ASnqNolLKPIWHWeuC1ddiL/iNPw==", - "path": "microsoft.extensions.configuration/10.0.0", - "hashPath": "microsoft.extensions.configuration.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", - "path": "microsoft.extensions.configuration.abstractions/10.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tMF9wNh+hlyYDWB8mrFCQHQmWHlRosol1b/N2Jrefy1bFLnuTlgSYmPyHNmz8xVQgs7DpXytBRWxGhG+mSTp0g==", - "path": "microsoft.extensions.configuration.binder/10.0.0", - "hashPath": "microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", - "path": "microsoft.extensions.dependencyinjection/10.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xjkxIPgrT0mKTfBwb+CVqZnRchyZgzKIfDQOp8z+WUC6vPe3WokIf71z+hJPkH0YBUYJwa7Z/al1R087ib9oiw==", - "path": "microsoft.extensions.diagnostics/10.0.0", - "hashPath": "microsoft.extensions.diagnostics.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SfK89ytD61S7DgzorFljSkUeluC1ncn6dtZgwc0ot39f/BEYWBl5jpgvodxduoYAs1d9HG8faCDRZxE95UMo2A==", - "path": "microsoft.extensions.diagnostics.abstractions/10.0.0", - "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Http/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r+mSvm/Ryc/iYcc9zcUG5VP9EBB8PL1rgVU6macEaYk45vmGRk9PntM3aynFKN6s3Q4WW36kedTycIctctpTUQ==", - "path": "microsoft.extensions.http/10.0.0", - "hashPath": "microsoft.extensions.http.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", - "path": "microsoft.extensions.logging/10.0.0", - "hashPath": "microsoft.extensions.logging.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", - "path": "microsoft.extensions.logging.abstractions/10.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", - "path": "microsoft.extensions.options/10.0.0", - "hashPath": "microsoft.extensions.options.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tL9cSl3maS5FPzp/3MtlZI21ExWhni0nnUCF8HY4npTsINw45n9SNDbkKXBMtFyUFGSsQep25fHIDN4f/Vp3AQ==", - "path": "microsoft.extensions.options.configurationextensions/10.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", - "path": "microsoft.extensions.primitives/10.0.0", - "hashPath": "microsoft.extensions.primitives.10.0.0.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.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" - }, - "Minio/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GiCD0koYBM8/VCXRkrfSzOtySEmrA2ngceJuxRO5H+/uGodiTX+XPaUHQq9/1DpaeBxWnkmrgqu52dwuZqIYgw==", - "path": "minio/7.0.0", - "hashPath": "minio.7.0.0.nupkg.sha512" - }, - "Npgsql/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "path": "npgsql/10.0.0", - "hashPath": "npgsql.10.0.0.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", - "path": "pipelines.sockets.unofficial/2.2.8", - "hashPath": "pipelines.sockets.unofficial.2.2.8.nupkg.sha512" - }, - "RabbitMQ.Client/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PPQ7cF7lwbhqC4up6en1bTUZlz06YqQwJecOJzsguTtyhNA7oL5uNDZIx/h6ZfcyPZV4V3DYKSCxfm4RUFLcbA==", - "path": "rabbitmq.client/7.2.0", - "hashPath": "rabbitmq.client.7.2.0.nupkg.sha512" - }, - "SixLabors.ImageSharp/3.1.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", - "path": "sixlabors.imagesharp/3.1.12", - "hashPath": "sixlabors.imagesharp.3.1.12.nupkg.sha512" - }, - "StackExchange.Redis/2.10.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-se08WZvD42H3bV4XBW07pupTiE2/72qStKyi/lRqqcijksFWfRtwLTuhFtZ4OX19f4+we/2qruFZBXYJBFc8PQ==", - "path": "stackexchange.redis/2.10.1", - "hashPath": "stackexchange.redis.2.10.1.nupkg.sha512" - }, - "System.IO.Hashing/9.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9gv5z71xaWWmcGEs4bXdreIhKp2kYLK2fvPK5gQkgnWMYvZ8ieaxKofDjxL3scZiEYfi/yW2nJTiKV2awcWEdA==", - "path": "system.io.hashing/9.0.10", - "hashPath": "system.io.hashing.9.0.10.nupkg.sha512" - }, - "System.Reactive/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", - "path": "system.reactive/6.0.1", - "hashPath": "system.reactive.6.0.1.nupkg.sha512" - }, - "System.Threading.RateLimiting/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7mu9v0QDv66ar3DpGSZHg9NuNcxDaaAcnMULuZlaTpP9+hwXhrxNGsF5GmLkSHxFdb5bBc1TzeujsRgTrPWi+Q==", - "path": "system.threading.ratelimiting/8.0.0", - "hashPath": "system.threading.ratelimiting.8.0.0.nupkg.sha512" - }, - "FileProcessing.Application/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Infrastructure.dll b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Infrastructure.dll deleted file mode 100644 index 7e9fc6d..0000000 Binary files a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Infrastructure.dll and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Infrastructure.pdb b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Infrastructure.pdb deleted file mode 100644 index 3aeb5a8..0000000 Binary files a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Infrastructure.pdb and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Shared.dll b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Shared.dll deleted file mode 100644 index 2ffdd5c..0000000 Binary files a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Shared.dll and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Shared.pdb b/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Shared.pdb deleted file mode 100644 index 3b07c6b..0000000 Binary files a/src/FileProcessing.Infrastructure/bin/Debug/net10.0/FileProcessing.Shared.pdb and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProc.D467C3FD.Up2Date b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProc.D467C3FD.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.AssemblyInfo.cs b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.AssemblyInfo.cs deleted file mode 100644 index 515f722..0000000 --- a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.AssemblyInfo.cs +++ /dev/null @@ -1,22 +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: System.Reflection.AssemblyCompanyAttribute("FileProcessing.Infrastructure")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("FileProcessing.Infrastructure")] -[assembly: System.Reflection.AssemblyTitleAttribute("FileProcessing.Infrastructure")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.AssemblyInfoInputs.cache b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.AssemblyInfoInputs.cache deleted file mode 100644 index 2e430aa..0000000 --- a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -637e59d9d656abf8fff95e2d3a26c7e0d82e8a82f8206c9745c7504d1082bc87 diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index e0c7782..0000000 --- a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,18 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property.EntryPointFilePath = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = FileProcessing.Infrastructure -build_property.ProjectDir = D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.GlobalUsings.g.cs b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.assets.cache b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.assets.cache deleted file mode 100644 index 3c0a199..0000000 Binary files a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.assets.cache and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.csproj.AssemblyReference.cache b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.csproj.AssemblyReference.cache deleted file mode 100644 index c2448b4..0000000 Binary files a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.csproj.AssemblyReference.cache and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.csproj.CoreCompileInputs.cache b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.csproj.CoreCompileInputs.cache deleted file mode 100644 index 327c532..0000000 --- a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -422738ae5adad4b7a02f4e53954dd041b4b970d49f387dbc2ec27eea9f6e3191 diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.csproj.FileListAbsolute.txt b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.csproj.FileListAbsolute.txt deleted file mode 100644 index 8bbaf51..0000000 --- a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,21 +0,0 @@ -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\obj\Debug\net10.0\FileProcessing.Infrastructure.csproj.AssemblyReference.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\obj\Debug\net10.0\FileProcessing.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\obj\Debug\net10.0\FileProcessing.Infrastructure.AssemblyInfoInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\obj\Debug\net10.0\FileProcessing.Infrastructure.AssemblyInfo.cs -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\obj\Debug\net10.0\FileProcessing.Infrastructure.csproj.CoreCompileInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Infrastructure.deps.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Infrastructure.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Infrastructure.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Application.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Contracts.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Domain.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Shared.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Application.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Domain.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Contracts.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\bin\Debug\net10.0\FileProcessing.Shared.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\obj\Debug\net10.0\FileProc.D467C3FD.Up2Date -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\obj\Debug\net10.0\FileProcessing.Infrastructure.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\obj\Debug\net10.0\refint\FileProcessing.Infrastructure.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\obj\Debug\net10.0\FileProcessing.Infrastructure.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Infrastructure\obj\Debug\net10.0\ref\FileProcessing.Infrastructure.dll diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.dll b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.dll deleted file mode 100644 index 7e9fc6d..0000000 Binary files a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.dll and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.pdb b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.pdb deleted file mode 100644 index 3aeb5a8..0000000 Binary files a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/FileProcessing.Infrastructure.pdb and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/ref/FileProcessing.Infrastructure.dll b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/ref/FileProcessing.Infrastructure.dll deleted file mode 100644 index 08373d0..0000000 Binary files a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/ref/FileProcessing.Infrastructure.dll and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/refint/FileProcessing.Infrastructure.dll b/src/FileProcessing.Infrastructure/obj/Debug/net10.0/refint/FileProcessing.Infrastructure.dll deleted file mode 100644 index 08373d0..0000000 Binary files a/src/FileProcessing.Infrastructure/obj/Debug/net10.0/refint/FileProcessing.Infrastructure.dll and /dev/null differ diff --git a/src/FileProcessing.Infrastructure/obj/FileProcessing.Infrastructure.csproj.nuget.dgspec.json b/src/FileProcessing.Infrastructure/obj/FileProcessing.Infrastructure.csproj.nuget.dgspec.json deleted file mode 100644 index feaaf43..0000000 --- a/src/FileProcessing.Infrastructure/obj/FileProcessing.Infrastructure.csproj.nuget.dgspec.json +++ /dev/null @@ -1,1791 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj": {} - }, - "projects": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "projectName": "FileProcessing.Application", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "FluentValidation.DependencyInjectionExtensions": { - "target": "Package", - "version": "[12.1.1, )" - }, - "MediatR": { - "target": "Package", - "version": "[14.0.0, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions": { - "target": "Package", - "version": "[10.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "projectName": "FileProcessing.Contracts", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "projectName": "FileProcessing.Domain", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj", - "projectName": "FileProcessing.Infrastructure", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Http": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Minio": { - "target": "Package", - "version": "[7.0.0, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - }, - "RabbitMQ.Client": { - "target": "Package", - "version": "[7.2.0, )" - }, - "SixLabors.ImageSharp": { - "target": "Package", - "version": "[3.1.12, )" - }, - "StackExchange.Redis": { - "target": "Package", - "version": "[2.10.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "projectName": "FileProcessing.Shared", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Infrastructure/obj/FileProcessing.Infrastructure.csproj.nuget.g.props b/src/FileProcessing.Infrastructure/obj/FileProcessing.Infrastructure.csproj.nuget.g.props deleted file mode 100644 index 05b1c8f..0000000 --- a/src/FileProcessing.Infrastructure/obj/FileProcessing.Infrastructure.csproj.nuget.g.props +++ /dev/null @@ -1,20 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Dell\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - - - - - \ No newline at end of file diff --git a/src/FileProcessing.Infrastructure/obj/FileProcessing.Infrastructure.csproj.nuget.g.targets b/src/FileProcessing.Infrastructure/obj/FileProcessing.Infrastructure.csproj.nuget.g.targets deleted file mode 100644 index 237fda5..0000000 --- a/src/FileProcessing.Infrastructure/obj/FileProcessing.Infrastructure.csproj.nuget.g.targets +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/FileProcessing.Infrastructure/obj/project.assets.json b/src/FileProcessing.Infrastructure/obj/project.assets.json deleted file mode 100644 index 2171745..0000000 --- a/src/FileProcessing.Infrastructure/obj/project.assets.json +++ /dev/null @@ -1,2117 +0,0 @@ -{ - "version": 4, - "targets": { - "net10.0": { - "CommunityToolkit.HighPerformance/8.4.0": { - "type": "package", - "compile": { - "lib/net8.0/CommunityToolkit.HighPerformance.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/CommunityToolkit.HighPerformance.dll": { - "related": ".pdb;.xml" - } - } - }, - "FluentValidation/12.1.1": { - "type": "package", - "compile": { - "lib/net8.0/FluentValidation.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/FluentValidation.dll": { - "related": ".xml" - } - } - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "type": "package", - "dependencies": { - "FluentValidation": "12.1.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0" - }, - "compile": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "related": ".xml" - } - } - }, - "MediatR/14.0.0": { - "type": "package", - "dependencies": { - "MediatR.Contracts": "[2.0.1, 3.0.0)", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0" - }, - "compile": { - "lib/net10.0/MediatR.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/MediatR.dll": { - "related": ".xml" - } - } - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0", - "Microsoft.EntityFrameworkCore.Analyzers": "10.0.0", - "Microsoft.Extensions.Caching.Memory": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { - "type": "package" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.Extensions.Caching.Memory": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Diagnostics/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Http/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Diagnostics": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Http.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Http.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Options/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Binder": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Minio/7.0.0": { - "type": "package", - "dependencies": { - "CommunityToolkit.HighPerformance": "8.4.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4", - "Microsoft.Extensions.Logging": "9.0.4", - "System.IO.Hashing": "9.0.4", - "System.Reactive": "6.0.1" - }, - "compile": { - "lib/net8.0/Minio.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/Minio.dll": { - "related": ".pdb;.xml" - } - } - }, - "Npgsql/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", - "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", - "Npgsql": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - } - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "type": "package", - "compile": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "related": ".xml" - } - } - }, - "RabbitMQ.Client/7.2.0": { - "type": "package", - "dependencies": { - "System.Threading.RateLimiting": "8.0.0" - }, - "compile": { - "lib/net8.0/RabbitMQ.Client.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/RabbitMQ.Client.dll": { - "related": ".xml" - } - } - }, - "SixLabors.ImageSharp/3.1.12": { - "type": "package", - "compile": { - "lib/net6.0/SixLabors.ImageSharp.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/SixLabors.ImageSharp.dll": { - "related": ".xml" - } - }, - "build": { - "build/SixLabors.ImageSharp.props": {} - } - }, - "StackExchange.Redis/2.10.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Pipelines.Sockets.Unofficial": "2.2.8", - "System.IO.Hashing": "9.0.10" - }, - "compile": { - "lib/net8.0/StackExchange.Redis.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/StackExchange.Redis.dll": { - "related": ".xml" - } - } - }, - "System.IO.Hashing/9.0.10": { - "type": "package", - "compile": { - "lib/net9.0/System.IO.Hashing.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/System.IO.Hashing.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "System.Reactive/6.0.1": { - "type": "package", - "compile": { - "lib/net6.0/System.Reactive.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Reactive.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Threading.RateLimiting/8.0.0": { - "type": "package", - "compile": { - "lib/net8.0/System.Threading.RateLimiting.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Threading.RateLimiting.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "FileProcessing.Application/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "FileProcessing.Shared": "1.0.0", - "FluentValidation.DependencyInjectionExtensions": "12.1.1", - "MediatR": "14.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "compile": { - "bin/placeholder/FileProcessing.Application.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Application.dll": {} - } - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Contracts.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Contracts.dll": {} - } - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Domain.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Domain.dll": {} - } - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Shared.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Shared.dll": {} - } - } - } - }, - "libraries": { - "CommunityToolkit.HighPerformance/8.4.0": { - "sha512": "flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg==", - "type": "package", - "path": "communitytoolkit.highperformance/8.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "License.md", - "ThirdPartyNotices.txt", - "communitytoolkit.highperformance.8.4.0.nupkg.sha512", - "communitytoolkit.highperformance.nuspec", - "lib/net7.0/CommunityToolkit.HighPerformance.dll", - "lib/net7.0/CommunityToolkit.HighPerformance.pdb", - "lib/net7.0/CommunityToolkit.HighPerformance.xml", - "lib/net8.0/CommunityToolkit.HighPerformance.dll", - "lib/net8.0/CommunityToolkit.HighPerformance.pdb", - "lib/net8.0/CommunityToolkit.HighPerformance.xml", - "lib/netstandard2.0/CommunityToolkit.HighPerformance.dll", - "lib/netstandard2.0/CommunityToolkit.HighPerformance.pdb", - "lib/netstandard2.0/CommunityToolkit.HighPerformance.xml", - "lib/netstandard2.1/CommunityToolkit.HighPerformance.dll", - "lib/netstandard2.1/CommunityToolkit.HighPerformance.pdb", - "lib/netstandard2.1/CommunityToolkit.HighPerformance.xml" - ] - }, - "FluentValidation/12.1.1": { - "sha512": "EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==", - "type": "package", - "path": "fluentvalidation/12.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.12.1.1.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net8.0/FluentValidation.dll", - "lib/net8.0/FluentValidation.xml" - ] - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "sha512": "D0VXh4dtjjX2aQizuaa0g6R8X3U1JaVqJPfGCvLwZX9t/O2h7tkpbitbadQMfwcgSPdDbI2vDxuwRMv/Uf9dHA==", - "type": "package", - "path": "fluentvalidation.dependencyinjectionextensions/12.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512", - "fluentvalidation.dependencyinjectionextensions.nuspec", - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll", - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.xml" - ] - }, - "MediatR/14.0.0": { - "sha512": "r5fwUO6NBvOFKaiMRx/gRrD1MEHHOio5yEdzSLs2OMeD2e9ZKnZaBQM6A6vVBEWJF4VY41vplXmDMOY1YvpqNA==", - "type": "package", - "path": "mediatr/14.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "README.md", - "gradient_128x128.png", - "lib/net10.0/MediatR.dll", - "lib/net10.0/MediatR.xml", - "lib/net462/MediatR.dll", - "lib/net462/MediatR.xml", - "lib/net8.0/MediatR.dll", - "lib/net8.0/MediatR.xml", - "lib/net9.0/MediatR.dll", - "lib/net9.0/MediatR.xml", - "lib/netstandard2.0/MediatR.dll", - "lib/netstandard2.0/MediatR.xml", - "mediatr.14.0.0.nupkg.sha512", - "mediatr.nuspec" - ] - }, - "MediatR.Contracts/2.0.1": { - "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "type": "package", - "path": "mediatr.contracts/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/netstandard2.0/MediatR.Contracts.dll", - "lib/netstandard2.0/MediatR.Contracts.xml", - "mediatr.contracts.2.0.1.nupkg.sha512", - "mediatr.contracts.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "sha512": "hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", - "type": "package", - "path": "microsoft.entityframeworkcore/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", - "lib/net10.0/Microsoft.EntityFrameworkCore.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "sha512": "C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { - "sha512": "TxHQq0kn0tpYs2ljeRl8jtmWk720B0nteqI6mAZM77HWJpYT9Zj8SkkBBlj8K3Yeq18a6NBjz6YutE+shEk4Ag==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "docs/PACKAGE.md", - "microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "sha512": "A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.0": { - "sha512": "Zcoy6H9mSoGyvr7UvlGokEZrlZkcPCICPZr8mCsSt9U/N8eeCwCXwKF5bShdA66R0obxBCwP4AxomQHvVkC/uA==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/10.0.0": { - "sha512": "krK19MKp0BNiR9rpBDW7PKSrTMLVlifS9am3CVc4O1Jq6GWz0o4F+sw5OSL4L3mVd56W8l6JRgghUa2KB51vOw==", - "type": "package", - "path": "microsoft.extensions.caching.memory/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net462/Microsoft.Extensions.Caching.Memory.dll", - "lib/net462/Microsoft.Extensions.Caching.Memory.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "sha512": "H4SWETCh/cC5L1WtWchHR6LntGk3rDTTznZMssr4cL8IbDmMWBxY+MOGDc/ASnqNolLKPIWHWeuC1ddiL/iNPw==", - "type": "package", - "path": "microsoft.extensions.configuration/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.xml", - "lib/net462/Microsoft.Extensions.Configuration.dll", - "lib/net462/Microsoft.Extensions.Configuration.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "sha512": "d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "sha512": "tMF9wNh+hlyYDWB8mrFCQHQmWHlRosol1b/N2Jrefy1bFLnuTlgSYmPyHNmz8xVQgs7DpXytBRWxGhG+mSTp0g==", - "type": "package", - "path": "microsoft.extensions.configuration.binder/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", - "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/10.0.0": { - "sha512": "f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "sha512": "L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Diagnostics/10.0.0": { - "sha512": "xjkxIPgrT0mKTfBwb+CVqZnRchyZgzKIfDQOp8z+WUC6vPe3WokIf71z+hJPkH0YBUYJwa7Z/al1R087ib9oiw==", - "type": "package", - "path": "microsoft.extensions.diagnostics/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", - "lib/net10.0/Microsoft.Extensions.Diagnostics.dll", - "lib/net10.0/Microsoft.Extensions.Diagnostics.xml", - "lib/net462/Microsoft.Extensions.Diagnostics.dll", - "lib/net462/Microsoft.Extensions.Diagnostics.xml", - "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", - "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", - "lib/net9.0/Microsoft.Extensions.Diagnostics.dll", - "lib/net9.0/Microsoft.Extensions.Diagnostics.xml", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", - "microsoft.extensions.diagnostics.10.0.0.nupkg.sha512", - "microsoft.extensions.diagnostics.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0": { - "sha512": "SfK89ytD61S7DgzorFljSkUeluC1ncn6dtZgwc0ot39f/BEYWBl5jpgvodxduoYAs1d9HG8faCDRZxE95UMo2A==", - "type": "package", - "path": "microsoft.extensions.diagnostics.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", - "microsoft.extensions.diagnostics.abstractions.10.0.0.nupkg.sha512", - "microsoft.extensions.diagnostics.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Http/10.0.0": { - "sha512": "r+mSvm/Ryc/iYcc9zcUG5VP9EBB8PL1rgVU6macEaYk45vmGRk9PntM3aynFKN6s3Q4WW36kedTycIctctpTUQ==", - "type": "package", - "path": "microsoft.extensions.http/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Http.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Http.targets", - "lib/net10.0/Microsoft.Extensions.Http.dll", - "lib/net10.0/Microsoft.Extensions.Http.xml", - "lib/net462/Microsoft.Extensions.Http.dll", - "lib/net462/Microsoft.Extensions.Http.xml", - "lib/net8.0/Microsoft.Extensions.Http.dll", - "lib/net8.0/Microsoft.Extensions.Http.xml", - "lib/net9.0/Microsoft.Extensions.Http.dll", - "lib/net9.0/Microsoft.Extensions.Http.xml", - "lib/netstandard2.0/Microsoft.Extensions.Http.dll", - "lib/netstandard2.0/Microsoft.Extensions.Http.xml", - "microsoft.extensions.http.10.0.0.nupkg.sha512", - "microsoft.extensions.http.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/10.0.0": { - "sha512": "BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", - "type": "package", - "path": "microsoft.extensions.logging/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", - "lib/net10.0/Microsoft.Extensions.Logging.dll", - "lib/net10.0/Microsoft.Extensions.Logging.xml", - "lib/net462/Microsoft.Extensions.Logging.dll", - "lib/net462/Microsoft.Extensions.Logging.xml", - "lib/net8.0/Microsoft.Extensions.Logging.dll", - "lib/net8.0/Microsoft.Extensions.Logging.xml", - "lib/net9.0/Microsoft.Extensions.Logging.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "sha512": "FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "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/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/10.0.0": { - "sha512": "8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", - "type": "package", - "path": "microsoft.extensions.options/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Options.targets", - "buildTransitive/net462/Microsoft.Extensions.Options.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", - "lib/net10.0/Microsoft.Extensions.Options.dll", - "lib/net10.0/Microsoft.Extensions.Options.xml", - "lib/net462/Microsoft.Extensions.Options.dll", - "lib/net462/Microsoft.Extensions.Options.xml", - "lib/net8.0/Microsoft.Extensions.Options.dll", - "lib/net8.0/Microsoft.Extensions.Options.xml", - "lib/net9.0/Microsoft.Extensions.Options.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "sha512": "tL9cSl3maS5FPzp/3MtlZI21ExWhni0nnUCF8HY4npTsINw45n9SNDbkKXBMtFyUFGSsQep25fHIDN4f/Vp3AQ==", - "type": "package", - "path": "microsoft.extensions.options.configurationextensions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512", - "microsoft.extensions.options.configurationextensions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "sha512": "inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", - "type": "package", - "path": "microsoft.extensions.primitives/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "lib/net10.0/Microsoft.Extensions.Primitives.dll", - "lib/net10.0/Microsoft.Extensions.Primitives.xml", - "lib/net462/Microsoft.Extensions.Primitives.dll", - "lib/net462/Microsoft.Extensions.Primitives.xml", - "lib/net8.0/Microsoft.Extensions.Primitives.dll", - "lib/net8.0/Microsoft.Extensions.Primitives.xml", - "lib/net9.0/Microsoft.Extensions.Primitives.dll", - "lib/net9.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.10.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Abstractions.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "sha512": "4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "sha512": "eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "type": "package", - "path": "microsoft.identitymodel.logging/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Logging.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Logging.dll", - "lib/net8.0/Microsoft.IdentityModel.Logging.xml", - "lib/net9.0/Microsoft.IdentityModel.Logging.dll", - "lib/net9.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "sha512": "lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "type": "package", - "path": "microsoft.identitymodel.tokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Tokens.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Minio/7.0.0": { - "sha512": "GiCD0koYBM8/VCXRkrfSzOtySEmrA2ngceJuxRO5H+/uGodiTX+XPaUHQq9/1DpaeBxWnkmrgqu52dwuZqIYgw==", - "type": "package", - "path": "minio/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "icon.png", - "lib/net8.0/Minio.dll", - "lib/net8.0/Minio.pdb", - "lib/net8.0/Minio.xml", - "lib/netstandard2.0/Minio.dll", - "lib/netstandard2.0/Minio.pdb", - "lib/netstandard2.0/Minio.xml", - "minio.7.0.0.nupkg.sha512", - "minio.nuspec", - "readme.md" - ] - }, - "Npgsql/10.0.0": { - "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "type": "package", - "path": "npgsql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.dll", - "lib/net10.0/Npgsql.xml", - "lib/net8.0/Npgsql.dll", - "lib/net8.0/Npgsql.xml", - "lib/net9.0/Npgsql.dll", - "lib/net9.0/Npgsql.xml", - "npgsql.10.0.0.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", - "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", - "type": "package", - "path": "pipelines.sockets.unofficial/2.2.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Pipelines.Sockets.Unofficial.dll", - "lib/net461/Pipelines.Sockets.Unofficial.xml", - "lib/net472/Pipelines.Sockets.Unofficial.dll", - "lib/net472/Pipelines.Sockets.Unofficial.xml", - "lib/net5.0/Pipelines.Sockets.Unofficial.dll", - "lib/net5.0/Pipelines.Sockets.Unofficial.xml", - "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", - "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", - "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", - "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", - "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", - "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", - "pipelines.sockets.unofficial.2.2.8.nupkg.sha512", - "pipelines.sockets.unofficial.nuspec" - ] - }, - "RabbitMQ.Client/7.2.0": { - "sha512": "PPQ7cF7lwbhqC4up6en1bTUZlz06YqQwJecOJzsguTtyhNA7oL5uNDZIx/h6ZfcyPZV4V3DYKSCxfm4RUFLcbA==", - "type": "package", - "path": "rabbitmq.client/7.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net8.0/RabbitMQ.Client.dll", - "lib/net8.0/RabbitMQ.Client.xml", - "lib/netstandard2.0/RabbitMQ.Client.dll", - "lib/netstandard2.0/RabbitMQ.Client.xml", - "rabbitmq.client.7.2.0.nupkg.sha512", - "rabbitmq.client.nuspec" - ] - }, - "SixLabors.ImageSharp/3.1.12": { - "sha512": "iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", - "type": "package", - "path": "sixlabors.imagesharp/3.1.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "build/SixLabors.ImageSharp.props", - "lib/net6.0/SixLabors.ImageSharp.dll", - "lib/net6.0/SixLabors.ImageSharp.xml", - "sixlabors.imagesharp.128.png", - "sixlabors.imagesharp.3.1.12.nupkg.sha512", - "sixlabors.imagesharp.nuspec" - ] - }, - "StackExchange.Redis/2.10.1": { - "sha512": "se08WZvD42H3bV4XBW07pupTiE2/72qStKyi/lRqqcijksFWfRtwLTuhFtZ4OX19f4+we/2qruFZBXYJBFc8PQ==", - "type": "package", - "path": "stackexchange.redis/2.10.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net461/StackExchange.Redis.dll", - "lib/net461/StackExchange.Redis.xml", - "lib/net472/StackExchange.Redis.dll", - "lib/net472/StackExchange.Redis.xml", - "lib/net6.0/StackExchange.Redis.dll", - "lib/net6.0/StackExchange.Redis.xml", - "lib/net8.0/StackExchange.Redis.dll", - "lib/net8.0/StackExchange.Redis.xml", - "lib/netcoreapp3.1/StackExchange.Redis.dll", - "lib/netcoreapp3.1/StackExchange.Redis.xml", - "lib/netstandard2.0/StackExchange.Redis.dll", - "lib/netstandard2.0/StackExchange.Redis.xml", - "stackexchange.redis.2.10.1.nupkg.sha512", - "stackexchange.redis.nuspec" - ] - }, - "System.IO.Hashing/9.0.10": { - "sha512": "9gv5z71xaWWmcGEs4bXdreIhKp2kYLK2fvPK5gQkgnWMYvZ8ieaxKofDjxL3scZiEYfi/yW2nJTiKV2awcWEdA==", - "type": "package", - "path": "system.io.hashing/9.0.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.IO.Hashing.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", - "lib/net462/System.IO.Hashing.dll", - "lib/net462/System.IO.Hashing.xml", - "lib/net8.0/System.IO.Hashing.dll", - "lib/net8.0/System.IO.Hashing.xml", - "lib/net9.0/System.IO.Hashing.dll", - "lib/net9.0/System.IO.Hashing.xml", - "lib/netstandard2.0/System.IO.Hashing.dll", - "lib/netstandard2.0/System.IO.Hashing.xml", - "system.io.hashing.9.0.10.nupkg.sha512", - "system.io.hashing.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Reactive/6.0.1": { - "sha512": "rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", - "type": "package", - "path": "system.reactive/6.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/net6.0-windows10.0.19041/_._", - "build/net6.0/_._", - "buildTransitive/net6.0-windows10.0.19041/_._", - "buildTransitive/net6.0/_._", - "icon.png", - "lib/net472/System.Reactive.dll", - "lib/net472/System.Reactive.xml", - "lib/net6.0-windows10.0.19041/System.Reactive.dll", - "lib/net6.0-windows10.0.19041/System.Reactive.xml", - "lib/net6.0/System.Reactive.dll", - "lib/net6.0/System.Reactive.xml", - "lib/netstandard2.0/System.Reactive.dll", - "lib/netstandard2.0/System.Reactive.xml", - "lib/uap10.0.18362/System.Reactive.dll", - "lib/uap10.0.18362/System.Reactive.pri", - "lib/uap10.0.18362/System.Reactive.xml", - "readme.md", - "system.reactive.6.0.1.nupkg.sha512", - "system.reactive.nuspec" - ] - }, - "System.Threading.RateLimiting/8.0.0": { - "sha512": "7mu9v0QDv66ar3DpGSZHg9NuNcxDaaAcnMULuZlaTpP9+hwXhrxNGsF5GmLkSHxFdb5bBc1TzeujsRgTrPWi+Q==", - "type": "package", - "path": "system.threading.ratelimiting/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Threading.RateLimiting.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Threading.RateLimiting.targets", - "lib/net462/System.Threading.RateLimiting.dll", - "lib/net462/System.Threading.RateLimiting.xml", - "lib/net6.0/System.Threading.RateLimiting.dll", - "lib/net6.0/System.Threading.RateLimiting.xml", - "lib/net7.0/System.Threading.RateLimiting.dll", - "lib/net7.0/System.Threading.RateLimiting.xml", - "lib/net8.0/System.Threading.RateLimiting.dll", - "lib/net8.0/System.Threading.RateLimiting.xml", - "lib/netstandard2.0/System.Threading.RateLimiting.dll", - "lib/netstandard2.0/System.Threading.RateLimiting.xml", - "system.threading.ratelimiting.8.0.0.nupkg.sha512", - "system.threading.ratelimiting.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "FileProcessing.Application/1.0.0": { - "type": "project", - "path": "../FileProcessing.Application/FileProcessing.Application.csproj", - "msbuildProject": "../FileProcessing.Application/FileProcessing.Application.csproj" - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "path": "../FileProcessing.Contracts/FileProcessing.Contracts.csproj", - "msbuildProject": "../FileProcessing.Contracts/FileProcessing.Contracts.csproj" - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "path": "../FileProcessing.Domain/FileProcessing.Domain.csproj", - "msbuildProject": "../FileProcessing.Domain/FileProcessing.Domain.csproj" - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "path": "../FileProcessing.Shared/FileProcessing.Shared.csproj", - "msbuildProject": "../FileProcessing.Shared/FileProcessing.Shared.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "FileProcessing.Application >= 1.0.0", - "FileProcessing.Contracts >= 1.0.0", - "FileProcessing.Domain >= 1.0.0", - "Microsoft.EntityFrameworkCore >= 10.0.0", - "Microsoft.Extensions.Http >= 10.0.0", - "Minio >= 7.0.0", - "Npgsql.EntityFrameworkCore.PostgreSQL >= 10.0.0", - "RabbitMQ.Client >= 7.2.0", - "SixLabors.ImageSharp >= 3.1.12", - "StackExchange.Redis >= 2.10.1" - ] - }, - "packageFolders": { - "C:\\Users\\Dell\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj", - "projectName": "FileProcessing.Infrastructure", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Http": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Minio": { - "target": "Package", - "version": "[7.0.0, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - }, - "RabbitMQ.Client": { - "target": "Package", - "version": "[7.2.0, )" - }, - "SixLabors.ImageSharp": { - "target": "Package", - "version": "[3.1.12, )" - }, - "StackExchange.Redis": { - "target": "Package", - "version": "[2.10.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Infrastructure/obj/project.nuget.cache b/src/FileProcessing.Infrastructure/obj/project.nuget.cache deleted file mode 100644 index 8fb268a..0000000 --- a/src/FileProcessing.Infrastructure/obj/project.nuget.cache +++ /dev/null @@ -1,47 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "bEgde4YIFsA=", - "success": true, - "projectFilePath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj", - "expectedPackageFiles": [ - "C:\\Users\\Dell\\.nuget\\packages\\communitytoolkit.highperformance\\8.4.0\\communitytoolkit.highperformance.8.4.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\fluentvalidation\\12.1.1\\fluentvalidation.12.1.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\12.1.1\\fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\mediatr\\14.0.0\\mediatr.14.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.0\\microsoft.entityframeworkcore.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.0\\microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\10.0.0\\microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\10.0.0\\microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\10.0.0\\microsoft.extensions.caching.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.caching.memory\\10.0.0\\microsoft.extensions.caching.memory.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration\\10.0.0\\microsoft.extensions.configuration.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.0\\microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.binder\\10.0.0\\microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.0\\microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.0\\microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.diagnostics\\10.0.0\\microsoft.extensions.diagnostics.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\10.0.0\\microsoft.extensions.diagnostics.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.http\\10.0.0\\microsoft.extensions.http.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.logging\\10.0.0\\microsoft.extensions.logging.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.options\\10.0.0\\microsoft.extensions.options.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\10.0.0\\microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.0\\microsoft.extensions.primitives.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.14.0\\microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\minio\\7.0.0\\minio.7.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\npgsql\\10.0.0\\npgsql.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\10.0.0\\npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\pipelines.sockets.unofficial\\2.2.8\\pipelines.sockets.unofficial.2.2.8.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\rabbitmq.client\\7.2.0\\rabbitmq.client.7.2.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\sixlabors.imagesharp\\3.1.12\\sixlabors.imagesharp.3.1.12.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\stackexchange.redis\\2.10.1\\stackexchange.redis.2.10.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\system.io.hashing\\9.0.10\\system.io.hashing.9.0.10.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\system.reactive\\6.0.1\\system.reactive.6.0.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\system.threading.ratelimiting\\8.0.0\\system.threading.ratelimiting.8.0.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/src/FileProcessing.Shared/Result.cs b/src/FileProcessing.Shared/Result.cs index df799d7..99324e5 100644 --- a/src/FileProcessing.Shared/Result.cs +++ b/src/FileProcessing.Shared/Result.cs @@ -1,8 +1,9 @@ namespace FileProcessing.Shared; -public sealed record Error(string Code,string Message); + +public sealed record Error(string Code, string Message); public readonly record struct Result(T? Value, Error? Error) { public bool IsSuccess => Error is null; - public static Result Success(T value)=>new(value,null); - public static Result Failure(string code,string message)=>new(default,new(code,message)); + public static Result Success(T value) => new(value, null); + public static Result Failure(string code, string message) => new(default, new(code, message)); } diff --git a/src/FileProcessing.Shared/bin/Debug/net10.0/FileProcessing.Shared.deps.json b/src/FileProcessing.Shared/bin/Debug/net10.0/FileProcessing.Shared.deps.json deleted file mode 100644 index a416870..0000000 --- a/src/FileProcessing.Shared/bin/Debug/net10.0/FileProcessing.Shared.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "FileProcessing.Shared/1.0.0": { - "runtime": { - "FileProcessing.Shared.dll": {} - } - } - } - }, - "libraries": { - "FileProcessing.Shared/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Shared/bin/Debug/net10.0/FileProcessing.Shared.dll b/src/FileProcessing.Shared/bin/Debug/net10.0/FileProcessing.Shared.dll deleted file mode 100644 index 2ffdd5c..0000000 Binary files a/src/FileProcessing.Shared/bin/Debug/net10.0/FileProcessing.Shared.dll and /dev/null differ diff --git a/src/FileProcessing.Shared/bin/Debug/net10.0/FileProcessing.Shared.pdb b/src/FileProcessing.Shared/bin/Debug/net10.0/FileProcessing.Shared.pdb deleted file mode 100644 index 3b07c6b..0000000 Binary files a/src/FileProcessing.Shared/bin/Debug/net10.0/FileProcessing.Shared.pdb and /dev/null differ diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/FileProcessing.Shared/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/src/FileProcessing.Shared/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.AssemblyInfo.cs b/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.AssemblyInfo.cs deleted file mode 100644 index 9ab116f..0000000 --- a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.AssemblyInfo.cs +++ /dev/null @@ -1,22 +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: System.Reflection.AssemblyCompanyAttribute("FileProcessing.Shared")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("FileProcessing.Shared")] -[assembly: System.Reflection.AssemblyTitleAttribute("FileProcessing.Shared")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.AssemblyInfoInputs.cache b/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.AssemblyInfoInputs.cache deleted file mode 100644 index 7daacc6..0000000 --- a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -b56282ceecead4b03704d9aad34847cbcae6e71c7ac84c9e99d31c0ba543059e diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.GeneratedMSBuildEditorConfig.editorconfig b/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 05e69c8..0000000 --- a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,18 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property.EntryPointFilePath = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = FileProcessing.Shared -build_property.ProjectDir = D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.GlobalUsings.g.cs b/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.GlobalUsings.g.cs deleted file mode 100644 index d12bcbc..0000000 --- a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.assets.cache b/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.assets.cache deleted file mode 100644 index b256171..0000000 Binary files a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.assets.cache and /dev/null differ diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.csproj.CoreCompileInputs.cache b/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.csproj.CoreCompileInputs.cache deleted file mode 100644 index 6ae1c57..0000000 --- a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -f1173b222eacfa85846e0d4e2343f7abfa5b25a019ff4cbaad9425e871728d8c diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.csproj.FileListAbsolute.txt b/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.csproj.FileListAbsolute.txt deleted file mode 100644 index 220fd1e..0000000 --- a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,11 +0,0 @@ -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\bin\Debug\net10.0\FileProcessing.Shared.deps.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\bin\Debug\net10.0\FileProcessing.Shared.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\bin\Debug\net10.0\FileProcessing.Shared.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\obj\Debug\net10.0\FileProcessing.Shared.GeneratedMSBuildEditorConfig.editorconfig -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\obj\Debug\net10.0\FileProcessing.Shared.AssemblyInfoInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\obj\Debug\net10.0\FileProcessing.Shared.AssemblyInfo.cs -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\obj\Debug\net10.0\FileProcessing.Shared.csproj.CoreCompileInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\obj\Debug\net10.0\FileProcessing.Shared.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\obj\Debug\net10.0\refint\FileProcessing.Shared.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\obj\Debug\net10.0\FileProcessing.Shared.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Shared\obj\Debug\net10.0\ref\FileProcessing.Shared.dll diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.dll b/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.dll deleted file mode 100644 index 2ffdd5c..0000000 Binary files a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.dll and /dev/null differ diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.pdb b/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.pdb deleted file mode 100644 index 3b07c6b..0000000 Binary files a/src/FileProcessing.Shared/obj/Debug/net10.0/FileProcessing.Shared.pdb and /dev/null differ diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/ref/FileProcessing.Shared.dll b/src/FileProcessing.Shared/obj/Debug/net10.0/ref/FileProcessing.Shared.dll deleted file mode 100644 index 4d4ccbf..0000000 Binary files a/src/FileProcessing.Shared/obj/Debug/net10.0/ref/FileProcessing.Shared.dll and /dev/null differ diff --git a/src/FileProcessing.Shared/obj/Debug/net10.0/refint/FileProcessing.Shared.dll b/src/FileProcessing.Shared/obj/Debug/net10.0/refint/FileProcessing.Shared.dll deleted file mode 100644 index 4d4ccbf..0000000 Binary files a/src/FileProcessing.Shared/obj/Debug/net10.0/refint/FileProcessing.Shared.dll and /dev/null differ diff --git a/src/FileProcessing.Shared/obj/FileProcessing.Shared.csproj.nuget.dgspec.json b/src/FileProcessing.Shared/obj/FileProcessing.Shared.csproj.nuget.dgspec.json deleted file mode 100644 index f45e30c..0000000 --- a/src/FileProcessing.Shared/obj/FileProcessing.Shared.csproj.nuget.dgspec.json +++ /dev/null @@ -1,351 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": {} - }, - "projects": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "projectName": "FileProcessing.Shared", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Shared/obj/FileProcessing.Shared.csproj.nuget.g.props b/src/FileProcessing.Shared/obj/FileProcessing.Shared.csproj.nuget.g.props deleted file mode 100644 index c64e515..0000000 --- a/src/FileProcessing.Shared/obj/FileProcessing.Shared.csproj.nuget.g.props +++ /dev/null @@ -1,16 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Dell\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - \ No newline at end of file diff --git a/src/FileProcessing.Shared/obj/FileProcessing.Shared.csproj.nuget.g.targets b/src/FileProcessing.Shared/obj/FileProcessing.Shared.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/src/FileProcessing.Shared/obj/FileProcessing.Shared.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/src/FileProcessing.Shared/obj/project.assets.json b/src/FileProcessing.Shared/obj/project.assets.json deleted file mode 100644 index 1fe7795..0000000 --- a/src/FileProcessing.Shared/obj/project.assets.json +++ /dev/null @@ -1,357 +0,0 @@ -{ - "version": 4, - "targets": { - "net10.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net10.0": [] - }, - "packageFolders": { - "C:\\Users\\Dell\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "projectName": "FileProcessing.Shared", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Shared/obj/project.nuget.cache b/src/FileProcessing.Shared/obj/project.nuget.cache deleted file mode 100644 index 6c09b43..0000000 --- a/src/FileProcessing.Shared/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "NmXKFiICU8Y=", - "success": true, - "projectFilePath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/src/FileProcessing.Worker/Program.cs b/src/FileProcessing.Worker/Program.cs index a0f23cd..a8300ef 100644 --- a/src/FileProcessing.Worker/Program.cs +++ b/src/FileProcessing.Worker/Program.cs @@ -2,4 +2,4 @@ using FileProcessing.Infrastructure; using FileProcessing.Worker; using Serilog; -var builder=Host.CreateApplicationBuilder(args);builder.Services.AddSerilog(x=>x.WriteTo.Console());builder.Services.AddApplication(builder.Configuration).AddInfrastructure(builder.Configuration);builder.Services.AddHostedService();var host=builder.Build();await host.RunAsync(); +var builder = Host.CreateApplicationBuilder(args); builder.Services.AddSerilog(x => x.WriteTo.Console()); builder.Services.AddApplication(builder.Configuration).AddInfrastructure(builder.Configuration); builder.Services.AddHostedService(); var host = builder.Build(); await host.RunAsync(); diff --git a/src/FileProcessing.Worker/QueueWorker.cs b/src/FileProcessing.Worker/QueueWorker.cs index 1adea8c..1db6cd9 100644 --- a/src/FileProcessing.Worker/QueueWorker.cs +++ b/src/FileProcessing.Worker/QueueWorker.cs @@ -7,17 +7,20 @@ using RabbitMQ.Client.Events; namespace FileProcessing.Worker; -public sealed class QueueWorker(IServiceScopeFactory scopes,IOptions settings,ILogger logger):BackgroundService + +public sealed class QueueWorker(IServiceScopeFactory scopes, IOptions settings, ILogger logger) : BackgroundService { - private IConnection? connection;private IChannel? channel;private readonly RabbitOptions o=settings.Value; + private IConnection? connection; private IChannel? channel; private readonly RabbitOptions o = settings.Value; protected override async Task ExecuteAsync(CancellationToken stoppingToken) { - var factory=new ConnectionFactory{HostName=o.Host,UserName=o.UserName,Password=o.Password,AutomaticRecoveryEnabled=true,ConsumerDispatchConcurrency=(ushort)Math.Min(ushort.MaxValue,Environment.ProcessorCount)};connection=await factory.CreateConnectionAsync(stoppingToken);channel=await connection.CreateChannelAsync(cancellationToken:stoppingToken); - await channel.ExchangeDeclareAsync("file-processing.dlx",ExchangeType.Direct,true,false,cancellationToken:stoppingToken);var args=new Dictionary{{"x-max-priority",10},{"x-dead-letter-exchange","file-processing.dlx"}};await channel.QueueDeclareAsync(o.Queue,true,false,false,args,cancellationToken:stoppingToken);await channel.QueueDeclareAsync(o.Queue+".dead",true,false,false,cancellationToken:stoppingToken);await channel.QueueBindAsync(o.Queue+".dead","file-processing.dlx",o.Queue,cancellationToken:stoppingToken);await channel.BasicQosAsync(0,o.Prefetch,false,stoppingToken); - var consumer=new AsyncEventingBasicConsumer(channel);consumer.ReceivedAsync+=HandleAsync;await channel.BasicConsumeAsync(o.Queue,false,consumer,stoppingToken);await Task.Delay(Timeout.Infinite,stoppingToken); + var factory = new ConnectionFactory { HostName = o.Host, UserName = o.UserName, Password = o.Password, AutomaticRecoveryEnabled = true, ConsumerDispatchConcurrency = (ushort)Math.Min(ushort.MaxValue, Environment.ProcessorCount) }; connection = await factory.CreateConnectionAsync(stoppingToken); channel = await connection.CreateChannelAsync(cancellationToken: stoppingToken); + await channel.ExchangeDeclareAsync("file-processing.dlx", ExchangeType.Direct, true, false, cancellationToken: stoppingToken); var args = new Dictionary { { "x-max-priority", 10 }, { "x-dead-letter-exchange", "file-processing.dlx" } }; await channel.QueueDeclareAsync(o.Queue, true, false, false, args, cancellationToken: stoppingToken); await channel.QueueDeclareAsync(o.Queue + ".dead", true, false, false, cancellationToken: stoppingToken); await channel.QueueBindAsync(o.Queue + ".dead", "file-processing.dlx", o.Queue, cancellationToken: stoppingToken); await channel.BasicQosAsync(0, o.Prefetch, false, stoppingToken); + var consumer = new AsyncEventingBasicConsumer(channel); consumer.ReceivedAsync += HandleAsync; await channel.BasicConsumeAsync(o.Queue, false, consumer, stoppingToken); await Task.Delay(Timeout.Infinite, stoppingToken); } - private async Task HandleAsync(object sender,BasicDeliverEventArgs e) + private async Task HandleAsync(object sender, BasicDeliverEventArgs e) { - if(channel is null)return;try{var job=JsonSerializer.Deserialize(e.Body.Span)??throw new InvalidDataException("Invalid job payload.");using var scope=scopes.CreateScope();await scope.ServiceProvider.GetRequiredService().ProcessAsync(job,e.CancellationToken);await channel.BasicAckAsync(e.DeliveryTag,false,e.CancellationToken);}catch(OperationCanceledException)when(e.CancellationToken.IsCancellationRequested){}catch(Exception ex){logger.LogError(ex,"File job {MessageId} failed",e.BasicProperties.MessageId);await channel.BasicNackAsync(e.DeliveryTag,false,false,e.CancellationToken);}} - public override async Task StopAsync(CancellationToken cancellationToken){if(channel is not null)await channel.CloseAsync(cancellationToken);if(connection is not null)await connection.CloseAsync(cancellationToken);await base.StopAsync(cancellationToken);}public override void Dispose(){channel?.Dispose();connection?.Dispose();base.Dispose();} + if (channel is null) return; try { var job = JsonSerializer.Deserialize(e.Body.Span) ?? throw new InvalidDataException("Invalid job payload."); using var scope = scopes.CreateScope(); await scope.ServiceProvider.GetRequiredService().ProcessAsync(job, e.CancellationToken); await channel.BasicAckAsync(e.DeliveryTag, false, e.CancellationToken); } catch (OperationCanceledException) when (e.CancellationToken.IsCancellationRequested) { } catch (Exception ex) { logger.LogError(ex, "File job {MessageId} failed", e.BasicProperties.MessageId); await channel.BasicNackAsync(e.DeliveryTag, false, false, e.CancellationToken); } + } + public override async Task StopAsync(CancellationToken cancellationToken) { if (channel is not null) await channel.CloseAsync(cancellationToken); if (connection is not null) await connection.CloseAsync(cancellationToken); await base.StopAsync(cancellationToken); } + public override void Dispose() { channel?.Dispose(); connection?.Dispose(); base.Dispose(); } } diff --git a/src/FileProcessing.Worker/appsettings.json b/src/FileProcessing.Worker/appsettings.json index 8f4b4a1..746c5b7 100644 --- a/src/FileProcessing.Worker/appsettings.json +++ b/src/FileProcessing.Worker/appsettings.json @@ -1,4 +1,4 @@ { - "ConnectionStrings":{"PostgreSql":"Host=postgres;Port=5432;Database=fileprocessing;Username=fileprocessing;Password=local_dev_password","Redis":"redis:6379"}, - "FileProcessing":{"MaxFileSizeBytes":104857600,"MaxRetries":5},"RabbitMq":{"Host":"rabbitmq","UserName":"fileprocessing","Password":"local_dev_password","Queue":"file-processing","Prefetch":4},"Minio":{"Endpoint":"minio:9000","AccessKey":"minioadmin","SecretKey":"minioadmin","Bucket":"files","Secure":false},"ClamAV":{"Host":"clamav","Port":3310,"TimeoutSeconds":120},"OCR":{"Executable":"tesseract","Language":"eng","TimeoutSeconds":120},"Thumbnails":{"Width":320,"Height":320},"Notifications":{"WebhookUrl":""},"Serilog":{"MinimumLevel":"Information"} + "ConnectionStrings":{"PostgreSql":"","Redis":""}, + "FileProcessing":{"MaxFileSizeBytes":104857600,"MaxRetries":5},"RabbitMq":{"Host":"rabbitmq","UserName":"","Password":"","Queue":"file-processing","Prefetch":4},"Minio":{"Endpoint":"minio:9000","AccessKey":"","SecretKey":"","Bucket":"files","Secure":false},"ClamAV":{"Host":"clamav","Port":3310,"TimeoutSeconds":120},"OCR":{"Executable":"tesseract","Language":"eng","TimeoutSeconds":120},"Thumbnails":{"Width":320,"Height":320},"Notifications":{"WebhookUrl":""},"Serilog":{"MinimumLevel":"Information"} } diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/CommunityToolkit.HighPerformance.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/CommunityToolkit.HighPerformance.dll deleted file mode 100644 index 177ba2f..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/CommunityToolkit.HighPerformance.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Application.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Application.dll deleted file mode 100644 index 5600ec1..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Application.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Application.pdb b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Application.pdb deleted file mode 100644 index 2118379..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Application.pdb and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Contracts.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Contracts.dll deleted file mode 100644 index 36b4f21..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Contracts.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Contracts.pdb b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Contracts.pdb deleted file mode 100644 index 9b799b5..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Contracts.pdb and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Domain.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Domain.dll deleted file mode 100644 index 88c7b60..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Domain.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Domain.pdb b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Domain.pdb deleted file mode 100644 index 646827e..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Domain.pdb and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Infrastructure.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Infrastructure.dll deleted file mode 100644 index 7e9fc6d..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Infrastructure.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Infrastructure.pdb b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Infrastructure.pdb deleted file mode 100644 index 3aeb5a8..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Infrastructure.pdb and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Shared.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Shared.dll deleted file mode 100644 index 2ffdd5c..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Shared.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Shared.pdb b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Shared.pdb deleted file mode 100644 index 3b07c6b..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Shared.pdb and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.deps.json b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.deps.json deleted file mode 100644 index ef56d15..0000000 --- a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.deps.json +++ /dev/null @@ -1,1215 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "FileProcessing.Worker/1.0.0": { - "dependencies": { - "FileProcessing.Application": "1.0.0", - "FileProcessing.Infrastructure": "1.0.0", - "Microsoft.Extensions.Hosting": "10.0.0", - "Serilog.Extensions.Hosting": "10.0.0", - "Serilog.Sinks.Console": "6.1.1" - }, - "runtime": { - "FileProcessing.Worker.dll": {} - } - }, - "CommunityToolkit.HighPerformance/8.4.0": { - "runtime": { - "lib/net8.0/CommunityToolkit.HighPerformance.dll": { - "assemblyVersion": "8.4.0.0", - "fileVersion": "8.4.0.1" - } - } - }, - "FluentValidation/12.1.1": { - "runtime": { - "lib/net8.0/FluentValidation.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.1.1.0" - } - } - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "dependencies": { - "FluentValidation": "12.1.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "assemblyVersion": "12.0.0.0", - "fileVersion": "12.1.1.0" - } - } - }, - "MediatR/14.0.0": { - "dependencies": { - "MediatR.Contracts": "2.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0" - }, - "runtime": { - "lib/net10.0/MediatR.dll": { - "assemblyVersion": "14.0.0.0", - "fileVersion": "14.0.0.0" - } - } - }, - "MediatR.Contracts/2.0.1": { - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "assemblyVersion": "2.0.1.0", - "fileVersion": "2.0.1.0" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0", - "Microsoft.Extensions.Caching.Memory": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.Extensions.Caching.Memory": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.CommandLine/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0", - "Microsoft.Extensions.FileProviders.Physical": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.Json/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "10.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Json": "10.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0", - "Microsoft.Extensions.FileProviders.Physical": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Diagnostics/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.FileProviders.Physical/10.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.FileSystemGlobbing/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Hosting/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Binder": "10.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "10.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "10.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "10.0.0", - "Microsoft.Extensions.Configuration.Json": "10.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "10.0.0", - "Microsoft.Extensions.DependencyInjection": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Diagnostics": "10.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0", - "Microsoft.Extensions.FileProviders.Physical": "10.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Configuration": "10.0.0", - "Microsoft.Extensions.Logging.Console": "10.0.0", - "Microsoft.Extensions.Logging.Debug": "10.0.0", - "Microsoft.Extensions.Logging.EventLog": "10.0.0", - "Microsoft.Extensions.Logging.EventSource": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Hosting.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Hosting.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Http/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Diagnostics": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Http.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Logging/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Logging.Configuration/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Binder": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Configuration.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Logging.Console/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Configuration": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Console.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Logging.Debug/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Debug.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Logging.EventLog/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "System.Diagnostics.EventLog": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.EventLog.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Logging.EventSource/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.EventSource.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Options/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Binder": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "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.Tokens/8.14.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "8.14.0.0", - "fileVersion": "8.14.0.60815" - } - } - }, - "Minio/7.0.0": { - "dependencies": { - "CommunityToolkit.HighPerformance": "8.4.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "System.IO.Hashing": "9.0.10", - "System.Reactive": "6.0.1" - }, - "runtime": { - "lib/net8.0/Minio.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.0.0" - } - } - }, - "Npgsql/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.EntityFrameworkCore.Relational": "10.0.0", - "Npgsql": "10.0.0" - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "runtime": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "2.2.8.1080" - } - } - }, - "RabbitMQ.Client/7.2.0": { - "dependencies": { - "System.Threading.RateLimiting": "8.0.0" - }, - "runtime": { - "lib/net8.0/RabbitMQ.Client.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.2.0.0" - } - } - }, - "Serilog/4.3.0": { - "runtime": { - "lib/net9.0/Serilog.dll": { - "assemblyVersion": "4.3.0.0", - "fileVersion": "4.3.0.0" - } - } - }, - "Serilog.Extensions.Hosting/10.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Serilog": "4.3.0", - "Serilog.Extensions.Logging": "10.0.0" - }, - "runtime": { - "lib/net10.0/Serilog.Extensions.Hosting.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Serilog.Extensions.Logging/10.0.0": { - "dependencies": { - "Microsoft.Extensions.Logging": "10.0.0", - "Serilog": "4.3.0" - }, - "runtime": { - "lib/net10.0/Serilog.Extensions.Logging.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.0.0" - } - } - }, - "Serilog.Sinks.Console/6.1.1": { - "dependencies": { - "Serilog": "4.3.0" - }, - "runtime": { - "lib/net8.0/Serilog.Sinks.Console.dll": { - "assemblyVersion": "6.1.1.0", - "fileVersion": "6.1.1.0" - } - } - }, - "SixLabors.ImageSharp/3.1.12": { - "runtime": { - "lib/net6.0/SixLabors.ImageSharp.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.1.12.0" - } - } - }, - "StackExchange.Redis/2.10.1": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Pipelines.Sockets.Unofficial": "2.2.8", - "System.IO.Hashing": "9.0.10" - }, - "runtime": { - "lib/net8.0/StackExchange.Redis.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.10.1.65101" - } - } - }, - "System.Diagnostics.EventLog/10.0.0": { - "runtime": { - "lib/net10.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "10.0.0.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "10.0.0.0", - "fileVersion": "10.0.25.52411" - } - } - }, - "System.IO.Hashing/9.0.10": { - "runtime": { - "lib/net9.0/System.IO.Hashing.dll": { - "assemblyVersion": "9.0.0.10", - "fileVersion": "9.0.1025.47515" - } - } - }, - "System.Reactive/6.0.1": { - "runtime": { - "lib/net6.0/System.Reactive.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.1.7420" - } - } - }, - "System.Threading.RateLimiting/8.0.0": { - "runtime": { - "lib/net8.0/System.Threading.RateLimiting.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.23.53103" - } - } - }, - "FileProcessing.Application/1.0.0": { - "dependencies": { - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "FileProcessing.Shared": "1.0.0", - "FluentValidation.DependencyInjectionExtensions": "12.1.1", - "MediatR": "14.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "runtime": { - "FileProcessing.Application.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Contracts/1.0.0": { - "runtime": { - "FileProcessing.Contracts.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Domain/1.0.0": { - "runtime": { - "FileProcessing.Domain.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Infrastructure/1.0.0": { - "dependencies": { - "FileProcessing.Application": "1.0.0", - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.Extensions.Http": "10.0.0", - "Minio": "7.0.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "RabbitMQ.Client": "7.2.0", - "SixLabors.ImageSharp": "3.1.12", - "StackExchange.Redis": "2.10.1" - }, - "runtime": { - "FileProcessing.Infrastructure.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "FileProcessing.Shared/1.0.0": { - "runtime": { - "FileProcessing.Shared.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "FileProcessing.Worker/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "CommunityToolkit.HighPerformance/8.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg==", - "path": "communitytoolkit.highperformance/8.4.0", - "hashPath": "communitytoolkit.highperformance.8.4.0.nupkg.sha512" - }, - "FluentValidation/12.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==", - "path": "fluentvalidation/12.1.1", - "hashPath": "fluentvalidation.12.1.1.nupkg.sha512" - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D0VXh4dtjjX2aQizuaa0g6R8X3U1JaVqJPfGCvLwZX9t/O2h7tkpbitbadQMfwcgSPdDbI2vDxuwRMv/Uf9dHA==", - "path": "fluentvalidation.dependencyinjectionextensions/12.1.1", - "hashPath": "fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512" - }, - "MediatR/14.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r5fwUO6NBvOFKaiMRx/gRrD1MEHHOio5yEdzSLs2OMeD2e9ZKnZaBQM6A6vVBEWJF4VY41vplXmDMOY1YvpqNA==", - "path": "mediatr/14.0.0", - "hashPath": "mediatr.14.0.0.nupkg.sha512" - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "path": "mediatr.contracts/2.0.1", - "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", - "path": "microsoft.entityframeworkcore/10.0.0", - "hashPath": "microsoft.entityframeworkcore.10.0.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", - "path": "microsoft.entityframeworkcore.abstractions/10.0.0", - "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", - "path": "microsoft.entityframeworkcore.relational/10.0.0", - "hashPath": "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zcoy6H9mSoGyvr7UvlGokEZrlZkcPCICPZr8mCsSt9U/N8eeCwCXwKF5bShdA66R0obxBCwP4AxomQHvVkC/uA==", - "path": "microsoft.extensions.caching.abstractions/10.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-krK19MKp0BNiR9rpBDW7PKSrTMLVlifS9am3CVc4O1Jq6GWz0o4F+sw5OSL4L3mVd56W8l6JRgghUa2KB51vOw==", - "path": "microsoft.extensions.caching.memory/10.0.0", - "hashPath": "microsoft.extensions.caching.memory.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H4SWETCh/cC5L1WtWchHR6LntGk3rDTTznZMssr4cL8IbDmMWBxY+MOGDc/ASnqNolLKPIWHWeuC1ddiL/iNPw==", - "path": "microsoft.extensions.configuration/10.0.0", - "hashPath": "microsoft.extensions.configuration.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", - "path": "microsoft.extensions.configuration.abstractions/10.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tMF9wNh+hlyYDWB8mrFCQHQmWHlRosol1b/N2Jrefy1bFLnuTlgSYmPyHNmz8xVQgs7DpXytBRWxGhG+mSTp0g==", - "path": "microsoft.extensions.configuration.binder/10.0.0", - "hashPath": "microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.CommandLine/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CRj5clwZciVs46GMhAthkFq3+JiNM15Bz9CRlCZLBmRdggD6RwoBphRJ+EUDK2f+cZZ1L2zqVaQrn1KueoU5Kg==", - "path": "microsoft.extensions.configuration.commandline/10.0.0", - "hashPath": "microsoft.extensions.configuration.commandline.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TmFegsI/uCdwMBD4yKpmO+OkjVNHQL49Dh/ep83NI5rPUEoBK9OdsJo1zURc1A2FuS/R/Pos3wsTjlyLnguBLA==", - "path": "microsoft.extensions.configuration.environmentvariables/10.0.0", - "hashPath": "microsoft.extensions.configuration.environmentvariables.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LqCTyF0twrG4tyEN6PpSC5ewRBDwCBazRUfCOdRddwaQ3n2S57GDDeYOlTLcbV/V2dxSSZWg5Ofr48h6BsBmxw==", - "path": "microsoft.extensions.configuration.fileextensions/10.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BIOPTEAZoeWbHlDT9Zudu+rpecZizFwhdIFRiyZKDml7JbayXmfTXKUt+ezifsSXfBkWDdJM10oDOxo8pufEng==", - "path": "microsoft.extensions.configuration.json/10.0.0", - "hashPath": "microsoft.extensions.configuration.json.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.UserSecrets/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-B4qHB6gQ2B3I52YRohSV7wetp01BQzi8jDmrtiVm6e4l8vH5vjqwxWcR5wumGWjdBkj1asJLLsDIocdyTQSP0A==", - "path": "microsoft.extensions.configuration.usersecrets/10.0.0", - "hashPath": "microsoft.extensions.configuration.usersecrets.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", - "path": "microsoft.extensions.dependencyinjection/10.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xjkxIPgrT0mKTfBwb+CVqZnRchyZgzKIfDQOp8z+WUC6vPe3WokIf71z+hJPkH0YBUYJwa7Z/al1R087ib9oiw==", - "path": "microsoft.extensions.diagnostics/10.0.0", - "hashPath": "microsoft.extensions.diagnostics.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SfK89ytD61S7DgzorFljSkUeluC1ncn6dtZgwc0ot39f/BEYWBl5jpgvodxduoYAs1d9HG8faCDRZxE95UMo2A==", - "path": "microsoft.extensions.diagnostics.abstractions/10.0.0", - "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/ppSdehKk3fuXjlqCDgSOtjRK/pSHU8eWgzSHfHdwVm5BP4Dgejehkw+PtxKG2j98qTDEHDst2Y99aNsmJldmw==", - "path": "microsoft.extensions.fileproviders.abstractions/10.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UZUQ74lQMmvcprlG8w+XpxBbyRDQqfb7GAnccITw32hdkUBlmm9yNC4xl4aR9YjgV3ounZcub194sdmLSfBmPA==", - "path": "microsoft.extensions.fileproviders.physical/10.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5hfVl/e+bx1px2UkN+1xXhd3hu7Ui6ENItBzckFaRDQXfr+SHT/7qrCDrlQekCF/PBtEu2vtk87U2+gDEF8EhQ==", - "path": "microsoft.extensions.filesystemglobbing/10.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yKJiVdXkSfe9foojGpBRbuDPQI8YD71IO/aE8ehGjRHE0VkEF/YWkW6StthwuFF146pc2lypZrpk/Tks6Plwhw==", - "path": "microsoft.extensions.hosting/10.0.0", - "hashPath": "microsoft.extensions.hosting.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KrN6TGFwCwqOkLLk/idW/XtDQh+8In+CL9T4M1Dx+5ScsjTq4TlVbal8q532m82UYrMr6RiQJF2HvYCN0QwVsA==", - "path": "microsoft.extensions.hosting.abstractions/10.0.0", - "hashPath": "microsoft.extensions.hosting.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Http/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r+mSvm/Ryc/iYcc9zcUG5VP9EBB8PL1rgVU6macEaYk45vmGRk9PntM3aynFKN6s3Q4WW36kedTycIctctpTUQ==", - "path": "microsoft.extensions.http/10.0.0", - "hashPath": "microsoft.extensions.http.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", - "path": "microsoft.extensions.logging/10.0.0", - "hashPath": "microsoft.extensions.logging.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", - "path": "microsoft.extensions.logging.abstractions/10.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8zcwhS6bYB6FEfaY3nYSgHdpiL2T+/V3xjpHtslVAegyI1JUbB9yAt/BFdvZdsNbY0Udm4xFtvfT/hUwcOOOg==", - "path": "microsoft.extensions.logging.configuration/10.0.0", - "hashPath": "microsoft.extensions.logging.configuration.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-treWetuksp8LVb09fCJ5zNhNJjyDkqzVm83XxcrlWQnAdXznR140UUXo8PyEPBvFlHhjKhFQZEOP3Sk/ByCvEw==", - "path": "microsoft.extensions.logging.console/10.0.0", - "hashPath": "microsoft.extensions.logging.console.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Debug/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-A/4vBtVaySLBGj4qluye+KSbeVCCMa6GcTbxf2YgnSDHs9b9105+VojBJ1eJPel8F1ny0JOh+Ci3vgCKn69tNQ==", - "path": "microsoft.extensions.logging.debug/10.0.0", - "hashPath": "microsoft.extensions.logging.debug.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.EventLog/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EWda5nSXhzQZr3yJ3+XgIApOek+Hm+txhWCEzWNVPp/OfimL4qmvctgXu87m+S2RXw/AoUP8aLMNicJ2KWblVA==", - "path": "microsoft.extensions.logging.eventlog/10.0.0", - "hashPath": "microsoft.extensions.logging.eventlog.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.EventSource/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+Qc+kgoJi1w2A/Jm+7h04LcK2JoJkwAxKg7kBakkNRcemTmRGocqPa7rVNVGorTYruFrUS25GwkFNtOECnjhXg==", - "path": "microsoft.extensions.logging.eventsource/10.0.0", - "hashPath": "microsoft.extensions.logging.eventsource.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", - "path": "microsoft.extensions.options/10.0.0", - "hashPath": "microsoft.extensions.options.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tL9cSl3maS5FPzp/3MtlZI21ExWhni0nnUCF8HY4npTsINw45n9SNDbkKXBMtFyUFGSsQep25fHIDN4f/Vp3AQ==", - "path": "microsoft.extensions.options.configurationextensions/10.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", - "path": "microsoft.extensions.primitives/10.0.0", - "hashPath": "microsoft.extensions.primitives.10.0.0.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.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" - }, - "Minio/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GiCD0koYBM8/VCXRkrfSzOtySEmrA2ngceJuxRO5H+/uGodiTX+XPaUHQq9/1DpaeBxWnkmrgqu52dwuZqIYgw==", - "path": "minio/7.0.0", - "hashPath": "minio.7.0.0.nupkg.sha512" - }, - "Npgsql/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "path": "npgsql/10.0.0", - "hashPath": "npgsql.10.0.0.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", - "path": "pipelines.sockets.unofficial/2.2.8", - "hashPath": "pipelines.sockets.unofficial.2.2.8.nupkg.sha512" - }, - "RabbitMQ.Client/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PPQ7cF7lwbhqC4up6en1bTUZlz06YqQwJecOJzsguTtyhNA7oL5uNDZIx/h6ZfcyPZV4V3DYKSCxfm4RUFLcbA==", - "path": "rabbitmq.client/7.2.0", - "hashPath": "rabbitmq.client.7.2.0.nupkg.sha512" - }, - "Serilog/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+cDryFR0GRhsGOnZSKwaDzRRl4MupvJ42FhCE4zhQRVanX0Jpg6WuCBk59OVhVDPmab1bB+nRykAnykYELA9qQ==", - "path": "serilog/4.3.0", - "hashPath": "serilog.4.3.0.nupkg.sha512" - }, - "Serilog.Extensions.Hosting/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E7juuIc+gzoGxgzFooFgAV8g9BfiSXNKsUok9NmEpyAXg2odkcPsMa/Yo4axkJRlh0se7mkYQ1GXDaBemR+b6w==", - "path": "serilog.extensions.hosting/10.0.0", - "hashPath": "serilog.extensions.hosting.10.0.0.nupkg.sha512" - }, - "Serilog.Extensions.Logging/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vx0kABKl2dWbBhhqAfTOk53/i8aV/5VaT3a6il9gn72Wqs2pM7EK2OB6No6xdqK2IaY6Zf9gdjLuK9BVa2rT+Q==", - "path": "serilog.extensions.logging/10.0.0", - "hashPath": "serilog.extensions.logging.10.0.0.nupkg.sha512" - }, - "Serilog.Sinks.Console/6.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8jbqgjUyZlfCuSTaJk6lOca465OndqOz3KZP6Cryt/IqZYybyBu7GP0fE/AXBzrrQB3EBmQntBFAvMVz1COvAA==", - "path": "serilog.sinks.console/6.1.1", - "hashPath": "serilog.sinks.console.6.1.1.nupkg.sha512" - }, - "SixLabors.ImageSharp/3.1.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", - "path": "sixlabors.imagesharp/3.1.12", - "hashPath": "sixlabors.imagesharp.3.1.12.nupkg.sha512" - }, - "StackExchange.Redis/2.10.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-se08WZvD42H3bV4XBW07pupTiE2/72qStKyi/lRqqcijksFWfRtwLTuhFtZ4OX19f4+we/2qruFZBXYJBFc8PQ==", - "path": "stackexchange.redis/2.10.1", - "hashPath": "stackexchange.redis.2.10.1.nupkg.sha512" - }, - "System.Diagnostics.EventLog/10.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uaFRda9NjtbJRkdx311eXlAA3n2em7223c1A8d1VWyl+4FL9vkG7y2lpPfBU9HYdj/9KgdRNdn1vFK8ZYCYT/A==", - "path": "system.diagnostics.eventlog/10.0.0", - "hashPath": "system.diagnostics.eventlog.10.0.0.nupkg.sha512" - }, - "System.IO.Hashing/9.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9gv5z71xaWWmcGEs4bXdreIhKp2kYLK2fvPK5gQkgnWMYvZ8ieaxKofDjxL3scZiEYfi/yW2nJTiKV2awcWEdA==", - "path": "system.io.hashing/9.0.10", - "hashPath": "system.io.hashing.9.0.10.nupkg.sha512" - }, - "System.Reactive/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", - "path": "system.reactive/6.0.1", - "hashPath": "system.reactive.6.0.1.nupkg.sha512" - }, - "System.Threading.RateLimiting/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7mu9v0QDv66ar3DpGSZHg9NuNcxDaaAcnMULuZlaTpP9+hwXhrxNGsF5GmLkSHxFdb5bBc1TzeujsRgTrPWi+Q==", - "path": "system.threading.ratelimiting/8.0.0", - "hashPath": "system.threading.ratelimiting.8.0.0.nupkg.sha512" - }, - "FileProcessing.Application/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Infrastructure/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.dll deleted file mode 100644 index 3d73728..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.exe b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.exe deleted file mode 100644 index 92e26a6..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.exe and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.pdb b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.pdb deleted file mode 100644 index 01fd09b..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.pdb and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.runtimeconfig.json b/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.runtimeconfig.json deleted file mode 100644 index d8ac2bc..0000000 --- a/src/FileProcessing.Worker/bin/Debug/net10.0/FileProcessing.Worker.runtimeconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net10.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "10.0.0" - }, - "configProperties": { - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FluentValidation.DependencyInjectionExtensions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/FluentValidation.DependencyInjectionExtensions.dll deleted file mode 100644 index f6a525d..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FluentValidation.DependencyInjectionExtensions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/FluentValidation.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/FluentValidation.dll deleted file mode 100644 index aab1163..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/FluentValidation.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/MediatR.Contracts.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/MediatR.Contracts.dll deleted file mode 100644 index 32bc7c1..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/MediatR.Contracts.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/MediatR.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/MediatR.dll deleted file mode 100644 index f59b1f0..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/MediatR.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index 9aa1bb0..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index fe7506c..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index b15230a..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll deleted file mode 100644 index ac11f8f..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll deleted file mode 100644 index 704b840..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index 9aa7e85..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll deleted file mode 100644 index 8be04ae..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll deleted file mode 100644 index 8066211..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll deleted file mode 100644 index a7ad701..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll deleted file mode 100644 index 86720bb..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll deleted file mode 100644 index daa83a9..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll deleted file mode 100644 index 2903540..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index eb4de33..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index eccc0cf..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index a34cbfb..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll deleted file mode 100644 index 9692da6..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll deleted file mode 100644 index 0dd0fc1..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll deleted file mode 100644 index 1cfd7d4..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll deleted file mode 100644 index 3544461..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll deleted file mode 100644 index 7a08d42..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll deleted file mode 100644 index fe79641..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Hosting.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Hosting.dll deleted file mode 100644 index c9f3b0d..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Hosting.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Http.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Http.dll deleted file mode 100644 index a13863a..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Http.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 6d617b5..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Configuration.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Configuration.dll deleted file mode 100644 index c6df8c5..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Configuration.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Console.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Console.dll deleted file mode 100644 index 188119c..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Console.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Debug.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Debug.dll deleted file mode 100644 index 446f0bf..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.Debug.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventLog.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventLog.dll deleted file mode 100644 index 1ac3b8e..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventLog.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventSource.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventSource.dll deleted file mode 100644 index d707e20..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventSource.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll deleted file mode 100644 index 5842f4d..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll deleted file mode 100644 index 1a7b113..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Options.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Options.dll deleted file mode 100644 index 4a574d7..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index d87bfde..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index f85ae59..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 4c4d3ab..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index 170078a..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index 009ce65..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Minio.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Minio.dll deleted file mode 100644 index 46162a1..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Minio.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll deleted file mode 100644 index afdfe8d..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Npgsql.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Npgsql.dll deleted file mode 100644 index 1207ef0..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Npgsql.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Pipelines.Sockets.Unofficial.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Pipelines.Sockets.Unofficial.dll deleted file mode 100644 index c5b223d..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Pipelines.Sockets.Unofficial.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/RabbitMQ.Client.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/RabbitMQ.Client.dll deleted file mode 100644 index cd5eb51..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/RabbitMQ.Client.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.Extensions.Hosting.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.Extensions.Hosting.dll deleted file mode 100644 index b050a9b..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.Extensions.Hosting.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.Extensions.Logging.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.Extensions.Logging.dll deleted file mode 100644 index fa270b8..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.Extensions.Logging.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.Sinks.Console.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.Sinks.Console.dll deleted file mode 100644 index 8d0638d..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.Sinks.Console.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.dll deleted file mode 100644 index de3e99d..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/Serilog.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/SixLabors.ImageSharp.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/SixLabors.ImageSharp.dll deleted file mode 100644 index 7302493..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/SixLabors.ImageSharp.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/StackExchange.Redis.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/StackExchange.Redis.dll deleted file mode 100644 index 62e12df..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/StackExchange.Redis.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/System.Diagnostics.EventLog.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/System.Diagnostics.EventLog.dll deleted file mode 100644 index 15fd0aa..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/System.IO.Hashing.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/System.IO.Hashing.dll deleted file mode 100644 index 4860654..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/System.IO.Hashing.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/System.Reactive.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/System.Reactive.dll deleted file mode 100644 index d6d2efa..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/System.Reactive.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/System.Threading.RateLimiting.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/System.Threading.RateLimiting.dll deleted file mode 100644 index 1c22f5f..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/System.Threading.RateLimiting.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/appsettings.Development.json b/src/FileProcessing.Worker/bin/Debug/net10.0/appsettings.Development.json deleted file mode 100644 index b2dcdb6..0000000 --- a/src/FileProcessing.Worker/bin/Debug/net10.0/appsettings.Development.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.Hosting.Lifetime": "Information" - } - } -} diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/appsettings.json b/src/FileProcessing.Worker/bin/Debug/net10.0/appsettings.json deleted file mode 100644 index 8f4b4a1..0000000 --- a/src/FileProcessing.Worker/bin/Debug/net10.0/appsettings.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "ConnectionStrings":{"PostgreSql":"Host=postgres;Port=5432;Database=fileprocessing;Username=fileprocessing;Password=local_dev_password","Redis":"redis:6379"}, - "FileProcessing":{"MaxFileSizeBytes":104857600,"MaxRetries":5},"RabbitMq":{"Host":"rabbitmq","UserName":"fileprocessing","Password":"local_dev_password","Queue":"file-processing","Prefetch":4},"Minio":{"Endpoint":"minio:9000","AccessKey":"minioadmin","SecretKey":"minioadmin","Bucket":"files","Secure":false},"ClamAV":{"Host":"clamav","Port":3310,"TimeoutSeconds":120},"OCR":{"Executable":"tesseract","Language":"eng","TimeoutSeconds":120},"Thumbnails":{"Width":320,"Height":320},"Notifications":{"WebhookUrl":""},"Serilog":{"MinimumLevel":"Information"} -} diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll deleted file mode 100644 index 387c765..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll b/src/FileProcessing.Worker/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll deleted file mode 100644 index ea7ad3a..0000000 Binary files a/src/FileProcessing.Worker/bin/Debug/net10.0/runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/src/FileProcessing.Worker/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/src/FileProcessing.Worker/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProc.E0DA77E2.Up2Date b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProc.E0DA77E2.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.AssemblyInfo.cs b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.AssemblyInfo.cs deleted file mode 100644 index a52ec0d..0000000 --- a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.AssemblyInfo.cs +++ /dev/null @@ -1,22 +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: System.Reflection.AssemblyCompanyAttribute("FileProcessing.Worker")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("FileProcessing.Worker")] -[assembly: System.Reflection.AssemblyTitleAttribute("FileProcessing.Worker")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.AssemblyInfoInputs.cache b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.AssemblyInfoInputs.cache deleted file mode 100644 index 11d14d8..0000000 --- a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -3580ef10e52189dcbe028610d207d32109694d029da20b08651036f60befcfb1 diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.GeneratedMSBuildEditorConfig.editorconfig b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 0cd35ed..0000000 --- a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,18 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property.EntryPointFilePath = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = FileProcessing.Worker -build_property.ProjectDir = D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.GlobalUsings.g.cs b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.GlobalUsings.g.cs deleted file mode 100644 index 3e9e6f0..0000000 --- a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.GlobalUsings.g.cs +++ /dev/null @@ -1,12 +0,0 @@ -// -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.Threading; -global using System.Threading.Tasks; diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.assets.cache b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.assets.cache deleted file mode 100644 index 73c3c11..0000000 Binary files a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.assets.cache and /dev/null differ diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.csproj.AssemblyReference.cache b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.csproj.AssemblyReference.cache deleted file mode 100644 index 2216cf9..0000000 Binary files a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.csproj.AssemblyReference.cache and /dev/null differ diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.csproj.CoreCompileInputs.cache b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.csproj.CoreCompileInputs.cache deleted file mode 100644 index 8209122..0000000 --- a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0dbe2fbec3db0c859bd7fda1d9ee48018fead43fe15de2c62cfab93bfb5af082 diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.csproj.FileListAbsolute.txt b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.csproj.FileListAbsolute.txt deleted file mode 100644 index bf2b906..0000000 --- a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,87 +0,0 @@ -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\FileProcessing.Worker.csproj.AssemblyReference.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\FileProcessing.Worker.GeneratedMSBuildEditorConfig.editorconfig -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\FileProcessing.Worker.AssemblyInfoInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\FileProcessing.Worker.AssemblyInfo.cs -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\FileProcessing.Worker.csproj.CoreCompileInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\appsettings.Development.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\appsettings.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Worker.exe -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Worker.deps.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Worker.runtimeconfig.json -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Worker.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Worker.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\CommunityToolkit.HighPerformance.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FluentValidation.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FluentValidation.DependencyInjectionExtensions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\MediatR.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\MediatR.Contracts.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.EntityFrameworkCore.Relational.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Caching.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Caching.Memory.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Configuration.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Configuration.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Configuration.Binder.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Configuration.CommandLine.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Configuration.FileExtensions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Configuration.Json.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Configuration.UserSecrets.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.DependencyInjection.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Diagnostics.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Diagnostics.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.FileProviders.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.FileProviders.Physical.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.FileSystemGlobbing.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Hosting.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Hosting.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Http.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Logging.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Logging.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Logging.Configuration.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Logging.Console.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Logging.Debug.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Logging.EventLog.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Logging.EventSource.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Options.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.Extensions.Primitives.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.IdentityModel.Abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.IdentityModel.JsonWebTokens.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.IdentityModel.Logging.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Microsoft.IdentityModel.Tokens.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Minio.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Npgsql.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Pipelines.Sockets.Unofficial.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\RabbitMQ.Client.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Serilog.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Serilog.Extensions.Hosting.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Serilog.Extensions.Logging.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\Serilog.Sinks.Console.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\SixLabors.ImageSharp.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\StackExchange.Redis.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\System.Diagnostics.EventLog.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\System.IO.Hashing.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\System.Reactive.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\System.Threading.RateLimiting.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\runtimes\win\lib\net10.0\System.Diagnostics.EventLog.Messages.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\runtimes\win\lib\net10.0\System.Diagnostics.EventLog.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Application.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Contracts.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Domain.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Infrastructure.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Shared.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Application.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Infrastructure.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Contracts.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Domain.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\bin\Debug\net10.0\FileProcessing.Shared.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\FileProc.E0DA77E2.Up2Date -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\FileProcessing.Worker.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\refint\FileProcessing.Worker.dll -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\FileProcessing.Worker.pdb -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\FileProcessing.Worker.genruntimeconfig.cache -D:\UserHome\Architect Projects\Distributed File Processing\src\FileProcessing.Worker\obj\Debug\net10.0\ref\FileProcessing.Worker.dll diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.dll b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.dll deleted file mode 100644 index 3d73728..0000000 Binary files a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.genruntimeconfig.cache b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.genruntimeconfig.cache deleted file mode 100644 index e38ceda..0000000 --- a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -c1b2c158695b6ca8cfa89824747137c3d996742e082311a3265b8d25d3e6f702 diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.pdb b/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.pdb deleted file mode 100644 index 01fd09b..0000000 Binary files a/src/FileProcessing.Worker/obj/Debug/net10.0/FileProcessing.Worker.pdb and /dev/null differ diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/apphost.exe b/src/FileProcessing.Worker/obj/Debug/net10.0/apphost.exe deleted file mode 100644 index 92e26a6..0000000 Binary files a/src/FileProcessing.Worker/obj/Debug/net10.0/apphost.exe and /dev/null differ diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/ref/FileProcessing.Worker.dll b/src/FileProcessing.Worker/obj/Debug/net10.0/ref/FileProcessing.Worker.dll deleted file mode 100644 index a5b84b4..0000000 Binary files a/src/FileProcessing.Worker/obj/Debug/net10.0/ref/FileProcessing.Worker.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/obj/Debug/net10.0/refint/FileProcessing.Worker.dll b/src/FileProcessing.Worker/obj/Debug/net10.0/refint/FileProcessing.Worker.dll deleted file mode 100644 index a5b84b4..0000000 Binary files a/src/FileProcessing.Worker/obj/Debug/net10.0/refint/FileProcessing.Worker.dll and /dev/null differ diff --git a/src/FileProcessing.Worker/obj/FileProcessing.Worker.csproj.nuget.dgspec.json b/src/FileProcessing.Worker/obj/FileProcessing.Worker.csproj.nuget.dgspec.json deleted file mode 100644 index 1681aa7..0000000 --- a/src/FileProcessing.Worker/obj/FileProcessing.Worker.csproj.nuget.dgspec.json +++ /dev/null @@ -1,2155 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Worker\\FileProcessing.Worker.csproj": {} - }, - "projects": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "projectName": "FileProcessing.Application", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "FluentValidation.DependencyInjectionExtensions": { - "target": "Package", - "version": "[12.1.1, )" - }, - "MediatR": { - "target": "Package", - "version": "[14.0.0, )" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions": { - "target": "Package", - "version": "[10.0.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "projectName": "FileProcessing.Contracts", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "projectName": "FileProcessing.Domain", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj", - "projectName": "FileProcessing.Infrastructure", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Microsoft.Extensions.Http": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Minio": { - "target": "Package", - "version": "[7.0.0, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[10.0.0, )" - }, - "RabbitMQ.Client": { - "target": "Package", - "version": "[7.2.0, )" - }, - "SixLabors.ImageSharp": { - "target": "Package", - "version": "[3.1.12, )" - }, - "StackExchange.Redis": { - "target": "Package", - "version": "[2.10.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "projectName": "FileProcessing.Shared", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\FileProcessing.Shared.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Shared\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Worker\\FileProcessing.Worker.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Worker\\FileProcessing.Worker.csproj", - "projectName": "FileProcessing.Worker", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Worker\\FileProcessing.Worker.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Worker\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.Extensions.Hosting": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Serilog.Extensions.Hosting": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Serilog.Sinks.Console": { - "target": "Package", - "version": "[6.1.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Worker/obj/FileProcessing.Worker.csproj.nuget.g.props b/src/FileProcessing.Worker/obj/FileProcessing.Worker.csproj.nuget.g.props deleted file mode 100644 index 4ae6bea..0000000 --- a/src/FileProcessing.Worker/obj/FileProcessing.Worker.csproj.nuget.g.props +++ /dev/null @@ -1,20 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Dell\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - - - - - \ No newline at end of file diff --git a/src/FileProcessing.Worker/obj/FileProcessing.Worker.csproj.nuget.g.targets b/src/FileProcessing.Worker/obj/FileProcessing.Worker.csproj.nuget.g.targets deleted file mode 100644 index c481a34..0000000 --- a/src/FileProcessing.Worker/obj/FileProcessing.Worker.csproj.nuget.g.targets +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/FileProcessing.Worker/obj/project.assets.json b/src/FileProcessing.Worker/obj/project.assets.json deleted file mode 100644 index adb0bf8..0000000 --- a/src/FileProcessing.Worker/obj/project.assets.json +++ /dev/null @@ -1,3137 +0,0 @@ -{ - "version": 4, - "targets": { - "net10.0": { - "CommunityToolkit.HighPerformance/8.4.0": { - "type": "package", - "compile": { - "lib/net8.0/CommunityToolkit.HighPerformance.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/CommunityToolkit.HighPerformance.dll": { - "related": ".pdb;.xml" - } - } - }, - "FluentValidation/12.1.1": { - "type": "package", - "compile": { - "lib/net8.0/FluentValidation.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/FluentValidation.dll": { - "related": ".xml" - } - } - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "type": "package", - "dependencies": { - "FluentValidation": "12.1.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.0" - }, - "compile": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll": { - "related": ".xml" - } - } - }, - "MediatR/14.0.0": { - "type": "package", - "dependencies": { - "MediatR.Contracts": "[2.0.1, 3.0.0)", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.IdentityModel.JsonWebTokens": "8.14.0" - }, - "compile": { - "lib/net10.0/MediatR.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/MediatR.dll": { - "related": ".xml" - } - } - }, - "MediatR.Contracts/2.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/MediatR.Contracts.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0", - "Microsoft.EntityFrameworkCore.Analyzers": "10.0.0", - "Microsoft.Extensions.Caching.Memory": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { - "type": "package" - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.Extensions.Caching.Memory": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Memory/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} - } - }, - "Microsoft.Extensions.Configuration.CommandLine/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0", - "Microsoft.Extensions.FileProviders.Physical": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Json/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "10.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.UserSecrets/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Json": "10.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0", - "Microsoft.Extensions.FileProviders.Physical": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props": {}, - "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {} - } - }, - "Microsoft.Extensions.DependencyInjection/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Diagnostics/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.FileProviders.Physical/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.FileSystemGlobbing/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Hosting/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Binder": "10.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "10.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "10.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "10.0.0", - "Microsoft.Extensions.Configuration.Json": "10.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "10.0.0", - "Microsoft.Extensions.DependencyInjection": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Diagnostics": "10.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0", - "Microsoft.Extensions.FileProviders.Physical": "10.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Configuration": "10.0.0", - "Microsoft.Extensions.Logging.Console": "10.0.0", - "Microsoft.Extensions.Logging.Debug": "10.0.0", - "Microsoft.Extensions.Logging.EventLog": "10.0.0", - "Microsoft.Extensions.Logging.EventSource": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Hosting.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Hosting.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Hosting.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Http/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Diagnostics": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Http.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Http.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Logging.Configuration/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration": "10.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Binder": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Configuration.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Configuration.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Console/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Configuration": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Console.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Console.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Debug/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.Debug.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.Debug.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.EventLog/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "System.Diagnostics.EventLog": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.EventLog.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.EventLog.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.EventSource/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Logging.EventSource.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Logging.EventSource.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Options/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", - "Microsoft.Extensions.Configuration.Binder": "10.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options": "10.0.0", - "Microsoft.Extensions.Primitives": "10.0.0" - }, - "compile": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "type": "package", - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Microsoft.IdentityModel.Logging": "8.14.0" - }, - "compile": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Minio/7.0.0": { - "type": "package", - "dependencies": { - "CommunityToolkit.HighPerformance": "8.4.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.4", - "Microsoft.Extensions.Logging": "9.0.4", - "System.IO.Hashing": "9.0.4", - "System.Reactive": "6.0.1" - }, - "compile": { - "lib/net8.0/Minio.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/Minio.dll": { - "related": ".pdb;.xml" - } - } - }, - "Npgsql/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.dll": { - "related": ".xml" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", - "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", - "Npgsql": "10.0.0" - }, - "compile": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "related": ".xml" - } - } - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "type": "package", - "compile": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { - "related": ".xml" - } - } - }, - "RabbitMQ.Client/7.2.0": { - "type": "package", - "dependencies": { - "System.Threading.RateLimiting": "8.0.0" - }, - "compile": { - "lib/net8.0/RabbitMQ.Client.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/RabbitMQ.Client.dll": { - "related": ".xml" - } - } - }, - "Serilog/4.3.0": { - "type": "package", - "compile": { - "lib/net9.0/Serilog.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/Serilog.dll": { - "related": ".xml" - } - }, - "build": { - "build/_._": {} - } - }, - "Serilog.Extensions.Hosting/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "10.0.0", - "Microsoft.Extensions.Logging.Abstractions": "10.0.0", - "Serilog": "4.3.0", - "Serilog.Extensions.Logging": "10.0.0" - }, - "compile": { - "lib/net10.0/Serilog.Extensions.Hosting.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Serilog.Extensions.Hosting.dll": { - "related": ".xml" - } - } - }, - "Serilog.Extensions.Logging/10.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging": "10.0.0", - "Serilog": "4.2.0" - }, - "compile": { - "lib/net10.0/Serilog.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/Serilog.Extensions.Logging.dll": { - "related": ".xml" - } - } - }, - "Serilog.Sinks.Console/6.1.1": { - "type": "package", - "dependencies": { - "Serilog": "4.0.0" - }, - "compile": { - "lib/net8.0/Serilog.Sinks.Console.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Serilog.Sinks.Console.dll": { - "related": ".xml" - } - } - }, - "SixLabors.ImageSharp/3.1.12": { - "type": "package", - "compile": { - "lib/net6.0/SixLabors.ImageSharp.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/SixLabors.ImageSharp.dll": { - "related": ".xml" - } - }, - "build": { - "build/_._": {} - } - }, - "StackExchange.Redis/2.10.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "8.0.0", - "Pipelines.Sockets.Unofficial": "2.2.8", - "System.IO.Hashing": "9.0.10" - }, - "compile": { - "lib/net8.0/StackExchange.Redis.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/StackExchange.Redis.dll": { - "related": ".xml" - } - } - }, - "System.Diagnostics.EventLog/10.0.0": { - "type": "package", - "compile": { - "lib/net10.0/System.Diagnostics.EventLog.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net10.0/System.Diagnostics.EventLog.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll": { - "assetType": "runtime", - "rid": "win" - }, - "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Hashing/9.0.10": { - "type": "package", - "compile": { - "lib/net9.0/System.IO.Hashing.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net9.0/System.IO.Hashing.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/_._": {} - } - }, - "System.Reactive/6.0.1": { - "type": "package", - "compile": { - "lib/net6.0/System.Reactive.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Reactive.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.Threading.RateLimiting/8.0.0": { - "type": "package", - "compile": { - "lib/net8.0/System.Threading.RateLimiting.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Threading.RateLimiting.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "FileProcessing.Application/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "FileProcessing.Shared": "1.0.0", - "FluentValidation.DependencyInjectionExtensions": "12.1.1", - "MediatR": "14.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0" - }, - "compile": { - "bin/placeholder/FileProcessing.Application.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Application.dll": {} - } - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Contracts.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Contracts.dll": {} - } - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Domain.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Domain.dll": {} - } - }, - "FileProcessing.Infrastructure/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "dependencies": { - "FileProcessing.Application": "1.0.0", - "FileProcessing.Contracts": "1.0.0", - "FileProcessing.Domain": "1.0.0", - "Microsoft.EntityFrameworkCore": "10.0.0", - "Microsoft.Extensions.Http": "10.0.0", - "Minio": "7.0.0", - "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", - "RabbitMQ.Client": "7.2.0", - "SixLabors.ImageSharp": "3.1.12", - "StackExchange.Redis": "2.10.1" - }, - "compile": { - "bin/placeholder/FileProcessing.Infrastructure.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Infrastructure.dll": {} - } - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Shared.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Shared.dll": {} - } - } - } - }, - "libraries": { - "CommunityToolkit.HighPerformance/8.4.0": { - "sha512": "flxspiBs0G/0GMp7IK2J2ijV9bTG6hEwFc/z6ekHqB6nwRJ4Ry2yLdx+TkbCUYFCl4XhABkAwomeKbT6zM2Zlg==", - "type": "package", - "path": "communitytoolkit.highperformance/8.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "License.md", - "ThirdPartyNotices.txt", - "communitytoolkit.highperformance.8.4.0.nupkg.sha512", - "communitytoolkit.highperformance.nuspec", - "lib/net7.0/CommunityToolkit.HighPerformance.dll", - "lib/net7.0/CommunityToolkit.HighPerformance.pdb", - "lib/net7.0/CommunityToolkit.HighPerformance.xml", - "lib/net8.0/CommunityToolkit.HighPerformance.dll", - "lib/net8.0/CommunityToolkit.HighPerformance.pdb", - "lib/net8.0/CommunityToolkit.HighPerformance.xml", - "lib/netstandard2.0/CommunityToolkit.HighPerformance.dll", - "lib/netstandard2.0/CommunityToolkit.HighPerformance.pdb", - "lib/netstandard2.0/CommunityToolkit.HighPerformance.xml", - "lib/netstandard2.1/CommunityToolkit.HighPerformance.dll", - "lib/netstandard2.1/CommunityToolkit.HighPerformance.pdb", - "lib/netstandard2.1/CommunityToolkit.HighPerformance.xml" - ] - }, - "FluentValidation/12.1.1": { - "sha512": "EPpkIe1yh1a0OXyC100oOA8WMbZvqUu5plwhvYcb7oSELfyUZzfxV48BLhvs3kKo4NwG7MGLNgy1RJiYtT8Dpw==", - "type": "package", - "path": "fluentvalidation/12.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.12.1.1.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net8.0/FluentValidation.dll", - "lib/net8.0/FluentValidation.xml" - ] - }, - "FluentValidation.DependencyInjectionExtensions/12.1.1": { - "sha512": "D0VXh4dtjjX2aQizuaa0g6R8X3U1JaVqJPfGCvLwZX9t/O2h7tkpbitbadQMfwcgSPdDbI2vDxuwRMv/Uf9dHA==", - "type": "package", - "path": "fluentvalidation.dependencyinjectionextensions/12.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512", - "fluentvalidation.dependencyinjectionextensions.nuspec", - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.dll", - "lib/net8.0/FluentValidation.DependencyInjectionExtensions.xml" - ] - }, - "MediatR/14.0.0": { - "sha512": "r5fwUO6NBvOFKaiMRx/gRrD1MEHHOio5yEdzSLs2OMeD2e9ZKnZaBQM6A6vVBEWJF4VY41vplXmDMOY1YvpqNA==", - "type": "package", - "path": "mediatr/14.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "README.md", - "gradient_128x128.png", - "lib/net10.0/MediatR.dll", - "lib/net10.0/MediatR.xml", - "lib/net462/MediatR.dll", - "lib/net462/MediatR.xml", - "lib/net8.0/MediatR.dll", - "lib/net8.0/MediatR.xml", - "lib/net9.0/MediatR.dll", - "lib/net9.0/MediatR.xml", - "lib/netstandard2.0/MediatR.dll", - "lib/netstandard2.0/MediatR.xml", - "mediatr.14.0.0.nupkg.sha512", - "mediatr.nuspec" - ] - }, - "MediatR.Contracts/2.0.1": { - "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", - "type": "package", - "path": "mediatr.contracts/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "gradient_128x128.png", - "lib/netstandard2.0/MediatR.Contracts.dll", - "lib/netstandard2.0/MediatR.Contracts.xml", - "mediatr.contracts.2.0.1.nupkg.sha512", - "mediatr.contracts.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore/10.0.0": { - "sha512": "hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", - "type": "package", - "path": "microsoft.entityframeworkcore/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", - "lib/net10.0/Microsoft.EntityFrameworkCore.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { - "sha512": "C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { - "sha512": "TxHQq0kn0tpYs2ljeRl8jtmWk720B0nteqI6mAZM77HWJpYT9Zj8SkkBBlj8K3Yeq18a6NBjz6YutE+shEk4Ag==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "docs/PACKAGE.md", - "microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/10.0.0": { - "sha512": "A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/10.0.0": { - "sha512": "Zcoy6H9mSoGyvr7UvlGokEZrlZkcPCICPZr8mCsSt9U/N8eeCwCXwKF5bShdA66R0obxBCwP4AxomQHvVkC/uA==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/10.0.0": { - "sha512": "krK19MKp0BNiR9rpBDW7PKSrTMLVlifS9am3CVc4O1Jq6GWz0o4F+sw5OSL4L3mVd56W8l6JRgghUa2KB51vOw==", - "type": "package", - "path": "microsoft.extensions.caching.memory/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net10.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net462/Microsoft.Extensions.Caching.Memory.dll", - "lib/net462/Microsoft.Extensions.Caching.Memory.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration/10.0.0": { - "sha512": "H4SWETCh/cC5L1WtWchHR6LntGk3rDTTznZMssr4cL8IbDmMWBxY+MOGDc/ASnqNolLKPIWHWeuC1ddiL/iNPw==", - "type": "package", - "path": "microsoft.extensions.configuration/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.xml", - "lib/net462/Microsoft.Extensions.Configuration.dll", - "lib/net462/Microsoft.Extensions.Configuration.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { - "sha512": "d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Binder/10.0.0": { - "sha512": "tMF9wNh+hlyYDWB8mrFCQHQmWHlRosol1b/N2Jrefy1bFLnuTlgSYmPyHNmz8xVQgs7DpXytBRWxGhG+mSTp0g==", - "type": "package", - "path": "microsoft.extensions.configuration.binder/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", - "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Binder.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", - "microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.binder.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.CommandLine/10.0.0": { - "sha512": "CRj5clwZciVs46GMhAthkFq3+JiNM15Bz9CRlCZLBmRdggD6RwoBphRJ+EUDK2f+cZZ1L2zqVaQrn1KueoU5Kg==", - "type": "package", - "path": "microsoft.extensions.configuration.commandline/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.CommandLine.xml", - "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", - "microsoft.extensions.configuration.commandline.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.commandline.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.0": { - "sha512": "TmFegsI/uCdwMBD4yKpmO+OkjVNHQL49Dh/ep83NI5rPUEoBK9OdsJo1zURc1A2FuS/R/Pos3wsTjlyLnguBLA==", - "type": "package", - "path": "microsoft.extensions.configuration.environmentvariables/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", - "microsoft.extensions.configuration.environmentvariables.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.environmentvariables.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.FileExtensions/10.0.0": { - "sha512": "LqCTyF0twrG4tyEN6PpSC5ewRBDwCBazRUfCOdRddwaQ3n2S57GDDeYOlTLcbV/V2dxSSZWg5Ofr48h6BsBmxw==", - "type": "package", - "path": "microsoft.extensions.configuration.fileextensions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.FileExtensions.xml", - "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", - "microsoft.extensions.configuration.fileextensions.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.fileextensions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Json/10.0.0": { - "sha512": "BIOPTEAZoeWbHlDT9Zudu+rpecZizFwhdIFRiyZKDml7JbayXmfTXKUt+ezifsSXfBkWDdJM10oDOxo8pufEng==", - "type": "package", - "path": "microsoft.extensions.configuration.json/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.Json.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.Json.xml", - "lib/net462/Microsoft.Extensions.Configuration.Json.dll", - "lib/net462/Microsoft.Extensions.Configuration.Json.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.Json.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.Json.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", - "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", - "microsoft.extensions.configuration.json.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.json.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.UserSecrets/10.0.0": { - "sha512": "B4qHB6gQ2B3I52YRohSV7wetp01BQzi8jDmrtiVm6e4l8vH5vjqwxWcR5wumGWjdBkj1asJLLsDIocdyTQSP0A==", - "type": "package", - "path": "microsoft.extensions.configuration.usersecrets/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets", - "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props", - "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props", - "buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", - "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll", - "lib/net10.0/Microsoft.Extensions.Configuration.UserSecrets.xml", - "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll", - "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll", - "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml", - "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll", - "lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", - "microsoft.extensions.configuration.usersecrets.10.0.0.nupkg.sha512", - "microsoft.extensions.configuration.usersecrets.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/10.0.0": { - "sha512": "f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { - "sha512": "L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Diagnostics/10.0.0": { - "sha512": "xjkxIPgrT0mKTfBwb+CVqZnRchyZgzKIfDQOp8z+WUC6vPe3WokIf71z+hJPkH0YBUYJwa7Z/al1R087ib9oiw==", - "type": "package", - "path": "microsoft.extensions.diagnostics/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", - "lib/net10.0/Microsoft.Extensions.Diagnostics.dll", - "lib/net10.0/Microsoft.Extensions.Diagnostics.xml", - "lib/net462/Microsoft.Extensions.Diagnostics.dll", - "lib/net462/Microsoft.Extensions.Diagnostics.xml", - "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", - "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", - "lib/net9.0/Microsoft.Extensions.Diagnostics.dll", - "lib/net9.0/Microsoft.Extensions.Diagnostics.xml", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", - "microsoft.extensions.diagnostics.10.0.0.nupkg.sha512", - "microsoft.extensions.diagnostics.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0": { - "sha512": "SfK89ytD61S7DgzorFljSkUeluC1ncn6dtZgwc0ot39f/BEYWBl5jpgvodxduoYAs1d9HG8faCDRZxE95UMo2A==", - "type": "package", - "path": "microsoft.extensions.diagnostics.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", - "microsoft.extensions.diagnostics.abstractions.10.0.0.nupkg.sha512", - "microsoft.extensions.diagnostics.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.FileProviders.Abstractions/10.0.0": { - "sha512": "/ppSdehKk3fuXjlqCDgSOtjRK/pSHU8eWgzSHfHdwVm5BP4Dgejehkw+PtxKG2j98qTDEHDst2Y99aNsmJldmw==", - "type": "package", - "path": "microsoft.extensions.fileproviders.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.xml", - "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", - "microsoft.extensions.fileproviders.abstractions.10.0.0.nupkg.sha512", - "microsoft.extensions.fileproviders.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.FileProviders.Physical/10.0.0": { - "sha512": "UZUQ74lQMmvcprlG8w+XpxBbyRDQqfb7GAnccITw32hdkUBlmm9yNC4xl4aR9YjgV3ounZcub194sdmLSfBmPA==", - "type": "package", - "path": "microsoft.extensions.fileproviders.physical/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", - "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/net10.0/Microsoft.Extensions.FileProviders.Physical.xml", - "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml", - "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml", - "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/net9.0/Microsoft.Extensions.FileProviders.Physical.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", - "microsoft.extensions.fileproviders.physical.10.0.0.nupkg.sha512", - "microsoft.extensions.fileproviders.physical.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.FileSystemGlobbing/10.0.0": { - "sha512": "5hfVl/e+bx1px2UkN+1xXhd3hu7Ui6ENItBzckFaRDQXfr+SHT/7qrCDrlQekCF/PBtEu2vtk87U2+gDEF8EhQ==", - "type": "package", - "path": "microsoft.extensions.filesystemglobbing/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", - "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net10.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml", - "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "microsoft.extensions.filesystemglobbing.10.0.0.nupkg.sha512", - "microsoft.extensions.filesystemglobbing.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Hosting/10.0.0": { - "sha512": "yKJiVdXkSfe9foojGpBRbuDPQI8YD71IO/aE8ehGjRHE0VkEF/YWkW6StthwuFF146pc2lypZrpk/Tks6Plwhw==", - "type": "package", - "path": "microsoft.extensions.hosting/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Hosting.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets", - "lib/net10.0/Microsoft.Extensions.Hosting.dll", - "lib/net10.0/Microsoft.Extensions.Hosting.xml", - "lib/net462/Microsoft.Extensions.Hosting.dll", - "lib/net462/Microsoft.Extensions.Hosting.xml", - "lib/net8.0/Microsoft.Extensions.Hosting.dll", - "lib/net8.0/Microsoft.Extensions.Hosting.xml", - "lib/net9.0/Microsoft.Extensions.Hosting.dll", - "lib/net9.0/Microsoft.Extensions.Hosting.xml", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", - "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll", - "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml", - "microsoft.extensions.hosting.10.0.0.nupkg.sha512", - "microsoft.extensions.hosting.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Hosting.Abstractions/10.0.0": { - "sha512": "KrN6TGFwCwqOkLLk/idW/XtDQh+8In+CL9T4M1Dx+5ScsjTq4TlVbal8q532m82UYrMr6RiQJF2HvYCN0QwVsA==", - "type": "package", - "path": "microsoft.extensions.hosting.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", - "microsoft.extensions.hosting.abstractions.10.0.0.nupkg.sha512", - "microsoft.extensions.hosting.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Http/10.0.0": { - "sha512": "r+mSvm/Ryc/iYcc9zcUG5VP9EBB8PL1rgVU6macEaYk45vmGRk9PntM3aynFKN6s3Q4WW36kedTycIctctpTUQ==", - "type": "package", - "path": "microsoft.extensions.http/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Http.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Http.targets", - "lib/net10.0/Microsoft.Extensions.Http.dll", - "lib/net10.0/Microsoft.Extensions.Http.xml", - "lib/net462/Microsoft.Extensions.Http.dll", - "lib/net462/Microsoft.Extensions.Http.xml", - "lib/net8.0/Microsoft.Extensions.Http.dll", - "lib/net8.0/Microsoft.Extensions.Http.xml", - "lib/net9.0/Microsoft.Extensions.Http.dll", - "lib/net9.0/Microsoft.Extensions.Http.xml", - "lib/netstandard2.0/Microsoft.Extensions.Http.dll", - "lib/netstandard2.0/Microsoft.Extensions.Http.xml", - "microsoft.extensions.http.10.0.0.nupkg.sha512", - "microsoft.extensions.http.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/10.0.0": { - "sha512": "BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", - "type": "package", - "path": "microsoft.extensions.logging/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", - "lib/net10.0/Microsoft.Extensions.Logging.dll", - "lib/net10.0/Microsoft.Extensions.Logging.xml", - "lib/net462/Microsoft.Extensions.Logging.dll", - "lib/net462/Microsoft.Extensions.Logging.xml", - "lib/net8.0/Microsoft.Extensions.Logging.dll", - "lib/net8.0/Microsoft.Extensions.Logging.xml", - "lib/net9.0/Microsoft.Extensions.Logging.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/10.0.0": { - "sha512": "FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "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/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Configuration/10.0.0": { - "sha512": "j8zcwhS6bYB6FEfaY3nYSgHdpiL2T+/V3xjpHtslVAegyI1JUbB9yAt/BFdvZdsNbY0Udm4xFtvfT/hUwcOOOg==", - "type": "package", - "path": "microsoft.extensions.logging.configuration/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Configuration.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Configuration.xml", - "lib/net462/Microsoft.Extensions.Logging.Configuration.dll", - "lib/net462/Microsoft.Extensions.Logging.Configuration.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll", - "lib/net9.0/Microsoft.Extensions.Logging.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", - "microsoft.extensions.logging.configuration.10.0.0.nupkg.sha512", - "microsoft.extensions.logging.configuration.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Console/10.0.0": { - "sha512": "treWetuksp8LVb09fCJ5zNhNJjyDkqzVm83XxcrlWQnAdXznR140UUXo8PyEPBvFlHhjKhFQZEOP3Sk/ByCvEw==", - "type": "package", - "path": "microsoft.extensions.logging.console/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Console.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Console.xml", - "lib/net462/Microsoft.Extensions.Logging.Console.dll", - "lib/net462/Microsoft.Extensions.Logging.Console.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Console.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Console.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Console.dll", - "lib/net9.0/Microsoft.Extensions.Logging.Console.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", - "microsoft.extensions.logging.console.10.0.0.nupkg.sha512", - "microsoft.extensions.logging.console.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Debug/10.0.0": { - "sha512": "A/4vBtVaySLBGj4qluye+KSbeVCCMa6GcTbxf2YgnSDHs9b9105+VojBJ1eJPel8F1ny0JOh+Ci3vgCKn69tNQ==", - "type": "package", - "path": "microsoft.extensions.logging.debug/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets", - "lib/net10.0/Microsoft.Extensions.Logging.Debug.dll", - "lib/net10.0/Microsoft.Extensions.Logging.Debug.xml", - "lib/net462/Microsoft.Extensions.Logging.Debug.dll", - "lib/net462/Microsoft.Extensions.Logging.Debug.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll", - "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml", - "lib/net9.0/Microsoft.Extensions.Logging.Debug.dll", - "lib/net9.0/Microsoft.Extensions.Logging.Debug.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", - "microsoft.extensions.logging.debug.10.0.0.nupkg.sha512", - "microsoft.extensions.logging.debug.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.EventLog/10.0.0": { - "sha512": "EWda5nSXhzQZr3yJ3+XgIApOek+Hm+txhWCEzWNVPp/OfimL4qmvctgXu87m+S2RXw/AoUP8aLMNicJ2KWblVA==", - "type": "package", - "path": "microsoft.extensions.logging.eventlog/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets", - "lib/net10.0/Microsoft.Extensions.Logging.EventLog.dll", - "lib/net10.0/Microsoft.Extensions.Logging.EventLog.xml", - "lib/net462/Microsoft.Extensions.Logging.EventLog.dll", - "lib/net462/Microsoft.Extensions.Logging.EventLog.xml", - "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll", - "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml", - "lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll", - "lib/net9.0/Microsoft.Extensions.Logging.EventLog.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", - "microsoft.extensions.logging.eventlog.10.0.0.nupkg.sha512", - "microsoft.extensions.logging.eventlog.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.EventSource/10.0.0": { - "sha512": "+Qc+kgoJi1w2A/Jm+7h04LcK2JoJkwAxKg7kBakkNRcemTmRGocqPa7rVNVGorTYruFrUS25GwkFNtOECnjhXg==", - "type": "package", - "path": "microsoft.extensions.logging.eventsource/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets", - "lib/net10.0/Microsoft.Extensions.Logging.EventSource.dll", - "lib/net10.0/Microsoft.Extensions.Logging.EventSource.xml", - "lib/net462/Microsoft.Extensions.Logging.EventSource.dll", - "lib/net462/Microsoft.Extensions.Logging.EventSource.xml", - "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll", - "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml", - "lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll", - "lib/net9.0/Microsoft.Extensions.Logging.EventSource.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", - "microsoft.extensions.logging.eventsource.10.0.0.nupkg.sha512", - "microsoft.extensions.logging.eventsource.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/10.0.0": { - "sha512": "8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", - "type": "package", - "path": "microsoft.extensions.options/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", - "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", - "buildTransitive/net461/Microsoft.Extensions.Options.targets", - "buildTransitive/net462/Microsoft.Extensions.Options.targets", - "buildTransitive/net8.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", - "lib/net10.0/Microsoft.Extensions.Options.dll", - "lib/net10.0/Microsoft.Extensions.Options.xml", - "lib/net462/Microsoft.Extensions.Options.dll", - "lib/net462/Microsoft.Extensions.Options.xml", - "lib/net8.0/Microsoft.Extensions.Options.dll", - "lib/net8.0/Microsoft.Extensions.Options.xml", - "lib/net9.0/Microsoft.Extensions.Options.dll", - "lib/net9.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.10.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0": { - "sha512": "tL9cSl3maS5FPzp/3MtlZI21ExWhni0nnUCF8HY4npTsINw45n9SNDbkKXBMtFyUFGSsQep25fHIDN4f/Vp3AQ==", - "type": "package", - "path": "microsoft.extensions.options.configurationextensions/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", - "microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512", - "microsoft.extensions.options.configurationextensions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/10.0.0": { - "sha512": "inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", - "type": "package", - "path": "microsoft.extensions.primitives/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "lib/net10.0/Microsoft.Extensions.Primitives.dll", - "lib/net10.0/Microsoft.Extensions.Primitives.xml", - "lib/net462/Microsoft.Extensions.Primitives.dll", - "lib/net462/Microsoft.Extensions.Primitives.xml", - "lib/net8.0/Microsoft.Extensions.Primitives.dll", - "lib/net8.0/Microsoft.Extensions.Primitives.xml", - "lib/net9.0/Microsoft.Extensions.Primitives.dll", - "lib/net9.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.10.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.IdentityModel.Abstractions/8.14.0": { - "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Abstractions.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/8.14.0": { - "sha512": "4jOpiA4THdtpLyMdAb24dtj7+6GmvhOhxf5XHLYWmPKF8ApEnApal1UnJsKO4HxUWRXDA6C4WQVfYyqsRhpNpQ==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/8.14.0": { - "sha512": "eqqnemdW38CKZEHS6diA50BV94QICozDZEvSrsvN3SJXUFwVB9gy+/oz76gldP7nZliA16IglXjXTCTdmU/Ejg==", - "type": "package", - "path": "microsoft.identitymodel.logging/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Logging.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Logging.dll", - "lib/net8.0/Microsoft.IdentityModel.Logging.xml", - "lib/net9.0/Microsoft.IdentityModel.Logging.dll", - "lib/net9.0/Microsoft.IdentityModel.Logging.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/8.14.0": { - "sha512": "lKIZiBiGd36k02TCdMHp1KlNWisyIvQxcYJvIkz7P4gSQ9zi8dgh6S5Grj8NNG7HWYIPfQymGyoZ6JB5d1Lo1g==", - "type": "package", - "path": "microsoft.identitymodel.tokens/8.14.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.IdentityModel.Tokens.dll", - "lib/net462/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/net8.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", - "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", - "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Minio/7.0.0": { - "sha512": "GiCD0koYBM8/VCXRkrfSzOtySEmrA2ngceJuxRO5H+/uGodiTX+XPaUHQq9/1DpaeBxWnkmrgqu52dwuZqIYgw==", - "type": "package", - "path": "minio/7.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "icon.png", - "lib/net8.0/Minio.dll", - "lib/net8.0/Minio.pdb", - "lib/net8.0/Minio.xml", - "lib/netstandard2.0/Minio.dll", - "lib/netstandard2.0/Minio.pdb", - "lib/netstandard2.0/Minio.xml", - "minio.7.0.0.nupkg.sha512", - "minio.nuspec", - "readme.md" - ] - }, - "Npgsql/10.0.0": { - "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", - "type": "package", - "path": "npgsql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.dll", - "lib/net10.0/Npgsql.xml", - "lib/net8.0/Npgsql.dll", - "lib/net8.0/Npgsql.xml", - "lib/net9.0/Npgsql.dll", - "lib/net9.0/Npgsql.xml", - "npgsql.10.0.0.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { - "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", - "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "Pipelines.Sockets.Unofficial/2.2.8": { - "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", - "type": "package", - "path": "pipelines.sockets.unofficial/2.2.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Pipelines.Sockets.Unofficial.dll", - "lib/net461/Pipelines.Sockets.Unofficial.xml", - "lib/net472/Pipelines.Sockets.Unofficial.dll", - "lib/net472/Pipelines.Sockets.Unofficial.xml", - "lib/net5.0/Pipelines.Sockets.Unofficial.dll", - "lib/net5.0/Pipelines.Sockets.Unofficial.xml", - "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", - "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", - "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", - "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", - "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", - "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", - "pipelines.sockets.unofficial.2.2.8.nupkg.sha512", - "pipelines.sockets.unofficial.nuspec" - ] - }, - "RabbitMQ.Client/7.2.0": { - "sha512": "PPQ7cF7lwbhqC4up6en1bTUZlz06YqQwJecOJzsguTtyhNA7oL5uNDZIx/h6ZfcyPZV4V3DYKSCxfm4RUFLcbA==", - "type": "package", - "path": "rabbitmq.client/7.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net8.0/RabbitMQ.Client.dll", - "lib/net8.0/RabbitMQ.Client.xml", - "lib/netstandard2.0/RabbitMQ.Client.dll", - "lib/netstandard2.0/RabbitMQ.Client.xml", - "rabbitmq.client.7.2.0.nupkg.sha512", - "rabbitmq.client.nuspec" - ] - }, - "Serilog/4.3.0": { - "sha512": "+cDryFR0GRhsGOnZSKwaDzRRl4MupvJ42FhCE4zhQRVanX0Jpg6WuCBk59OVhVDPmab1bB+nRykAnykYELA9qQ==", - "type": "package", - "path": "serilog/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "build/Serilog.targets", - "icon.png", - "lib/net462/Serilog.dll", - "lib/net462/Serilog.xml", - "lib/net471/Serilog.dll", - "lib/net471/Serilog.xml", - "lib/net6.0/Serilog.dll", - "lib/net6.0/Serilog.xml", - "lib/net8.0/Serilog.dll", - "lib/net8.0/Serilog.xml", - "lib/net9.0/Serilog.dll", - "lib/net9.0/Serilog.xml", - "lib/netstandard2.0/Serilog.dll", - "lib/netstandard2.0/Serilog.xml", - "serilog.4.3.0.nupkg.sha512", - "serilog.nuspec" - ] - }, - "Serilog.Extensions.Hosting/10.0.0": { - "sha512": "E7juuIc+gzoGxgzFooFgAV8g9BfiSXNKsUok9NmEpyAXg2odkcPsMa/Yo4axkJRlh0se7mkYQ1GXDaBemR+b6w==", - "type": "package", - "path": "serilog.extensions.hosting/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net10.0/Serilog.Extensions.Hosting.dll", - "lib/net10.0/Serilog.Extensions.Hosting.xml", - "lib/net462/Serilog.Extensions.Hosting.dll", - "lib/net462/Serilog.Extensions.Hosting.xml", - "lib/net8.0/Serilog.Extensions.Hosting.dll", - "lib/net8.0/Serilog.Extensions.Hosting.xml", - "lib/net9.0/Serilog.Extensions.Hosting.dll", - "lib/net9.0/Serilog.Extensions.Hosting.xml", - "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", - "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", - "lib/netstandard2.1/Serilog.Extensions.Hosting.dll", - "lib/netstandard2.1/Serilog.Extensions.Hosting.xml", - "serilog.extensions.hosting.10.0.0.nupkg.sha512", - "serilog.extensions.hosting.nuspec" - ] - }, - "Serilog.Extensions.Logging/10.0.0": { - "sha512": "vx0kABKl2dWbBhhqAfTOk53/i8aV/5VaT3a6il9gn72Wqs2pM7EK2OB6No6xdqK2IaY6Zf9gdjLuK9BVa2rT+Q==", - "type": "package", - "path": "serilog.extensions.logging/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net10.0/Serilog.Extensions.Logging.dll", - "lib/net10.0/Serilog.Extensions.Logging.xml", - "lib/net462/Serilog.Extensions.Logging.dll", - "lib/net462/Serilog.Extensions.Logging.xml", - "lib/net8.0/Serilog.Extensions.Logging.dll", - "lib/net8.0/Serilog.Extensions.Logging.xml", - "lib/net9.0/Serilog.Extensions.Logging.dll", - "lib/net9.0/Serilog.Extensions.Logging.xml", - "lib/netstandard2.0/Serilog.Extensions.Logging.dll", - "lib/netstandard2.0/Serilog.Extensions.Logging.xml", - "lib/netstandard2.1/Serilog.Extensions.Logging.dll", - "lib/netstandard2.1/Serilog.Extensions.Logging.xml", - "serilog-extension-nuget.png", - "serilog.extensions.logging.10.0.0.nupkg.sha512", - "serilog.extensions.logging.nuspec" - ] - }, - "Serilog.Sinks.Console/6.1.1": { - "sha512": "8jbqgjUyZlfCuSTaJk6lOca465OndqOz3KZP6Cryt/IqZYybyBu7GP0fE/AXBzrrQB3EBmQntBFAvMVz1COvAA==", - "type": "package", - "path": "serilog.sinks.console/6.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "icon.png", - "lib/net462/Serilog.Sinks.Console.dll", - "lib/net462/Serilog.Sinks.Console.xml", - "lib/net471/Serilog.Sinks.Console.dll", - "lib/net471/Serilog.Sinks.Console.xml", - "lib/net6.0/Serilog.Sinks.Console.dll", - "lib/net6.0/Serilog.Sinks.Console.xml", - "lib/net8.0/Serilog.Sinks.Console.dll", - "lib/net8.0/Serilog.Sinks.Console.xml", - "lib/netstandard2.0/Serilog.Sinks.Console.dll", - "lib/netstandard2.0/Serilog.Sinks.Console.xml", - "serilog.sinks.console.6.1.1.nupkg.sha512", - "serilog.sinks.console.nuspec" - ] - }, - "SixLabors.ImageSharp/3.1.12": { - "sha512": "iAg6zifihXEFS/t7fiHhZBGAdCp3FavsF4i2ZIDp0JfeYeDVzvmlbY1CNhhIKimaIzrzSi5M/NBFcWvZT2rB/A==", - "type": "package", - "path": "sixlabors.imagesharp/3.1.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "build/SixLabors.ImageSharp.props", - "lib/net6.0/SixLabors.ImageSharp.dll", - "lib/net6.0/SixLabors.ImageSharp.xml", - "sixlabors.imagesharp.128.png", - "sixlabors.imagesharp.3.1.12.nupkg.sha512", - "sixlabors.imagesharp.nuspec" - ] - }, - "StackExchange.Redis/2.10.1": { - "sha512": "se08WZvD42H3bV4XBW07pupTiE2/72qStKyi/lRqqcijksFWfRtwLTuhFtZ4OX19f4+we/2qruFZBXYJBFc8PQ==", - "type": "package", - "path": "stackexchange.redis/2.10.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net461/StackExchange.Redis.dll", - "lib/net461/StackExchange.Redis.xml", - "lib/net472/StackExchange.Redis.dll", - "lib/net472/StackExchange.Redis.xml", - "lib/net6.0/StackExchange.Redis.dll", - "lib/net6.0/StackExchange.Redis.xml", - "lib/net8.0/StackExchange.Redis.dll", - "lib/net8.0/StackExchange.Redis.xml", - "lib/netcoreapp3.1/StackExchange.Redis.dll", - "lib/netcoreapp3.1/StackExchange.Redis.xml", - "lib/netstandard2.0/StackExchange.Redis.dll", - "lib/netstandard2.0/StackExchange.Redis.xml", - "stackexchange.redis.2.10.1.nupkg.sha512", - "stackexchange.redis.nuspec" - ] - }, - "System.Diagnostics.EventLog/10.0.0": { - "sha512": "uaFRda9NjtbJRkdx311eXlAA3n2em7223c1A8d1VWyl+4FL9vkG7y2lpPfBU9HYdj/9KgdRNdn1vFK8ZYCYT/A==", - "type": "package", - "path": "system.diagnostics.eventlog/10.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Diagnostics.EventLog.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", - "lib/net10.0/System.Diagnostics.EventLog.dll", - "lib/net10.0/System.Diagnostics.EventLog.xml", - "lib/net462/System.Diagnostics.EventLog.dll", - "lib/net462/System.Diagnostics.EventLog.xml", - "lib/net8.0/System.Diagnostics.EventLog.dll", - "lib/net8.0/System.Diagnostics.EventLog.xml", - "lib/net9.0/System.Diagnostics.EventLog.dll", - "lib/net9.0/System.Diagnostics.EventLog.xml", - "lib/netstandard2.0/System.Diagnostics.EventLog.dll", - "lib/netstandard2.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/net10.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.xml", - "system.diagnostics.eventlog.10.0.0.nupkg.sha512", - "system.diagnostics.eventlog.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.IO.Hashing/9.0.10": { - "sha512": "9gv5z71xaWWmcGEs4bXdreIhKp2kYLK2fvPK5gQkgnWMYvZ8ieaxKofDjxL3scZiEYfi/yW2nJTiKV2awcWEdA==", - "type": "package", - "path": "system.io.hashing/9.0.10", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.IO.Hashing.targets", - "buildTransitive/net462/_._", - "buildTransitive/net8.0/_._", - "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", - "lib/net462/System.IO.Hashing.dll", - "lib/net462/System.IO.Hashing.xml", - "lib/net8.0/System.IO.Hashing.dll", - "lib/net8.0/System.IO.Hashing.xml", - "lib/net9.0/System.IO.Hashing.dll", - "lib/net9.0/System.IO.Hashing.xml", - "lib/netstandard2.0/System.IO.Hashing.dll", - "lib/netstandard2.0/System.IO.Hashing.xml", - "system.io.hashing.9.0.10.nupkg.sha512", - "system.io.hashing.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Reactive/6.0.1": { - "sha512": "rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==", - "type": "package", - "path": "system.reactive/6.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/net6.0-windows10.0.19041/_._", - "build/net6.0/_._", - "buildTransitive/net6.0-windows10.0.19041/_._", - "buildTransitive/net6.0/_._", - "icon.png", - "lib/net472/System.Reactive.dll", - "lib/net472/System.Reactive.xml", - "lib/net6.0-windows10.0.19041/System.Reactive.dll", - "lib/net6.0-windows10.0.19041/System.Reactive.xml", - "lib/net6.0/System.Reactive.dll", - "lib/net6.0/System.Reactive.xml", - "lib/netstandard2.0/System.Reactive.dll", - "lib/netstandard2.0/System.Reactive.xml", - "lib/uap10.0.18362/System.Reactive.dll", - "lib/uap10.0.18362/System.Reactive.pri", - "lib/uap10.0.18362/System.Reactive.xml", - "readme.md", - "system.reactive.6.0.1.nupkg.sha512", - "system.reactive.nuspec" - ] - }, - "System.Threading.RateLimiting/8.0.0": { - "sha512": "7mu9v0QDv66ar3DpGSZHg9NuNcxDaaAcnMULuZlaTpP9+hwXhrxNGsF5GmLkSHxFdb5bBc1TzeujsRgTrPWi+Q==", - "type": "package", - "path": "system.threading.ratelimiting/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Threading.RateLimiting.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Threading.RateLimiting.targets", - "lib/net462/System.Threading.RateLimiting.dll", - "lib/net462/System.Threading.RateLimiting.xml", - "lib/net6.0/System.Threading.RateLimiting.dll", - "lib/net6.0/System.Threading.RateLimiting.xml", - "lib/net7.0/System.Threading.RateLimiting.dll", - "lib/net7.0/System.Threading.RateLimiting.xml", - "lib/net8.0/System.Threading.RateLimiting.dll", - "lib/net8.0/System.Threading.RateLimiting.xml", - "lib/netstandard2.0/System.Threading.RateLimiting.dll", - "lib/netstandard2.0/System.Threading.RateLimiting.xml", - "system.threading.ratelimiting.8.0.0.nupkg.sha512", - "system.threading.ratelimiting.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "FileProcessing.Application/1.0.0": { - "type": "project", - "path": "../FileProcessing.Application/FileProcessing.Application.csproj", - "msbuildProject": "../FileProcessing.Application/FileProcessing.Application.csproj" - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "path": "../FileProcessing.Contracts/FileProcessing.Contracts.csproj", - "msbuildProject": "../FileProcessing.Contracts/FileProcessing.Contracts.csproj" - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "path": "../FileProcessing.Domain/FileProcessing.Domain.csproj", - "msbuildProject": "../FileProcessing.Domain/FileProcessing.Domain.csproj" - }, - "FileProcessing.Infrastructure/1.0.0": { - "type": "project", - "path": "../FileProcessing.Infrastructure/FileProcessing.Infrastructure.csproj", - "msbuildProject": "../FileProcessing.Infrastructure/FileProcessing.Infrastructure.csproj" - }, - "FileProcessing.Shared/1.0.0": { - "type": "project", - "path": "../FileProcessing.Shared/FileProcessing.Shared.csproj", - "msbuildProject": "../FileProcessing.Shared/FileProcessing.Shared.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "FileProcessing.Application >= 1.0.0", - "FileProcessing.Infrastructure >= 1.0.0", - "Microsoft.Extensions.Hosting >= 10.0.0", - "Serilog.Extensions.Hosting >= 10.0.0", - "Serilog.Sinks.Console >= 6.1.1" - ] - }, - "packageFolders": { - "C:\\Users\\Dell\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Worker\\FileProcessing.Worker.csproj", - "projectName": "FileProcessing.Worker", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Worker\\FileProcessing.Worker.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Worker\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Application\\FileProcessing.Application.csproj" - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Infrastructure\\FileProcessing.Infrastructure.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.Extensions.Hosting": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Serilog.Extensions.Hosting": { - "target": "Package", - "version": "[10.0.0, )" - }, - "Serilog.Sinks.Console": { - "target": "Package", - "version": "[6.1.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/src/FileProcessing.Worker/obj/project.nuget.cache b/src/FileProcessing.Worker/obj/project.nuget.cache deleted file mode 100644 index 8d12417..0000000 --- a/src/FileProcessing.Worker/obj/project.nuget.cache +++ /dev/null @@ -1,67 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "/gnlc8ilUZY=", - "success": true, - "projectFilePath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Worker\\FileProcessing.Worker.csproj", - "expectedPackageFiles": [ - "C:\\Users\\Dell\\.nuget\\packages\\communitytoolkit.highperformance\\8.4.0\\communitytoolkit.highperformance.8.4.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\fluentvalidation\\12.1.1\\fluentvalidation.12.1.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\12.1.1\\fluentvalidation.dependencyinjectionextensions.12.1.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\mediatr\\14.0.0\\mediatr.14.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore\\10.0.0\\microsoft.entityframeworkcore.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\10.0.0\\microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\10.0.0\\microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\10.0.0\\microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\10.0.0\\microsoft.extensions.caching.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.caching.memory\\10.0.0\\microsoft.extensions.caching.memory.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration\\10.0.0\\microsoft.extensions.configuration.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.0\\microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.binder\\10.0.0\\microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\10.0.0\\microsoft.extensions.configuration.commandline.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\10.0.0\\microsoft.extensions.configuration.environmentvariables.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\10.0.0\\microsoft.extensions.configuration.fileextensions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.json\\10.0.0\\microsoft.extensions.configuration.json.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\10.0.0\\microsoft.extensions.configuration.usersecrets.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.0\\microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.0\\microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.diagnostics\\10.0.0\\microsoft.extensions.diagnostics.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\10.0.0\\microsoft.extensions.diagnostics.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\10.0.0\\microsoft.extensions.fileproviders.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\10.0.0\\microsoft.extensions.fileproviders.physical.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\10.0.0\\microsoft.extensions.filesystemglobbing.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.hosting\\10.0.0\\microsoft.extensions.hosting.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\10.0.0\\microsoft.extensions.hosting.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.http\\10.0.0\\microsoft.extensions.http.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.logging\\10.0.0\\microsoft.extensions.logging.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.logging.configuration\\10.0.0\\microsoft.extensions.logging.configuration.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.logging.console\\10.0.0\\microsoft.extensions.logging.console.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.logging.debug\\10.0.0\\microsoft.extensions.logging.debug.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.logging.eventlog\\10.0.0\\microsoft.extensions.logging.eventlog.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.logging.eventsource\\10.0.0\\microsoft.extensions.logging.eventsource.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.options\\10.0.0\\microsoft.extensions.options.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\10.0.0\\microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.0\\microsoft.extensions.primitives.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.14.0\\microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.14.0\\microsoft.identitymodel.jsonwebtokens.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.logging\\8.14.0\\microsoft.identitymodel.logging.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.14.0\\microsoft.identitymodel.tokens.8.14.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\minio\\7.0.0\\minio.7.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\npgsql\\10.0.0\\npgsql.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\10.0.0\\npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\pipelines.sockets.unofficial\\2.2.8\\pipelines.sockets.unofficial.2.2.8.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\rabbitmq.client\\7.2.0\\rabbitmq.client.7.2.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog\\4.3.0\\serilog.4.3.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.extensions.hosting\\10.0.0\\serilog.extensions.hosting.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.extensions.logging\\10.0.0\\serilog.extensions.logging.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\serilog.sinks.console\\6.1.1\\serilog.sinks.console.6.1.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\sixlabors.imagesharp\\3.1.12\\sixlabors.imagesharp.3.1.12.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\stackexchange.redis\\2.10.1\\stackexchange.redis.2.10.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\system.diagnostics.eventlog\\10.0.0\\system.diagnostics.eventlog.10.0.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\system.io.hashing\\9.0.10\\system.io.hashing.9.0.10.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\system.reactive\\6.0.1\\system.reactive.6.0.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\system.threading.ratelimiting\\8.0.0\\system.threading.ratelimiting.8.0.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/tests/IntegrationTests/ContractTests.cs b/tests/IntegrationTests/ContractTests.cs index ce7c55e..357c83b 100644 --- a/tests/IntegrationTests/ContractTests.cs +++ b/tests/IntegrationTests/ContractTests.cs @@ -1,3 +1,4 @@ using FileProcessing.Contracts; namespace IntegrationTests; -public sealed class ContractTests { [Fact] public void File_job_round_trips(){var job=new FileJob(Guid.NewGuid(),"correlation",2);var json=System.Text.Json.JsonSerializer.Serialize(job);Assert.Equal(job,System.Text.Json.JsonSerializer.Deserialize(json));} } + +public sealed class ContractTests { [Fact] public void File_job_round_trips() { var job = new FileJob(Guid.NewGuid(), "correlation", 2); var json = System.Text.Json.JsonSerializer.Serialize(job); Assert.Equal(job, System.Text.Json.JsonSerializer.Deserialize(json)); } } diff --git a/tests/IntegrationTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_IntegrationTests b/tests/IntegrationTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_IntegrationTests deleted file mode 100644 index 0828b54..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_IntegrationTests and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/CoverletSourceRootsMapping_IntegrationTests b/tests/IntegrationTests/bin/Debug/net10.0/CoverletSourceRootsMapping_IntegrationTests deleted file mode 100644 index 0828b54..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/CoverletSourceRootsMapping_IntegrationTests and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/FileProcessing.Contracts.dll b/tests/IntegrationTests/bin/Debug/net10.0/FileProcessing.Contracts.dll deleted file mode 100644 index 36b4f21..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/FileProcessing.Contracts.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/FileProcessing.Contracts.pdb b/tests/IntegrationTests/bin/Debug/net10.0/FileProcessing.Contracts.pdb deleted file mode 100644 index 9b799b5..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/FileProcessing.Contracts.pdb and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.deps.json b/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.deps.json deleted file mode 100644 index c7b964b..0000000 --- a/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.deps.json +++ /dev/null @@ -1,433 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "IntegrationTests/1.0.0": { - "dependencies": { - "FileProcessing.Contracts": "1.0.0", - "Microsoft.NET.Test.Sdk": "17.14.1", - "xunit": "2.9.3" - }, - "runtime": { - "IntegrationTests.dll": {} - } - }, - "Microsoft.CodeCoverage/17.14.1": { - "runtime": { - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.225.12603" - } - } - }, - "Microsoft.NET.Test.Sdk/17.14.1": { - "dependencies": { - "Microsoft.CodeCoverage": "17.14.1", - "Microsoft.TestPlatform.TestHost": "17.14.1" - } - }, - "Microsoft.TestPlatform.ObjectModel/17.14.1": { - "runtime": { - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - } - }, - "resources": { - "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.14.1": { - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.14.1", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - } - }, - "resources": { - "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "xunit/2.9.3": { - "dependencies": { - "xunit.assert": "2.9.3", - "xunit.core": "2.9.3" - } - }, - "xunit.abstractions/2.0.3": { - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "xunit.assert/2.9.3": { - "runtime": { - "lib/net6.0/xunit.assert.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "xunit.core/2.9.3": { - "dependencies": { - "xunit.extensibility.core": "2.9.3", - "xunit.extensibility.execution": "2.9.3" - } - }, - "xunit.extensibility.core/2.9.3": { - "dependencies": { - "xunit.abstractions": "2.0.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "xunit.extensibility.execution/2.9.3": { - "dependencies": { - "xunit.extensibility.core": "2.9.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "FileProcessing.Contracts/1.0.0": { - "runtime": { - "FileProcessing.Contracts.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "IntegrationTests/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.CodeCoverage/17.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pmTrhfFIoplzFVbhVwUquT+77CbGH+h4/3mBpdmIlYtBi9nAB+kKI6dN3A/nV4DFi3wLLx/BlHIPK+MkbQ6Tpg==", - "path": "microsoft.codecoverage/17.14.1", - "hashPath": "microsoft.codecoverage.17.14.1.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/17.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HJKqKOE+vshXra2aEHpi2TlxYX7Z9VFYkr+E5rwEvHC8eIXiyO+K9kNm8vmNom3e2rA56WqxU+/N9NJlLGXsJQ==", - "path": "microsoft.net.test.sdk/17.14.1", - "hashPath": "microsoft.net.test.sdk.17.14.1.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/17.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xTP1W6Mi6SWmuxd3a+jj9G9UoC850WGwZUps1Wah9r1ZxgXhdJfj1QqDLJkFjHDCvN42qDL2Ps5KjQYWUU0zcQ==", - "path": "microsoft.testplatform.objectmodel/17.14.1", - "hashPath": "microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/17.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d78LPzGKkJwsJXAQwsbJJ7LE7D1wB+rAyhHHAaODF+RDSQ0NgMjDFkSA1Djw18VrxO76GlKAjRUhl+H8NL8Z+Q==", - "path": "microsoft.testplatform.testhost/17.14.1", - "hashPath": "microsoft.testplatform.testhost.17.14.1.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" - }, - "xunit/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", - "path": "xunit/2.9.3", - "hashPath": "xunit.2.9.3.nupkg.sha512" - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "path": "xunit.abstractions/2.0.3", - "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" - }, - "xunit.assert/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", - "path": "xunit.assert/2.9.3", - "hashPath": "xunit.assert.2.9.3.nupkg.sha512" - }, - "xunit.core/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", - "path": "xunit.core/2.9.3", - "hashPath": "xunit.core.2.9.3.nupkg.sha512" - }, - "xunit.extensibility.core/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", - "path": "xunit.extensibility.core/2.9.3", - "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512" - }, - "xunit.extensibility.execution/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", - "path": "xunit.extensibility.execution/2.9.3", - "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512" - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.dll b/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.dll deleted file mode 100644 index 1d1fdf9..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.pdb b/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.pdb deleted file mode 100644 index 0250c1b..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.pdb and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.runtimeconfig.json b/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.runtimeconfig.json deleted file mode 100644 index f27c82f..0000000 --- a/tests/IntegrationTests/bin/Debug/net10.0/IntegrationTests.runtimeconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net10.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "10.0.0" - }, - "configProperties": { - "MSTest.EnableParentProcessQuery": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll deleted file mode 100644 index 55ce79c..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll b/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll deleted file mode 100644 index e06f7bf..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll deleted file mode 100644 index 9b6de68..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll deleted file mode 100644 index 39fb3bd..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll b/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll deleted file mode 100644 index abf4a0b..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll deleted file mode 100644 index e2fbdcb..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll deleted file mode 100644 index 32a461c..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll deleted file mode 100644 index c9ab03e..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/Newtonsoft.Json.dll b/tests/IntegrationTests/bin/Debug/net10.0/Newtonsoft.Json.dll deleted file mode 100644 index d035c38..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 6b4cb52..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 4bd6351..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 7b44217..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 711b34d..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 8e5665d..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 7430499..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 310ab84..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 451e2d2..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index e606f2d..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index c4a0f6d..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 861e885..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index a3867c8..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 08ad46b..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 44c4b7f..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 668630a..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index e7ac83f..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 305ae61..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a2eeac8..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 7394ada..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 36ad487..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 21fd3a2..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 3138d0b..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index e0afbb4..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 591475d..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index f6d7529..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 008facc..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 7a2bc17..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index f5e04ec..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 4c707a0..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 84e7a2d..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 4198d29..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 6583956..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 354b0bf..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index f46d948..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 42c1de2..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 9e65b3a..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 26b5522..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index bdc41ed..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 302a135..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index b435708..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index c9f988e..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 0849e28..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 8657f14..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index a2a3f0e..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 834e160..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 2b48978..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 59fa16a..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a4b7361..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 968210b..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 5f94d05..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/testhost.dll b/tests/IntegrationTests/bin/Debug/net10.0/testhost.dll deleted file mode 100644 index 538cc6d..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/testhost.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/testhost.exe b/tests/IntegrationTests/bin/Debug/net10.0/testhost.exe deleted file mode 100644 index c741b7a..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/testhost.exe and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index d397c2d..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 1f753be..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index fb6e8f0..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index e032b07..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index c5b5b63..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/xunit.abstractions.dll b/tests/IntegrationTests/bin/Debug/net10.0/xunit.abstractions.dll deleted file mode 100644 index d1e90bf..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/xunit.abstractions.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/xunit.assert.dll b/tests/IntegrationTests/bin/Debug/net10.0/xunit.assert.dll deleted file mode 100644 index 99bc34c..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/xunit.assert.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/xunit.core.dll b/tests/IntegrationTests/bin/Debug/net10.0/xunit.core.dll deleted file mode 100644 index d56aa16..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/xunit.core.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/xunit.execution.dotnet.dll b/tests/IntegrationTests/bin/Debug/net10.0/xunit.execution.dotnet.dll deleted file mode 100644 index 7a1cc87..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/xunit.execution.dotnet.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll b/tests/IntegrationTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll deleted file mode 100644 index 8126550..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 34e54ed..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index dc5e3d1..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index bf6c73d..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index cfbf0bc..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index f671e52..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index f30f879..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index c2b89ef..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a0764e6..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index a6014d3..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 3e7e989..0000000 Binary files a/tests/IntegrationTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/IntegrationTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/tests/IntegrationTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/tests/IntegrationTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/tests/IntegrationTests/obj/Debug/net10.0/Integrat.CDF5F225.Up2Date b/tests/IntegrationTests/obj/Debug/net10.0/Integrat.CDF5F225.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.AssemblyInfo.cs b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.AssemblyInfo.cs deleted file mode 100644 index 856ac3e..0000000 --- a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.AssemblyInfo.cs +++ /dev/null @@ -1,22 +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: System.Reflection.AssemblyCompanyAttribute("IntegrationTests")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("IntegrationTests")] -[assembly: System.Reflection.AssemblyTitleAttribute("IntegrationTests")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.AssemblyInfoInputs.cache b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.AssemblyInfoInputs.cache deleted file mode 100644 index c4fe582..0000000 --- a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -513c654937a43d2f56e6635ea3553131e949697f48b10226222d365604397638 diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.GeneratedMSBuildEditorConfig.editorconfig b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b131481..0000000 --- a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,18 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property.EntryPointFilePath = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = IntegrationTests -build_property.ProjectDir = D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.GlobalUsings.g.cs b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.GlobalUsings.g.cs deleted file mode 100644 index fe43752..0000000 --- a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.GlobalUsings.g.cs +++ /dev/null @@ -1,9 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; -global using Xunit; diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.assets.cache b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.assets.cache deleted file mode 100644 index 304a868..0000000 Binary files a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.assets.cache and /dev/null differ diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.csproj.AssemblyReference.cache b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.csproj.AssemblyReference.cache deleted file mode 100644 index ad558f2..0000000 Binary files a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.csproj.AssemblyReference.cache and /dev/null differ diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.csproj.CoreCompileInputs.cache b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.csproj.CoreCompileInputs.cache deleted file mode 100644 index f815251..0000000 --- a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -070e31897b3953cd196cda57b10b6f8f10dc0396e95c0fb045bf8ad98ab0baa0 diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.csproj.FileListAbsolute.txt b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.csproj.FileListAbsolute.txt deleted file mode 100644 index 7732951..0000000 --- a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,100 +0,0 @@ -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\testhost.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\xunit.abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\testhost.exe -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\xunit.runner.visualstudio.testadapter.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\IntegrationTests.deps.json -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\IntegrationTests.runtimeconfig.json -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\IntegrationTests.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\IntegrationTests.pdb -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\Microsoft.TestPlatform.CoreUtilities.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\Microsoft.TestPlatform.PlatformAbstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\Microsoft.TestPlatform.CommunicationUtilities.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\Microsoft.TestPlatform.CrossPlatEngine.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\Microsoft.TestPlatform.Utilities.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\Microsoft.VisualStudio.TestPlatform.Common.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\Newtonsoft.Json.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\xunit.assert.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\xunit.core.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\xunit.execution.dotnet.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\IntegrationTests.csproj.AssemblyReference.cache -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\IntegrationTests.GeneratedMSBuildEditorConfig.editorconfig -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\IntegrationTests.AssemblyInfoInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\IntegrationTests.AssemblyInfo.cs -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\IntegrationTests.csproj.CoreCompileInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\Integrat.CDF5F225.Up2Date -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\IntegrationTests.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\refint\IntegrationTests.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\IntegrationTests.pdb -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\IntegrationTests.genruntimeconfig.cache -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\obj\Debug\net10.0\ref\IntegrationTests.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\.msCoverageSourceRootsMapping_IntegrationTests -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\CoverletSourceRootsMapping_IntegrationTests -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\FileProcessing.Contracts.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\IntegrationTests\bin\Debug\net10.0\FileProcessing.Contracts.pdb diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.dll b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.dll deleted file mode 100644 index 1d1fdf9..0000000 Binary files a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.dll and /dev/null differ diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.genruntimeconfig.cache b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.genruntimeconfig.cache deleted file mode 100644 index 4ec2848..0000000 --- a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -bac5a0485dafc40b58b5a6b507996b27231d000a5a9fb251fc2ae3b6f7cf0ae3 diff --git a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.pdb b/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.pdb deleted file mode 100644 index 0250c1b..0000000 Binary files a/tests/IntegrationTests/obj/Debug/net10.0/IntegrationTests.pdb and /dev/null differ diff --git a/tests/IntegrationTests/obj/Debug/net10.0/ref/IntegrationTests.dll b/tests/IntegrationTests/obj/Debug/net10.0/ref/IntegrationTests.dll deleted file mode 100644 index a84c2b0..0000000 Binary files a/tests/IntegrationTests/obj/Debug/net10.0/ref/IntegrationTests.dll and /dev/null differ diff --git a/tests/IntegrationTests/obj/Debug/net10.0/refint/IntegrationTests.dll b/tests/IntegrationTests/obj/Debug/net10.0/refint/IntegrationTests.dll deleted file mode 100644 index a84c2b0..0000000 Binary files a/tests/IntegrationTests/obj/Debug/net10.0/refint/IntegrationTests.dll and /dev/null differ diff --git a/tests/IntegrationTests/obj/IntegrationTests.csproj.nuget.dgspec.json b/tests/IntegrationTests/obj/IntegrationTests.csproj.nuget.dgspec.json deleted file mode 100644 index 264115c..0000000 --- a/tests/IntegrationTests/obj/IntegrationTests.csproj.nuget.dgspec.json +++ /dev/null @@ -1,716 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\IntegrationTests\\IntegrationTests.csproj": {} - }, - "projects": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "projectName": "FileProcessing.Contracts", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\IntegrationTests\\IntegrationTests.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\IntegrationTests\\IntegrationTests.csproj", - "projectName": "IntegrationTests", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\IntegrationTests\\IntegrationTests.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\IntegrationTests\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.14.1, )" - }, - "coverlet.collector": { - "target": "Package", - "version": "[6.0.4, )" - }, - "xunit": { - "target": "Package", - "version": "[2.9.3, )" - }, - "xunit.runner.visualstudio": { - "target": "Package", - "version": "[3.1.4, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/tests/IntegrationTests/obj/IntegrationTests.csproj.nuget.g.props b/tests/IntegrationTests/obj/IntegrationTests.csproj.nuget.g.props deleted file mode 100644 index 4320122..0000000 --- a/tests/IntegrationTests/obj/IntegrationTests.csproj.nuget.g.props +++ /dev/null @@ -1,26 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Dell\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - - - - - - - - - C:\Users\Dell\.nuget\packages\xunit.analyzers\1.18.0 - - \ No newline at end of file diff --git a/tests/IntegrationTests/obj/IntegrationTests.csproj.nuget.g.targets b/tests/IntegrationTests/obj/IntegrationTests.csproj.nuget.g.targets deleted file mode 100644 index 6743e12..0000000 --- a/tests/IntegrationTests/obj/IntegrationTests.csproj.nuget.g.targets +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/IntegrationTests/obj/project.assets.json b/tests/IntegrationTests/obj/project.assets.json deleted file mode 100644 index 9580f3e..0000000 --- a/tests/IntegrationTests/obj/project.assets.json +++ /dev/null @@ -1,1301 +0,0 @@ -{ - "version": 4, - "targets": { - "net10.0": { - "coverlet.collector/6.0.4": { - "type": "package", - "build": { - "build/netstandard2.0/coverlet.collector.targets": {} - } - }, - "Microsoft.CodeCoverage/17.14.1": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} - } - }, - "Microsoft.NET.Test.Sdk/17.14.1": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "17.14.1", - "Microsoft.TestPlatform.TestHost": "17.14.1" - }, - "compile": { - "lib/net8.0/_._": {} - }, - "runtime": { - "lib/net8.0/_._": {} - }, - "build": { - "build/net8.0/Microsoft.NET.Test.Sdk.props": {}, - "build/net8.0/Microsoft.NET.Test.Sdk.targets": {} - } - }, - "Microsoft.TestPlatform.ObjectModel/17.14.1": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.14.1": { - "type": "package", - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.14.1", - "Newtonsoft.Json": "13.0.3" - }, - "compile": { - "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/net8.0/testhost.dll": { - "related": ".deps.json" - } - }, - "runtime": { - "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/net8.0/testhost.dll": { - "related": ".deps.json" - } - }, - "resource": { - "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "build/net8.0/Microsoft.TestPlatform.TestHost.props": {}, - "build/net8.0/Microsoft.TestPlatform.TestHost.targets": {} - } - }, - "Newtonsoft.Json/13.0.3": { - "type": "package", - "compile": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "xunit/2.9.3": { - "type": "package", - "dependencies": { - "xunit.analyzers": "1.18.0", - "xunit.assert": "2.9.3", - "xunit.core": "[2.9.3]" - } - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "related": ".xml" - } - } - }, - "xunit.analyzers/1.18.0": { - "type": "package" - }, - "xunit.assert/2.9.3": { - "type": "package", - "compile": { - "lib/net6.0/xunit.assert.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/xunit.assert.dll": { - "related": ".xml" - } - } - }, - "xunit.core/2.9.3": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.9.3]", - "xunit.extensibility.execution": "[2.9.3]" - }, - "build": { - "build/xunit.core.props": {}, - "build/xunit.core.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/xunit.core.props": {}, - "buildMultiTargeting/xunit.core.targets": {} - } - }, - "xunit.extensibility.core/2.9.3": { - "type": "package", - "dependencies": { - "xunit.abstractions": "2.0.3" - }, - "compile": { - "lib/netstandard1.1/xunit.core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "related": ".xml" - } - } - }, - "xunit.extensibility.execution/2.9.3": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.9.3]" - }, - "compile": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "related": ".xml" - } - } - }, - "xunit.runner.visualstudio/3.1.4": { - "type": "package", - "compile": { - "lib/net8.0/_._": {} - }, - "runtime": { - "lib/net8.0/_._": {} - }, - "build": { - "build/net8.0/xunit.runner.visualstudio.props": {} - } - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Contracts.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Contracts.dll": {} - } - } - } - }, - "libraries": { - "coverlet.collector/6.0.4": { - "sha512": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==", - "type": "package", - "path": "coverlet.collector/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "VSTestIntegration.md", - "build/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", - "build/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "build/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "build/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "build/netstandard2.0/Mono.Cecil.Mdb.dll", - "build/netstandard2.0/Mono.Cecil.Pdb.dll", - "build/netstandard2.0/Mono.Cecil.Rocks.dll", - "build/netstandard2.0/Mono.Cecil.dll", - "build/netstandard2.0/Newtonsoft.Json.dll", - "build/netstandard2.0/NuGet.Frameworks.dll", - "build/netstandard2.0/NuGet.Versioning.dll", - "build/netstandard2.0/System.Buffers.dll", - "build/netstandard2.0/System.Collections.Immutable.dll", - "build/netstandard2.0/System.Memory.dll", - "build/netstandard2.0/System.Numerics.Vectors.dll", - "build/netstandard2.0/System.Reflection.Metadata.dll", - "build/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "build/netstandard2.0/System.Text.Encodings.Web.dll", - "build/netstandard2.0/System.Text.Json.dll", - "build/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "build/netstandard2.0/coverlet.collector.deps.json", - "build/netstandard2.0/coverlet.collector.dll", - "build/netstandard2.0/coverlet.collector.pdb", - "build/netstandard2.0/coverlet.collector.targets", - "build/netstandard2.0/coverlet.core.dll", - "build/netstandard2.0/coverlet.core.pdb", - "build/netstandard2.0/coverlet.core.xml", - "build/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "coverlet-icon.png", - "coverlet.collector.6.0.4.nupkg.sha512", - "coverlet.collector.nuspec" - ] - }, - "Microsoft.CodeCoverage/17.14.1": { - "sha512": "pmTrhfFIoplzFVbhVwUquT+77CbGH+h4/3mBpdmIlYtBi9nAB+kKI6dN3A/nV4DFi3wLLx/BlHIPK+MkbQ6Tpg==", - "type": "package", - "path": "microsoft.codecoverage/17.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.txt", - "build/netstandard2.0/CodeCoverage/CodeCoverage.config", - "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/Cov_x86.config", - "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config", - "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config", - "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", - "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "build/netstandard2.0/CodeCoverage/covrun32.dll", - "build/netstandard2.0/CodeCoverage/msdia140.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.props", - "build/netstandard2.0/Microsoft.CodeCoverage.targets", - "build/netstandard2.0/Microsoft.DiaSymReader.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard2.0/Mono.Cecil.Pdb.dll", - "build/netstandard2.0/Mono.Cecil.Rocks.dll", - "build/netstandard2.0/Mono.Cecil.dll", - "build/netstandard2.0/ThirdPartyNotices.txt", - "build/netstandard2.0/alpine/x64/Cov_x64.config", - "build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/alpine/x64/libInstrumentationEngine.so", - "build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll", - "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/macos/x64/Cov_x64.config", - "build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib", - "build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib", - "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ubuntu/x64/Cov_x64.config", - "build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so", - "build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll", - "build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll", - "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.17.14.1.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "Microsoft.NET.Test.Sdk/17.14.1": { - "sha512": "HJKqKOE+vshXra2aEHpi2TlxYX7Z9VFYkr+E5rwEvHC8eIXiyO+K9kNm8vmNom3e2rA56WqxU+/N9NJlLGXsJQ==", - "type": "package", - "path": "microsoft.net.test.sdk/17.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/net462/Microsoft.NET.Test.Sdk.props", - "build/net462/Microsoft.NET.Test.Sdk.targets", - "build/net8.0/Microsoft.NET.Test.Sdk.Program.cs", - "build/net8.0/Microsoft.NET.Test.Sdk.Program.fs", - "build/net8.0/Microsoft.NET.Test.Sdk.Program.vb", - "build/net8.0/Microsoft.NET.Test.Sdk.props", - "build/net8.0/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp2.0/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp2.0/Microsoft.NET.Test.Sdk.targets", - "build/netstandard2.0/Microsoft.NET.Test.Sdk.props", - "build/netstandard2.0/Microsoft.NET.Test.Sdk.targets", - "buildMultiTargeting/net462/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/net8.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/netcoreapp2.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/netcoreapp2.0/Microsoft.NET.Test.Sdk.targets", - "buildMultiTargeting/netstandard2.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/netstandard2.0/Microsoft.NET.Test.Sdk.targets", - "lib/native/_._", - "lib/net462/_._", - "lib/net8.0/_._", - "microsoft.net.test.sdk.17.14.1.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "Microsoft.TestPlatform.ObjectModel/17.14.1": { - "sha512": "xTP1W6Mi6SWmuxd3a+jj9G9UoC850WGwZUps1Wah9r1ZxgXhdJfj1QqDLJkFjHDCvN42qDL2Ps5KjQYWUU0zcQ==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/17.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/17.14.1": { - "sha512": "d78LPzGKkJwsJXAQwsbJJ7LE7D1wB+rAyhHHAaODF+RDSQ0NgMjDFkSA1Djw18VrxO76GlKAjRUhl+H8NL8Z+Q==", - "type": "package", - "path": "microsoft.testplatform.testhost/17.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.txt", - "build/net8.0/Microsoft.TestPlatform.TestHost.props", - "build/net8.0/Microsoft.TestPlatform.TestHost.targets", - "build/net8.0/x64/testhost.dll", - "build/net8.0/x64/testhost.exe", - "build/net8.0/x86/testhost.x86.dll", - "build/net8.0/x86/testhost.x86.exe", - "lib/net462/_._", - "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net8.0/Microsoft.TestPlatform.Utilities.dll", - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/testhost.deps.json", - "lib/net8.0/testhost.dll", - "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/x64/msdia140.dll", - "lib/net8.0/x86/msdia140.dll", - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "microsoft.testplatform.testhost.17.14.1.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Newtonsoft.Json/13.0.3": { - "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "type": "package", - "path": "newtonsoft.json/13.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "README.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/net6.0/Newtonsoft.Json.dll", - "lib/net6.0/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.3.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "xunit/2.9.3": { - "sha512": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", - "type": "package", - "path": "xunit/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "xunit.2.9.3.nupkg.sha512", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.3": { - "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "type": "package", - "path": "xunit.abstractions/2.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/netstandard1.0/xunit.abstractions.dll", - "lib/netstandard1.0/xunit.abstractions.xml", - "lib/netstandard2.0/xunit.abstractions.dll", - "lib/netstandard2.0/xunit.abstractions.xml", - "xunit.abstractions.2.0.3.nupkg.sha512", - "xunit.abstractions.nuspec" - ] - }, - "xunit.analyzers/1.18.0": { - "sha512": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==", - "type": "package", - "path": "xunit.analyzers/1.18.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "analyzers/dotnet/cs/xunit.analyzers.dll", - "analyzers/dotnet/cs/xunit.analyzers.fixes.dll", - "tools/install.ps1", - "tools/uninstall.ps1", - "xunit.analyzers.1.18.0.nupkg.sha512", - "xunit.analyzers.nuspec" - ] - }, - "xunit.assert/2.9.3": { - "sha512": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", - "type": "package", - "path": "xunit.assert/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net6.0/xunit.assert.dll", - "lib/net6.0/xunit.assert.xml", - "lib/netstandard1.1/xunit.assert.dll", - "lib/netstandard1.1/xunit.assert.xml", - "xunit.assert.2.9.3.nupkg.sha512", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.9.3": { - "sha512": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", - "type": "package", - "path": "xunit.core/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "build/xunit.core.props", - "build/xunit.core.targets", - "buildMultiTargeting/xunit.core.props", - "buildMultiTargeting/xunit.core.targets", - "xunit.core.2.9.3.nupkg.sha512", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.9.3": { - "sha512": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", - "type": "package", - "path": "xunit.extensibility.core/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net452/xunit.core.dll", - "lib/net452/xunit.core.dll.tdnet", - "lib/net452/xunit.core.xml", - "lib/net452/xunit.runner.tdnet.dll", - "lib/net452/xunit.runner.utility.net452.dll", - "lib/netstandard1.1/xunit.core.dll", - "lib/netstandard1.1/xunit.core.xml", - "xunit.extensibility.core.2.9.3.nupkg.sha512", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.9.3": { - "sha512": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", - "type": "package", - "path": "xunit.extensibility.execution/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net452/xunit.execution.desktop.dll", - "lib/net452/xunit.execution.desktop.xml", - "lib/netstandard1.1/xunit.execution.dotnet.dll", - "lib/netstandard1.1/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.9.3.nupkg.sha512", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/3.1.4": { - "sha512": "5mj99LvCqrq3CNi06xYdyIAXOEh+5b33F2nErCzI5zWiDdLHXiPXEWFSUAF8zlIv0ZWqjZNCwHTQeAPYbF3pCg==", - "type": "package", - "path": "xunit.runner.visualstudio/3.1.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "build/net472/xunit.abstractions.dll", - "build/net472/xunit.runner.visualstudio.props", - "build/net472/xunit.runner.visualstudio.testadapter.dll", - "build/net8.0/xunit.abstractions.dll", - "build/net8.0/xunit.runner.visualstudio.props", - "build/net8.0/xunit.runner.visualstudio.testadapter.dll", - "lib/net472/_._", - "lib/net8.0/_._", - "xunit.runner.visualstudio.3.1.4.nupkg.sha512", - "xunit.runner.visualstudio.nuspec" - ] - }, - "FileProcessing.Contracts/1.0.0": { - "type": "project", - "path": "../../src/FileProcessing.Contracts/FileProcessing.Contracts.csproj", - "msbuildProject": "../../src/FileProcessing.Contracts/FileProcessing.Contracts.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "FileProcessing.Contracts >= 1.0.0", - "Microsoft.NET.Test.Sdk >= 17.14.1", - "coverlet.collector >= 6.0.4", - "xunit >= 2.9.3", - "xunit.runner.visualstudio >= 3.1.4" - ] - }, - "packageFolders": { - "C:\\Users\\Dell\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\IntegrationTests\\IntegrationTests.csproj", - "projectName": "IntegrationTests", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\IntegrationTests\\IntegrationTests.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\IntegrationTests\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Contracts\\FileProcessing.Contracts.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.14.1, )" - }, - "coverlet.collector": { - "target": "Package", - "version": "[6.0.4, )" - }, - "xunit": { - "target": "Package", - "version": "[2.9.3, )" - }, - "xunit.runner.visualstudio": { - "target": "Package", - "version": "[3.1.4, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/tests/IntegrationTests/obj/project.nuget.cache b/tests/IntegrationTests/obj/project.nuget.cache deleted file mode 100644 index 5bfdd4f..0000000 --- a/tests/IntegrationTests/obj/project.nuget.cache +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "b8hja0TQLVo=", - "success": true, - "projectFilePath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\IntegrationTests\\IntegrationTests.csproj", - "expectedPackageFiles": [ - "C:\\Users\\Dell\\.nuget\\packages\\coverlet.collector\\6.0.4\\coverlet.collector.6.0.4.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.codecoverage\\17.14.1\\microsoft.codecoverage.17.14.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.net.test.sdk\\17.14.1\\microsoft.net.test.sdk.17.14.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.14.1\\microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.testplatform.testhost\\17.14.1\\microsoft.testplatform.testhost.17.14.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit\\2.9.3\\xunit.2.9.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.abstractions\\2.0.3\\xunit.abstractions.2.0.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.analyzers\\1.18.0\\xunit.analyzers.1.18.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.assert\\2.9.3\\xunit.assert.2.9.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.core\\2.9.3\\xunit.core.2.9.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.extensibility.core\\2.9.3\\xunit.extensibility.core.2.9.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.extensibility.execution\\2.9.3\\xunit.extensibility.execution.2.9.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.runner.visualstudio\\3.1.4\\xunit.runner.visualstudio.3.1.4.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/tests/UnitTests/DomainTests.cs b/tests/UnitTests/DomainTests.cs index 576637d..85d64b7 100644 --- a/tests/UnitTests/DomainTests.cs +++ b/tests/UnitTests/DomainTests.cs @@ -1,8 +1,9 @@ using FileProcessing.Domain; namespace UnitTests; + public sealed class DomainTests { - [Fact] public void Transition_records_traceable_history(){var file=new FileRecord(Guid.NewGuid(),"a.txt","text/plain",1,"checksum","original/a.txt",DateTimeOffset.UtcNow);file.Transition(ProcessingStatus.Validated,"ok");Assert.Equal(ProcessingStatus.Validated,file.Status);Assert.Contains(file.History,x=>x.Status==ProcessingStatus.Validated&&x.Detail=="ok");} - [Fact] public void Retry_increments_count_and_status(){var file=new FileRecord(Guid.NewGuid(),"a.txt","text/plain",1,"checksum","original/a.txt",DateTimeOffset.UtcNow);file.Retry();Assert.Equal(1,file.RetryCount);Assert.Equal(ProcessingStatus.Retrying,file.Status);} - [Fact] public void Delete_soft_deletes_and_cancels(){var file=new FileRecord(Guid.NewGuid(),"a.txt","text/plain",1,"checksum","original/a.txt",DateTimeOffset.UtcNow);file.Delete();Assert.True(file.IsDeleted);Assert.Equal(ProcessingStatus.Cancelled,file.Status);} + [Fact] public void Transition_records_traceable_history() { var file = new FileRecord(Guid.NewGuid(), "a.txt", "text/plain", 1, "checksum", "original/a.txt", DateTimeOffset.UtcNow); file.Transition(ProcessingStatus.Validated, "ok"); Assert.Equal(ProcessingStatus.Validated, file.Status); Assert.Contains(file.History, x => x.Status == ProcessingStatus.Validated && x.Detail == "ok"); } + [Fact] public void Retry_increments_count_and_status() { var file = new FileRecord(Guid.NewGuid(), "a.txt", "text/plain", 1, "checksum", "original/a.txt", DateTimeOffset.UtcNow); file.Retry(); Assert.Equal(1, file.RetryCount); Assert.Equal(ProcessingStatus.Retrying, file.Status); } + [Fact] public void Delete_soft_deletes_and_cancels() { var file = new FileRecord(Guid.NewGuid(), "a.txt", "text/plain", 1, "checksum", "original/a.txt", DateTimeOffset.UtcNow); file.Delete(); Assert.True(file.IsDeleted); Assert.Equal(ProcessingStatus.Cancelled, file.Status); } } diff --git a/tests/UnitTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_UnitTests b/tests/UnitTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_UnitTests deleted file mode 100644 index c499348..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/.msCoverageSourceRootsMapping_UnitTests and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/CoverletSourceRootsMapping_UnitTests b/tests/UnitTests/bin/Debug/net10.0/CoverletSourceRootsMapping_UnitTests deleted file mode 100644 index c499348..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/CoverletSourceRootsMapping_UnitTests and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/FileProcessing.Domain.dll b/tests/UnitTests/bin/Debug/net10.0/FileProcessing.Domain.dll deleted file mode 100644 index 88c7b60..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/FileProcessing.Domain.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/FileProcessing.Domain.pdb b/tests/UnitTests/bin/Debug/net10.0/FileProcessing.Domain.pdb deleted file mode 100644 index 646827e..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/FileProcessing.Domain.pdb and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll deleted file mode 100644 index 55ce79c..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll b/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll deleted file mode 100644 index e06f7bf..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll deleted file mode 100644 index 9b6de68..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll deleted file mode 100644 index 39fb3bd..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll b/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll deleted file mode 100644 index abf4a0b..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/Microsoft.TestPlatform.Utilities.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/tests/UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll deleted file mode 100644 index e2fbdcb..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/tests/UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll deleted file mode 100644 index 32a461c..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/tests/UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll deleted file mode 100644 index c9ab03e..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/Newtonsoft.Json.dll b/tests/UnitTests/bin/Debug/net10.0/Newtonsoft.Json.dll deleted file mode 100644 index d035c38..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/UnitTests.deps.json b/tests/UnitTests/bin/Debug/net10.0/UnitTests.deps.json deleted file mode 100644 index aa19df6..0000000 --- a/tests/UnitTests/bin/Debug/net10.0/UnitTests.deps.json +++ /dev/null @@ -1,433 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v10.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v10.0": { - "UnitTests/1.0.0": { - "dependencies": { - "FileProcessing.Domain": "1.0.0", - "Microsoft.NET.Test.Sdk": "17.14.1", - "xunit": "2.9.3" - }, - "runtime": { - "UnitTests.dll": {} - } - }, - "Microsoft.CodeCoverage/17.14.1": { - "runtime": { - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.225.12603" - } - } - }, - "Microsoft.NET.Test.Sdk/17.14.1": { - "dependencies": { - "Microsoft.CodeCoverage": "17.14.1", - "Microsoft.TestPlatform.TestHost": "17.14.1" - } - }, - "Microsoft.TestPlatform.ObjectModel/17.14.1": { - "runtime": { - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - } - }, - "resources": { - "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.14.1": { - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.14.1", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - }, - "lib/net8.0/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.1400.125.30202" - } - }, - "resources": { - "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "xunit/2.9.3": { - "dependencies": { - "xunit.assert": "2.9.3", - "xunit.core": "2.9.3" - } - }, - "xunit.abstractions/2.0.3": { - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "xunit.assert/2.9.3": { - "runtime": { - "lib/net6.0/xunit.assert.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "xunit.core/2.9.3": { - "dependencies": { - "xunit.extensibility.core": "2.9.3", - "xunit.extensibility.execution": "2.9.3" - } - }, - "xunit.extensibility.core/2.9.3": { - "dependencies": { - "xunit.abstractions": "2.0.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "xunit.extensibility.execution/2.9.3": { - "dependencies": { - "xunit.extensibility.core": "2.9.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "assemblyVersion": "2.9.3.0", - "fileVersion": "2.9.3.0" - } - } - }, - "FileProcessing.Domain/1.0.0": { - "runtime": { - "FileProcessing.Domain.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - } - } - }, - "libraries": { - "UnitTests/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.CodeCoverage/17.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pmTrhfFIoplzFVbhVwUquT+77CbGH+h4/3mBpdmIlYtBi9nAB+kKI6dN3A/nV4DFi3wLLx/BlHIPK+MkbQ6Tpg==", - "path": "microsoft.codecoverage/17.14.1", - "hashPath": "microsoft.codecoverage.17.14.1.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/17.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HJKqKOE+vshXra2aEHpi2TlxYX7Z9VFYkr+E5rwEvHC8eIXiyO+K9kNm8vmNom3e2rA56WqxU+/N9NJlLGXsJQ==", - "path": "microsoft.net.test.sdk/17.14.1", - "hashPath": "microsoft.net.test.sdk.17.14.1.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/17.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xTP1W6Mi6SWmuxd3a+jj9G9UoC850WGwZUps1Wah9r1ZxgXhdJfj1QqDLJkFjHDCvN42qDL2Ps5KjQYWUU0zcQ==", - "path": "microsoft.testplatform.objectmodel/17.14.1", - "hashPath": "microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/17.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d78LPzGKkJwsJXAQwsbJJ7LE7D1wB+rAyhHHAaODF+RDSQ0NgMjDFkSA1Djw18VrxO76GlKAjRUhl+H8NL8Z+Q==", - "path": "microsoft.testplatform.testhost/17.14.1", - "hashPath": "microsoft.testplatform.testhost.17.14.1.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" - }, - "xunit/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", - "path": "xunit/2.9.3", - "hashPath": "xunit.2.9.3.nupkg.sha512" - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "path": "xunit.abstractions/2.0.3", - "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" - }, - "xunit.assert/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", - "path": "xunit.assert/2.9.3", - "hashPath": "xunit.assert.2.9.3.nupkg.sha512" - }, - "xunit.core/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", - "path": "xunit.core/2.9.3", - "hashPath": "xunit.core.2.9.3.nupkg.sha512" - }, - "xunit.extensibility.core/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", - "path": "xunit.extensibility.core/2.9.3", - "hashPath": "xunit.extensibility.core.2.9.3.nupkg.sha512" - }, - "xunit.extensibility.execution/2.9.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", - "path": "xunit.extensibility.execution/2.9.3", - "hashPath": "xunit.extensibility.execution.2.9.3.nupkg.sha512" - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/tests/UnitTests/bin/Debug/net10.0/UnitTests.dll b/tests/UnitTests/bin/Debug/net10.0/UnitTests.dll deleted file mode 100644 index 36a8cc2..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/UnitTests.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/UnitTests.pdb b/tests/UnitTests/bin/Debug/net10.0/UnitTests.pdb deleted file mode 100644 index f8128b9..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/UnitTests.pdb and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/UnitTests.runtimeconfig.json b/tests/UnitTests/bin/Debug/net10.0/UnitTests.runtimeconfig.json deleted file mode 100644 index f27c82f..0000000 --- a/tests/UnitTests/bin/Debug/net10.0/UnitTests.runtimeconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net10.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "10.0.0" - }, - "configProperties": { - "MSTest.EnableParentProcessQuery": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 6b4cb52..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 4bd6351..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 7b44217..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 711b34d..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 8e5665d..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 7430499..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 310ab84..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 451e2d2..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index e606f2d..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index c4a0f6d..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 861e885..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index a3867c8..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 08ad46b..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 44c4b7f..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 668630a..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index e7ac83f..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 305ae61..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a2eeac8..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 7394ada..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 36ad487..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 21fd3a2..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 3138d0b..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index e0afbb4..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 591475d..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index f6d7529..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 008facc..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 7a2bc17..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index f5e04ec..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 4c707a0..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 84e7a2d..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 4198d29..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 6583956..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 354b0bf..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index f46d948..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 42c1de2..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 9e65b3a..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 26b5522..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index bdc41ed..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 302a135..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index b435708..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index c9f988e..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 0849e28..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 8657f14..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index a2a3f0e..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 834e160..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 2b48978..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 59fa16a..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a4b7361..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 968210b..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 5f94d05..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/testhost.dll b/tests/UnitTests/bin/Debug/net10.0/testhost.dll deleted file mode 100644 index 538cc6d..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/testhost.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/testhost.exe b/tests/UnitTests/bin/Debug/net10.0/testhost.exe deleted file mode 100644 index c741b7a..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/testhost.exe and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index d397c2d..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 1f753be..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index fb6e8f0..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index e032b07..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index c5b5b63..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/xunit.abstractions.dll b/tests/UnitTests/bin/Debug/net10.0/xunit.abstractions.dll deleted file mode 100644 index d1e90bf..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/xunit.abstractions.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/xunit.assert.dll b/tests/UnitTests/bin/Debug/net10.0/xunit.assert.dll deleted file mode 100644 index 99bc34c..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/xunit.assert.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/xunit.core.dll b/tests/UnitTests/bin/Debug/net10.0/xunit.core.dll deleted file mode 100644 index d56aa16..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/xunit.core.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/xunit.execution.dotnet.dll b/tests/UnitTests/bin/Debug/net10.0/xunit.execution.dotnet.dll deleted file mode 100644 index 7a1cc87..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/xunit.execution.dotnet.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll b/tests/UnitTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll deleted file mode 100644 index 8126550..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/xunit.runner.visualstudio.testadapter.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 34e54ed..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index dc5e3d1..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index bf6c73d..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index cfbf0bc..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index f671e52..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index f30f879..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index c2b89ef..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a0764e6..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index a6014d3..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 3e7e989..0000000 Binary files a/tests/UnitTests/bin/Debug/net10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/tests/UnitTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/tests/UnitTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs deleted file mode 100644 index 925b135..0000000 --- a/tests/UnitTests/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.AssemblyInfo.cs b/tests/UnitTests/obj/Debug/net10.0/UnitTests.AssemblyInfo.cs deleted file mode 100644 index 938ad22..0000000 --- a/tests/UnitTests/obj/Debug/net10.0/UnitTests.AssemblyInfo.cs +++ /dev/null @@ -1,22 +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: System.Reflection.AssemblyCompanyAttribute("UnitTests")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("UnitTests")] -[assembly: System.Reflection.AssemblyTitleAttribute("UnitTests")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.AssemblyInfoInputs.cache b/tests/UnitTests/obj/Debug/net10.0/UnitTests.AssemblyInfoInputs.cache deleted file mode 100644 index 7455370..0000000 --- a/tests/UnitTests/obj/Debug/net10.0/UnitTests.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -a9e9f5f142c75c70151428ca0985f4027fce2b2baca8315bf3c7c976544341c4 diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.GeneratedMSBuildEditorConfig.editorconfig b/tests/UnitTests/obj/Debug/net10.0/UnitTests.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 811274b..0000000 --- a/tests/UnitTests/obj/Debug/net10.0/UnitTests.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,18 +0,0 @@ -is_global = true -build_property.TargetFramework = net10.0 -build_property.TargetFrameworkIdentifier = .NETCoreApp -build_property.TargetFrameworkVersion = v10.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property.EntryPointFilePath = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = UnitTests -build_property.ProjectDir = D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.EffectiveAnalysisLevelStyle = 10.0 -build_property.EnableCodeStyleSeverity = diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.GlobalUsings.g.cs b/tests/UnitTests/obj/Debug/net10.0/UnitTests.GlobalUsings.g.cs deleted file mode 100644 index fe43752..0000000 --- a/tests/UnitTests/obj/Debug/net10.0/UnitTests.GlobalUsings.g.cs +++ /dev/null @@ -1,9 +0,0 @@ -// -global using System; -global using System.Collections.Generic; -global using System.IO; -global using System.Linq; -global using System.Net.Http; -global using System.Threading; -global using System.Threading.Tasks; -global using Xunit; diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.assets.cache b/tests/UnitTests/obj/Debug/net10.0/UnitTests.assets.cache deleted file mode 100644 index 5179952..0000000 Binary files a/tests/UnitTests/obj/Debug/net10.0/UnitTests.assets.cache and /dev/null differ diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.AssemblyReference.cache b/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.AssemblyReference.cache deleted file mode 100644 index 616aa46..0000000 Binary files a/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.AssemblyReference.cache and /dev/null differ diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.CoreCompileInputs.cache b/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.CoreCompileInputs.cache deleted file mode 100644 index 4407282..0000000 --- a/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6ff60d325107dc9f18cf5f08c677eeff46be42fce61f99a8e8d0e60059b00cd4 diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.FileListAbsolute.txt b/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.FileListAbsolute.txt deleted file mode 100644 index 93a484d..0000000 --- a/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,100 +0,0 @@ -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\testhost.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\xunit.abstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\testhost.exe -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\xunit.runner.visualstudio.testadapter.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\UnitTests.deps.json -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\UnitTests.runtimeconfig.json -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\UnitTests.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\UnitTests.pdb -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.CoreUtilities.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.PlatformAbstractions.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.CommunicationUtilities.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.CrossPlatEngine.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\Microsoft.TestPlatform.Utilities.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\Microsoft.VisualStudio.TestPlatform.Common.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\Newtonsoft.Json.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\xunit.assert.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\xunit.core.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\xunit.execution.dotnet.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\UnitTests.csproj.AssemblyReference.cache -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\UnitTests.GeneratedMSBuildEditorConfig.editorconfig -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\UnitTests.AssemblyInfoInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\UnitTests.AssemblyInfo.cs -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\UnitTests.csproj.CoreCompileInputs.cache -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\UnitTests.csproj.Up2Date -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\UnitTests.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\refint\UnitTests.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\UnitTests.pdb -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\UnitTests.genruntimeconfig.cache -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\obj\Debug\net10.0\ref\UnitTests.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\.msCoverageSourceRootsMapping_UnitTests -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\CoverletSourceRootsMapping_UnitTests -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\FileProcessing.Domain.dll -D:\UserHome\Architect Projects\Distributed File Processing\tests\UnitTests\bin\Debug\net10.0\FileProcessing.Domain.pdb diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.Up2Date b/tests/UnitTests/obj/Debug/net10.0/UnitTests.csproj.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.dll b/tests/UnitTests/obj/Debug/net10.0/UnitTests.dll deleted file mode 100644 index 36a8cc2..0000000 Binary files a/tests/UnitTests/obj/Debug/net10.0/UnitTests.dll and /dev/null differ diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.genruntimeconfig.cache b/tests/UnitTests/obj/Debug/net10.0/UnitTests.genruntimeconfig.cache deleted file mode 100644 index e219c44..0000000 --- a/tests/UnitTests/obj/Debug/net10.0/UnitTests.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -1e00844ded1ac8420fa3a98310936ce6b47c82b78ee33bfa40c55f3ac3a3a2b6 diff --git a/tests/UnitTests/obj/Debug/net10.0/UnitTests.pdb b/tests/UnitTests/obj/Debug/net10.0/UnitTests.pdb deleted file mode 100644 index f8128b9..0000000 Binary files a/tests/UnitTests/obj/Debug/net10.0/UnitTests.pdb and /dev/null differ diff --git a/tests/UnitTests/obj/Debug/net10.0/ref/UnitTests.dll b/tests/UnitTests/obj/Debug/net10.0/ref/UnitTests.dll deleted file mode 100644 index c542b86..0000000 Binary files a/tests/UnitTests/obj/Debug/net10.0/ref/UnitTests.dll and /dev/null differ diff --git a/tests/UnitTests/obj/Debug/net10.0/refint/UnitTests.dll b/tests/UnitTests/obj/Debug/net10.0/refint/UnitTests.dll deleted file mode 100644 index c542b86..0000000 Binary files a/tests/UnitTests/obj/Debug/net10.0/refint/UnitTests.dll and /dev/null differ diff --git a/tests/UnitTests/obj/UnitTests.csproj.nuget.dgspec.json b/tests/UnitTests/obj/UnitTests.csproj.nuget.dgspec.json deleted file mode 100644 index 599e086..0000000 --- a/tests/UnitTests/obj/UnitTests.csproj.nuget.dgspec.json +++ /dev/null @@ -1,716 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\UnitTests\\UnitTests.csproj": {} - }, - "projects": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "projectName": "FileProcessing.Domain", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": {} - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - }, - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\UnitTests\\UnitTests.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\UnitTests\\UnitTests.csproj", - "projectName": "UnitTests", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\UnitTests\\UnitTests.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\UnitTests\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.14.1, )" - }, - "coverlet.collector": { - "target": "Package", - "version": "[6.0.4, )" - }, - "xunit": { - "target": "Package", - "version": "[2.9.3, )" - }, - "xunit.runner.visualstudio": { - "target": "Package", - "version": "[3.1.4, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } - } -} \ No newline at end of file diff --git a/tests/UnitTests/obj/UnitTests.csproj.nuget.g.props b/tests/UnitTests/obj/UnitTests.csproj.nuget.g.props deleted file mode 100644 index 4320122..0000000 --- a/tests/UnitTests/obj/UnitTests.csproj.nuget.g.props +++ /dev/null @@ -1,26 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Dell\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 7.0.0 - - - - - - - - - - - - - - C:\Users\Dell\.nuget\packages\xunit.analyzers\1.18.0 - - \ No newline at end of file diff --git a/tests/UnitTests/obj/UnitTests.csproj.nuget.g.targets b/tests/UnitTests/obj/UnitTests.csproj.nuget.g.targets deleted file mode 100644 index 6743e12..0000000 --- a/tests/UnitTests/obj/UnitTests.csproj.nuget.g.targets +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/tests/UnitTests/obj/project.assets.json b/tests/UnitTests/obj/project.assets.json deleted file mode 100644 index 48ef30a..0000000 --- a/tests/UnitTests/obj/project.assets.json +++ /dev/null @@ -1,1301 +0,0 @@ -{ - "version": 4, - "targets": { - "net10.0": { - "coverlet.collector/6.0.4": { - "type": "package", - "build": { - "build/netstandard2.0/coverlet.collector.targets": {} - } - }, - "Microsoft.CodeCoverage/17.14.1": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} - } - }, - "Microsoft.NET.Test.Sdk/17.14.1": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "17.14.1", - "Microsoft.TestPlatform.TestHost": "17.14.1" - }, - "compile": { - "lib/net8.0/_._": {} - }, - "runtime": { - "lib/net8.0/_._": {} - }, - "build": { - "build/net8.0/Microsoft.NET.Test.Sdk.props": {}, - "build/net8.0/Microsoft.NET.Test.Sdk.targets": {} - } - }, - "Microsoft.TestPlatform.ObjectModel/17.14.1": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.14.1": { - "type": "package", - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.14.1", - "Newtonsoft.Json": "13.0.3" - }, - "compile": { - "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/net8.0/testhost.dll": { - "related": ".deps.json" - } - }, - "runtime": { - "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/net8.0/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/net8.0/testhost.dll": { - "related": ".deps.json" - } - }, - "resource": { - "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "build/net8.0/Microsoft.TestPlatform.TestHost.props": {}, - "build/net8.0/Microsoft.TestPlatform.TestHost.targets": {} - } - }, - "Newtonsoft.Json/13.0.3": { - "type": "package", - "compile": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "related": ".xml" - } - } - }, - "xunit/2.9.3": { - "type": "package", - "dependencies": { - "xunit.analyzers": "1.18.0", - "xunit.assert": "2.9.3", - "xunit.core": "[2.9.3]" - } - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "related": ".xml" - } - } - }, - "xunit.analyzers/1.18.0": { - "type": "package" - }, - "xunit.assert/2.9.3": { - "type": "package", - "compile": { - "lib/net6.0/xunit.assert.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/xunit.assert.dll": { - "related": ".xml" - } - } - }, - "xunit.core/2.9.3": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.9.3]", - "xunit.extensibility.execution": "[2.9.3]" - }, - "build": { - "build/xunit.core.props": {}, - "build/xunit.core.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/xunit.core.props": {}, - "buildMultiTargeting/xunit.core.targets": {} - } - }, - "xunit.extensibility.core/2.9.3": { - "type": "package", - "dependencies": { - "xunit.abstractions": "2.0.3" - }, - "compile": { - "lib/netstandard1.1/xunit.core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "related": ".xml" - } - } - }, - "xunit.extensibility.execution/2.9.3": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.9.3]" - }, - "compile": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "related": ".xml" - } - } - }, - "xunit.runner.visualstudio/3.1.4": { - "type": "package", - "compile": { - "lib/net8.0/_._": {} - }, - "runtime": { - "lib/net8.0/_._": {} - }, - "build": { - "build/net8.0/xunit.runner.visualstudio.props": {} - } - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v10.0", - "compile": { - "bin/placeholder/FileProcessing.Domain.dll": {} - }, - "runtime": { - "bin/placeholder/FileProcessing.Domain.dll": {} - } - } - } - }, - "libraries": { - "coverlet.collector/6.0.4": { - "sha512": "lkhqpF8Pu2Y7IiN7OntbsTtdbpR1syMsm2F3IgX6ootA4ffRqWL5jF7XipHuZQTdVuWG/gVAAcf8mjk8Tz0xPg==", - "type": "package", - "path": "coverlet.collector/6.0.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "VSTestIntegration.md", - "build/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "build/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", - "build/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "build/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "build/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "build/netstandard2.0/Mono.Cecil.Mdb.dll", - "build/netstandard2.0/Mono.Cecil.Pdb.dll", - "build/netstandard2.0/Mono.Cecil.Rocks.dll", - "build/netstandard2.0/Mono.Cecil.dll", - "build/netstandard2.0/Newtonsoft.Json.dll", - "build/netstandard2.0/NuGet.Frameworks.dll", - "build/netstandard2.0/NuGet.Versioning.dll", - "build/netstandard2.0/System.Buffers.dll", - "build/netstandard2.0/System.Collections.Immutable.dll", - "build/netstandard2.0/System.Memory.dll", - "build/netstandard2.0/System.Numerics.Vectors.dll", - "build/netstandard2.0/System.Reflection.Metadata.dll", - "build/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "build/netstandard2.0/System.Text.Encodings.Web.dll", - "build/netstandard2.0/System.Text.Json.dll", - "build/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "build/netstandard2.0/coverlet.collector.deps.json", - "build/netstandard2.0/coverlet.collector.dll", - "build/netstandard2.0/coverlet.collector.pdb", - "build/netstandard2.0/coverlet.collector.targets", - "build/netstandard2.0/coverlet.core.dll", - "build/netstandard2.0/coverlet.core.pdb", - "build/netstandard2.0/coverlet.core.xml", - "build/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "coverlet-icon.png", - "coverlet.collector.6.0.4.nupkg.sha512", - "coverlet.collector.nuspec" - ] - }, - "Microsoft.CodeCoverage/17.14.1": { - "sha512": "pmTrhfFIoplzFVbhVwUquT+77CbGH+h4/3mBpdmIlYtBi9nAB+kKI6dN3A/nV4DFi3wLLx/BlHIPK+MkbQ6Tpg==", - "type": "package", - "path": "microsoft.codecoverage/17.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.txt", - "build/netstandard2.0/CodeCoverage/CodeCoverage.config", - "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/Cov_x86.config", - "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", - "build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config", - "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config", - "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", - "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", - "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "build/netstandard2.0/CodeCoverage/covrun32.dll", - "build/netstandard2.0/CodeCoverage/msdia140.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", - "build/netstandard2.0/Microsoft.CodeCoverage.props", - "build/netstandard2.0/Microsoft.CodeCoverage.targets", - "build/netstandard2.0/Microsoft.DiaSymReader.dll", - "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard2.0/Mono.Cecil.Pdb.dll", - "build/netstandard2.0/Mono.Cecil.Rocks.dll", - "build/netstandard2.0/Mono.Cecil.dll", - "build/netstandard2.0/ThirdPartyNotices.txt", - "build/netstandard2.0/alpine/x64/Cov_x64.config", - "build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/alpine/x64/libInstrumentationEngine.so", - "build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll", - "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/macos/x64/Cov_x64.config", - "build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib", - "build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib", - "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/ubuntu/x64/Cov_x64.config", - "build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so", - "build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so", - "build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll", - "build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll", - "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.17.14.1.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "Microsoft.NET.Test.Sdk/17.14.1": { - "sha512": "HJKqKOE+vshXra2aEHpi2TlxYX7Z9VFYkr+E5rwEvHC8eIXiyO+K9kNm8vmNom3e2rA56WqxU+/N9NJlLGXsJQ==", - "type": "package", - "path": "microsoft.net.test.sdk/17.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/net462/Microsoft.NET.Test.Sdk.props", - "build/net462/Microsoft.NET.Test.Sdk.targets", - "build/net8.0/Microsoft.NET.Test.Sdk.Program.cs", - "build/net8.0/Microsoft.NET.Test.Sdk.Program.fs", - "build/net8.0/Microsoft.NET.Test.Sdk.Program.vb", - "build/net8.0/Microsoft.NET.Test.Sdk.props", - "build/net8.0/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp2.0/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp2.0/Microsoft.NET.Test.Sdk.targets", - "build/netstandard2.0/Microsoft.NET.Test.Sdk.props", - "build/netstandard2.0/Microsoft.NET.Test.Sdk.targets", - "buildMultiTargeting/net462/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/net8.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/netcoreapp2.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/netcoreapp2.0/Microsoft.NET.Test.Sdk.targets", - "buildMultiTargeting/netstandard2.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/netstandard2.0/Microsoft.NET.Test.Sdk.targets", - "lib/native/_._", - "lib/net462/_._", - "lib/net8.0/_._", - "microsoft.net.test.sdk.17.14.1.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "Microsoft.TestPlatform.ObjectModel/17.14.1": { - "sha512": "xTP1W6Mi6SWmuxd3a+jj9G9UoC850WGwZUps1Wah9r1ZxgXhdJfj1QqDLJkFjHDCvN42qDL2Ps5KjQYWUU0zcQ==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/17.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/17.14.1": { - "sha512": "d78LPzGKkJwsJXAQwsbJJ7LE7D1wB+rAyhHHAaODF+RDSQ0NgMjDFkSA1Djw18VrxO76GlKAjRUhl+H8NL8Z+Q==", - "type": "package", - "path": "microsoft.testplatform.testhost/17.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.txt", - "build/net8.0/Microsoft.TestPlatform.TestHost.props", - "build/net8.0/Microsoft.TestPlatform.TestHost.targets", - "build/net8.0/x64/testhost.dll", - "build/net8.0/x64/testhost.exe", - "build/net8.0/x86/testhost.x86.dll", - "build/net8.0/x86/testhost.x86.exe", - "lib/net462/_._", - "lib/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net8.0/Microsoft.TestPlatform.Utilities.dll", - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/testhost.deps.json", - "lib/net8.0/testhost.dll", - "lib/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/x64/msdia140.dll", - "lib/net8.0/x86/msdia140.dll", - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "microsoft.testplatform.testhost.17.14.1.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Newtonsoft.Json/13.0.3": { - "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "type": "package", - "path": "newtonsoft.json/13.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "README.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/net6.0/Newtonsoft.Json.dll", - "lib/net6.0/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.3.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "xunit/2.9.3": { - "sha512": "TlXQBinK35LpOPKHAqbLY4xlEen9TBafjs0V5KnA4wZsoQLQJiirCR4CbIXvOH8NzkW4YeJKP5P/Bnrodm0h9Q==", - "type": "package", - "path": "xunit/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "xunit.2.9.3.nupkg.sha512", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.3": { - "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "type": "package", - "path": "xunit.abstractions/2.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/netstandard1.0/xunit.abstractions.dll", - "lib/netstandard1.0/xunit.abstractions.xml", - "lib/netstandard2.0/xunit.abstractions.dll", - "lib/netstandard2.0/xunit.abstractions.xml", - "xunit.abstractions.2.0.3.nupkg.sha512", - "xunit.abstractions.nuspec" - ] - }, - "xunit.analyzers/1.18.0": { - "sha512": "OtFMHN8yqIcYP9wcVIgJrq01AfTxijjAqVDy/WeQVSyrDC1RzBWeQPztL49DN2syXRah8TYnfvk035s7L95EZQ==", - "type": "package", - "path": "xunit.analyzers/1.18.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "analyzers/dotnet/cs/xunit.analyzers.dll", - "analyzers/dotnet/cs/xunit.analyzers.fixes.dll", - "tools/install.ps1", - "tools/uninstall.ps1", - "xunit.analyzers.1.18.0.nupkg.sha512", - "xunit.analyzers.nuspec" - ] - }, - "xunit.assert/2.9.3": { - "sha512": "/Kq28fCE7MjOV42YLVRAJzRF0WmEqsmflm0cfpMjGtzQ2lR5mYVj1/i0Y8uDAOLczkL3/jArrwehfMD0YogMAA==", - "type": "package", - "path": "xunit.assert/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net6.0/xunit.assert.dll", - "lib/net6.0/xunit.assert.xml", - "lib/netstandard1.1/xunit.assert.dll", - "lib/netstandard1.1/xunit.assert.xml", - "xunit.assert.2.9.3.nupkg.sha512", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.9.3": { - "sha512": "BiAEvqGvyme19wE0wTKdADH+NloYqikiU0mcnmiNyXaF9HyHmE6sr/3DC5vnBkgsWaE6yPyWszKSPSApWdRVeQ==", - "type": "package", - "path": "xunit.core/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "build/xunit.core.props", - "build/xunit.core.targets", - "buildMultiTargeting/xunit.core.props", - "buildMultiTargeting/xunit.core.targets", - "xunit.core.2.9.3.nupkg.sha512", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.9.3": { - "sha512": "kf3si0YTn2a8J8eZNb+zFpwfoyvIrQ7ivNk5ZYA5yuYk1bEtMe4DxJ2CF/qsRgmEnDr7MnW1mxylBaHTZ4qErA==", - "type": "package", - "path": "xunit.extensibility.core/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net452/xunit.core.dll", - "lib/net452/xunit.core.dll.tdnet", - "lib/net452/xunit.core.xml", - "lib/net452/xunit.runner.tdnet.dll", - "lib/net452/xunit.runner.utility.net452.dll", - "lib/netstandard1.1/xunit.core.dll", - "lib/netstandard1.1/xunit.core.xml", - "xunit.extensibility.core.2.9.3.nupkg.sha512", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.9.3": { - "sha512": "yMb6vMESlSrE3Wfj7V6cjQ3S4TXdXpRqYeNEI3zsX31uTsGMJjEw6oD5F5u1cHnMptjhEECnmZSsPxB6ChZHDQ==", - "type": "package", - "path": "xunit.extensibility.execution/2.9.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "lib/net452/xunit.execution.desktop.dll", - "lib/net452/xunit.execution.desktop.xml", - "lib/netstandard1.1/xunit.execution.dotnet.dll", - "lib/netstandard1.1/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.9.3.nupkg.sha512", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/3.1.4": { - "sha512": "5mj99LvCqrq3CNi06xYdyIAXOEh+5b33F2nErCzI5zWiDdLHXiPXEWFSUAF8zlIv0ZWqjZNCwHTQeAPYbF3pCg==", - "type": "package", - "path": "xunit.runner.visualstudio/3.1.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/README.md", - "_content/logo-128-transparent.png", - "build/net472/xunit.abstractions.dll", - "build/net472/xunit.runner.visualstudio.props", - "build/net472/xunit.runner.visualstudio.testadapter.dll", - "build/net8.0/xunit.abstractions.dll", - "build/net8.0/xunit.runner.visualstudio.props", - "build/net8.0/xunit.runner.visualstudio.testadapter.dll", - "lib/net472/_._", - "lib/net8.0/_._", - "xunit.runner.visualstudio.3.1.4.nupkg.sha512", - "xunit.runner.visualstudio.nuspec" - ] - }, - "FileProcessing.Domain/1.0.0": { - "type": "project", - "path": "../../src/FileProcessing.Domain/FileProcessing.Domain.csproj", - "msbuildProject": "../../src/FileProcessing.Domain/FileProcessing.Domain.csproj" - } - }, - "projectFileDependencyGroups": { - "net10.0": [ - "FileProcessing.Domain >= 1.0.0", - "Microsoft.NET.Test.Sdk >= 17.14.1", - "coverlet.collector >= 6.0.4", - "xunit >= 2.9.3", - "xunit.runner.visualstudio >= 3.1.4" - ] - }, - "packageFolders": { - "C:\\Users\\Dell\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\UnitTests\\UnitTests.csproj", - "projectName": "UnitTests", - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\UnitTests\\UnitTests.csproj", - "packagesPath": "C:\\Users\\Dell\\.nuget\\packages\\", - "outputPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\UnitTests\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Dell\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net10.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "projectReferences": { - "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj": { - "projectPath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\src\\FileProcessing.Domain\\FileProcessing.Domain.csproj" - } - } - } - }, - "warningProperties": { - "allWarningsAsErrors": true, - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "all" - }, - "SdkAnalysisLevel": "10.0.300" - }, - "frameworks": { - "net10.0": { - "framework": "net10.0", - "targetAlias": "net10.0", - "dependencies": { - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.14.1, )" - }, - "coverlet.collector": { - "target": "Package", - "version": "[6.0.4, )" - }, - "xunit": { - "target": "Package", - "version": "[2.9.3, )" - }, - "xunit.runner.visualstudio": { - "target": "Package", - "version": "[3.1.4, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.302/PortableRuntimeIdentifierGraph.json", - "packagesToPrune": { - "Microsoft.CSharp": "(,4.7.32767]", - "Microsoft.VisualBasic": "(,10.4.32767]", - "Microsoft.Win32.Primitives": "(,4.3.32767]", - "Microsoft.Win32.Registry": "(,5.0.32767]", - "runtime.any.System.Collections": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.any.System.Globalization": "(,4.3.32767]", - "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.any.System.IO": "(,4.3.32767]", - "runtime.any.System.Reflection": "(,4.3.32767]", - "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.any.System.Runtime": "(,4.3.32767]", - "runtime.any.System.Runtime.Handles": "(,4.3.32767]", - "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.any.System.Text.Encoding": "(,4.3.32767]", - "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.any.System.Threading.Tasks": "(,4.3.32767]", - "runtime.any.System.Threading.Timer": "(,4.3.32767]", - "runtime.aot.System.Collections": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", - "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", - "runtime.aot.System.Globalization": "(,4.3.32767]", - "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", - "runtime.aot.System.IO": "(,4.3.32767]", - "runtime.aot.System.Reflection": "(,4.3.32767]", - "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", - "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", - "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", - "runtime.aot.System.Runtime": "(,4.3.32767]", - "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", - "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding": "(,4.3.32767]", - "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", - "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", - "runtime.aot.System.Threading.Timer": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", - "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", - "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.unix.System.Console": "(,4.3.32767]", - "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", - "runtime.unix.System.Net.Primitives": "(,4.3.32767]", - "runtime.unix.System.Net.Sockets": "(,4.3.32767]", - "runtime.unix.System.Private.Uri": "(,4.3.32767]", - "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", - "runtime.win.System.Console": "(,4.3.32767]", - "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", - "runtime.win.System.IO.FileSystem": "(,4.3.32767]", - "runtime.win.System.Net.Primitives": "(,4.3.32767]", - "runtime.win.System.Net.Sockets": "(,4.3.32767]", - "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", - "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", - "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", - "runtime.win7.System.Private.Uri": "(,4.3.32767]", - "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", - "System.AppContext": "(,4.3.32767]", - "System.Buffers": "(,5.0.32767]", - "System.Collections": "(,4.3.32767]", - "System.Collections.Concurrent": "(,4.3.32767]", - "System.Collections.Immutable": "(,10.0.32767]", - "System.Collections.NonGeneric": "(,4.3.32767]", - "System.Collections.Specialized": "(,4.3.32767]", - "System.ComponentModel": "(,4.3.32767]", - "System.ComponentModel.Annotations": "(,4.3.32767]", - "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", - "System.ComponentModel.Primitives": "(,4.3.32767]", - "System.ComponentModel.TypeConverter": "(,4.3.32767]", - "System.Console": "(,4.3.32767]", - "System.Data.Common": "(,4.3.32767]", - "System.Data.DataSetExtensions": "(,4.4.32767]", - "System.Diagnostics.Contracts": "(,4.3.32767]", - "System.Diagnostics.Debug": "(,4.3.32767]", - "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", - "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", - "System.Diagnostics.Process": "(,4.3.32767]", - "System.Diagnostics.StackTrace": "(,4.3.32767]", - "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", - "System.Diagnostics.Tools": "(,4.3.32767]", - "System.Diagnostics.TraceSource": "(,4.3.32767]", - "System.Diagnostics.Tracing": "(,4.3.32767]", - "System.Drawing.Primitives": "(,4.3.32767]", - "System.Dynamic.Runtime": "(,4.3.32767]", - "System.Formats.Asn1": "(,10.0.32767]", - "System.Formats.Tar": "(,10.0.32767]", - "System.Globalization": "(,4.3.32767]", - "System.Globalization.Calendars": "(,4.3.32767]", - "System.Globalization.Extensions": "(,4.3.32767]", - "System.IO": "(,4.3.32767]", - "System.IO.Compression": "(,4.3.32767]", - "System.IO.Compression.ZipFile": "(,4.3.32767]", - "System.IO.FileSystem": "(,4.3.32767]", - "System.IO.FileSystem.AccessControl": "(,4.4.32767]", - "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", - "System.IO.FileSystem.Primitives": "(,4.3.32767]", - "System.IO.FileSystem.Watcher": "(,4.3.32767]", - "System.IO.IsolatedStorage": "(,4.3.32767]", - "System.IO.MemoryMappedFiles": "(,4.3.32767]", - "System.IO.Pipelines": "(,10.0.32767]", - "System.IO.Pipes": "(,4.3.32767]", - "System.IO.Pipes.AccessControl": "(,5.0.32767]", - "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", - "System.Linq": "(,4.3.32767]", - "System.Linq.AsyncEnumerable": "(,10.0.32767]", - "System.Linq.Expressions": "(,4.3.32767]", - "System.Linq.Parallel": "(,4.3.32767]", - "System.Linq.Queryable": "(,4.3.32767]", - "System.Memory": "(,5.0.32767]", - "System.Net.Http": "(,4.3.32767]", - "System.Net.Http.Json": "(,10.0.32767]", - "System.Net.NameResolution": "(,4.3.32767]", - "System.Net.NetworkInformation": "(,4.3.32767]", - "System.Net.Ping": "(,4.3.32767]", - "System.Net.Primitives": "(,4.3.32767]", - "System.Net.Requests": "(,4.3.32767]", - "System.Net.Security": "(,4.3.32767]", - "System.Net.ServerSentEvents": "(,10.0.32767]", - "System.Net.Sockets": "(,4.3.32767]", - "System.Net.WebHeaderCollection": "(,4.3.32767]", - "System.Net.WebSockets": "(,4.3.32767]", - "System.Net.WebSockets.Client": "(,4.3.32767]", - "System.Numerics.Vectors": "(,5.0.32767]", - "System.ObjectModel": "(,4.3.32767]", - "System.Private.DataContractSerialization": "(,4.3.32767]", - "System.Private.Uri": "(,4.3.32767]", - "System.Reflection": "(,4.3.32767]", - "System.Reflection.DispatchProxy": "(,6.0.32767]", - "System.Reflection.Emit": "(,4.7.32767]", - "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", - "System.Reflection.Emit.Lightweight": "(,4.7.32767]", - "System.Reflection.Extensions": "(,4.3.32767]", - "System.Reflection.Metadata": "(,10.0.32767]", - "System.Reflection.Primitives": "(,4.3.32767]", - "System.Reflection.TypeExtensions": "(,4.3.32767]", - "System.Resources.Reader": "(,4.3.32767]", - "System.Resources.ResourceManager": "(,4.3.32767]", - "System.Resources.Writer": "(,4.3.32767]", - "System.Runtime": "(,4.3.32767]", - "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", - "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", - "System.Runtime.Extensions": "(,4.3.32767]", - "System.Runtime.Handles": "(,4.3.32767]", - "System.Runtime.InteropServices": "(,4.3.32767]", - "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", - "System.Runtime.Loader": "(,4.3.32767]", - "System.Runtime.Numerics": "(,4.3.32767]", - "System.Runtime.Serialization.Formatters": "(,4.3.32767]", - "System.Runtime.Serialization.Json": "(,4.3.32767]", - "System.Runtime.Serialization.Primitives": "(,4.3.32767]", - "System.Runtime.Serialization.Xml": "(,4.3.32767]", - "System.Security.AccessControl": "(,6.0.32767]", - "System.Security.Claims": "(,4.3.32767]", - "System.Security.Cryptography.Algorithms": "(,4.3.32767]", - "System.Security.Cryptography.Cng": "(,5.0.32767]", - "System.Security.Cryptography.Csp": "(,4.3.32767]", - "System.Security.Cryptography.Encoding": "(,4.3.32767]", - "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", - "System.Security.Cryptography.Primitives": "(,4.3.32767]", - "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", - "System.Security.Principal": "(,4.3.32767]", - "System.Security.Principal.Windows": "(,5.0.32767]", - "System.Security.SecureString": "(,4.3.32767]", - "System.Text.Encoding": "(,4.3.32767]", - "System.Text.Encoding.CodePages": "(,10.0.32767]", - "System.Text.Encoding.Extensions": "(,4.3.32767]", - "System.Text.Encodings.Web": "(,10.0.32767]", - "System.Text.Json": "(,10.0.32767]", - "System.Text.RegularExpressions": "(,4.3.32767]", - "System.Threading": "(,4.3.32767]", - "System.Threading.AccessControl": "(,10.0.32767]", - "System.Threading.Channels": "(,10.0.32767]", - "System.Threading.Overlapped": "(,4.3.32767]", - "System.Threading.Tasks": "(,4.3.32767]", - "System.Threading.Tasks.Dataflow": "(,10.0.32767]", - "System.Threading.Tasks.Extensions": "(,5.0.32767]", - "System.Threading.Tasks.Parallel": "(,4.3.32767]", - "System.Threading.Thread": "(,4.3.32767]", - "System.Threading.ThreadPool": "(,4.3.32767]", - "System.Threading.Timer": "(,4.3.32767]", - "System.ValueTuple": "(,4.5.32767]", - "System.Xml.ReaderWriter": "(,4.3.32767]", - "System.Xml.XDocument": "(,4.3.32767]", - "System.Xml.XmlDocument": "(,4.3.32767]", - "System.Xml.XmlSerializer": "(,4.3.32767]", - "System.Xml.XPath": "(,4.3.32767]", - "System.Xml.XPath.XDocument": "(,5.0.32767]" - } - } - } - } -} \ No newline at end of file diff --git a/tests/UnitTests/obj/project.nuget.cache b/tests/UnitTests/obj/project.nuget.cache deleted file mode 100644 index 3f41522..0000000 --- a/tests/UnitTests/obj/project.nuget.cache +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "S5xpJA5w+2g=", - "success": true, - "projectFilePath": "D:\\UserHome\\Architect Projects\\Distributed File Processing\\tests\\UnitTests\\UnitTests.csproj", - "expectedPackageFiles": [ - "C:\\Users\\Dell\\.nuget\\packages\\coverlet.collector\\6.0.4\\coverlet.collector.6.0.4.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.codecoverage\\17.14.1\\microsoft.codecoverage.17.14.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.net.test.sdk\\17.14.1\\microsoft.net.test.sdk.17.14.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.14.1\\microsoft.testplatform.objectmodel.17.14.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\microsoft.testplatform.testhost\\17.14.1\\microsoft.testplatform.testhost.17.14.1.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit\\2.9.3\\xunit.2.9.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.abstractions\\2.0.3\\xunit.abstractions.2.0.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.analyzers\\1.18.0\\xunit.analyzers.1.18.0.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.assert\\2.9.3\\xunit.assert.2.9.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.core\\2.9.3\\xunit.core.2.9.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.extensibility.core\\2.9.3\\xunit.extensibility.core.2.9.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.extensibility.execution\\2.9.3\\xunit.extensibility.execution.2.9.3.nupkg.sha512", - "C:\\Users\\Dell\\.nuget\\packages\\xunit.runner.visualstudio\\3.1.4\\xunit.runner.visualstudio.3.1.4.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file