diff --git a/.gitignore b/.gitignore index 6a74613..a6b2d27 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,50 @@ *.dll + +# Build results +[Dd]ebug/ +[Rr]elease/ +x64/ +x86/ +[Bb]in/ +[Oo]bj/ +*.log + +# Visual Studio +.vs/ +*.user +*.suo +*.userosscache +*.sln.docstates + +# Build artifacts that cause conflicts +**/bin/** +**/obj/** +**/*.dll +**/*.pdb +**/*.cache +**/*.exe +**/Debug/** +**/Release/** + +# Test files and temporary files +*.pdf +add_test_data.sql +test_*.sql +test_service_history.pdf + +# Frontend updates (should be in separate repo) +frontend-updates/ + +# NuGet +packages/ +*.nupkg + +# Database files +*.mdf +*.ldf +*.ndf + +# User-specific files +*.cache +*.pdb +*.exe diff --git a/PDF_Generation_Guide.md b/PDF_Generation_Guide.md new file mode 100644 index 0000000..8f80aeb --- /dev/null +++ b/PDF_Generation_Guide.md @@ -0,0 +1,184 @@ +# Vehicle Service History PDF Generation API Guide + +## Overview +This API provides endpoints to generate PDF reports of vehicle service history, clearly distinguishing between verified and unverified services. + +## Features +- **Verified Services**: Services performed at registered service centers with official records +- **Unverified Services**: Self-reported services or services from non-registered centers +- **Visual Distinction**: Different styling and status indicators for verified vs unverified services +- **Comprehensive Reports**: Full service history with vehicle information and service summary +- **Summary Reports**: Condensed version with key statistics only + +## API Endpoints + +### 1. Generate Full Service History PDF +**Endpoint**: `GET /api/Pdf/vehicle-service-history/{vehicleId}` +**Description**: Generates a complete PDF report with vehicle info, summary, and detailed service history. + +**Example Request**: +``` +GET /api/Pdf/vehicle-service-history/1 +``` + +**Response**: PDF file download with filename format: `ServiceHistory_ABC-1234_20250713.pdf` + +### 2. Generate Service Summary PDF +**Endpoint**: `GET /api/Pdf/vehicle-service-summary/{vehicleId}` +**Description**: Generates a summary PDF with vehicle info and service statistics only. + +**Example Request**: +``` +GET /api/Pdf/vehicle-service-summary/1 +``` + +**Response**: PDF file download with filename format: `ServiceSummary_ABC-1234_20250713.pdf` + +### 3. Preview Service History PDF +**Endpoint**: `GET /api/Pdf/vehicle-service-history/{vehicleId}/preview` +**Description**: Returns PDF for inline preview in browser instead of download. + +**Example Request**: +``` +GET /api/Pdf/vehicle-service-history/1/preview +``` + +**Response**: PDF file for inline display in browser + +## Test Endpoints (Mock Data) + +### 1. Test with Mixed Services +**Endpoint**: `GET /api/TestPdf/test-vehicle-service-history` +**Description**: Test PDF with both verified and unverified services + +### 2. Test with Empty History +**Endpoint**: `GET /api/TestPdf/test-empty-service-history` +**Description**: Test PDF with no service history + +### 3. Test with Verified Only +**Endpoint**: `GET /api/TestPdf/test-verified-only` +**Description**: Test PDF with only verified services + +### 4. Test with Unverified Only +**Endpoint**: `GET /api/TestPdf/test-unverified-only` +**Description**: Test PDF with only unverified services + +## PDF Content Structure + +### 1. Header Section +- Company name: "Vehicle Passport System" +- Document title +- Generation date and time + +### 2. Vehicle Information Section +- Registration number +- Owner information +- Brand, model, year +- Fuel type +- Chassis number +- Current mileage + +### 3. Service History Summary Section +- Total number of services +- Number of verified services (highlighted in green) +- Number of unverified services (highlighted in red) +- Total cost of all services +- Average cost per service +- Date of last service + +### 4. Detailed Service History Section +- Table with all services sorted by date (newest first) +- Columns: Date, Service Type, Description, Service Provider, Cost, Status +- **Verified services** display: + - Service center name from registered centers + - Technician name who performed the service + - "VERIFIED" status in green + - Normal text styling +- **Unverified services** display: + - External service center name (if provided) or "Self-Reported" + - No technician information + - "UNVERIFIED" status in orange + - Slightly grayed out text + - Light gray background + +### 5. Legend Section +- Explanation of verified vs unverified services +- Clear distinction between the two types + +### 6. Footer Section +- Generation timestamp +- System identification +- Disclaimer about unverified services + +## Visual Indicators + +### Verified Services +- ✅ Green "VERIFIED" status badge +- Normal black text +- White background +- Service center and technician information included + +### Unverified Services +- ⚠️ Orange "UNVERIFIED" status badge +- Grayed out text +- Light gray background +- External service center name or "Self-Reported" + +## Error Handling +- **404**: Vehicle not found +- **500**: Internal server error with detailed error message + +## Example cURL Commands + +### Download Full Service History +```bash +curl -X GET "http://localhost:5039/api/Pdf/vehicle-service-history/1" \ + -H "accept: application/pdf" \ + --output "service_history.pdf" +``` + +### Download Service Summary +```bash +curl -X GET "http://localhost:5039/api/Pdf/vehicle-service-summary/1" \ + -H "accept: application/pdf" \ + --output "service_summary.pdf" +``` + +### Test with Mock Data +```bash +curl -X GET "http://localhost:5039/api/TestPdf/test-vehicle-service-history" \ + -H "accept: application/pdf" \ + --output "test_service_history.pdf" +``` + +## Integration Notes + +### Frontend Integration +1. **Download Button**: Direct link to PDF endpoint +2. **Preview**: Use iframe or embed with preview endpoint +3. **Loading States**: Show loading indicator during PDF generation +4. **Error Handling**: Display user-friendly error messages + +### Mobile App Integration +1. **Download**: Use file download API +2. **Preview**: Open in system PDF viewer +3. **Sharing**: Use platform-specific sharing APIs + +### Security Considerations +- Implement proper authentication for production use +- Validate vehicle ownership before generating PDFs +- Add rate limiting to prevent abuse +- Consider adding watermarks for official documents + +## Database Requirements +The PDF generation relies on the following database relationships: +- `Vehicle` → `Customer` (owner information) +- `VehicleServiceHistory` → `Vehicle` (service records) +- `VehicleServiceHistory` → `ServiceCenter` (for verified services) +- `VehicleServiceHistory` → `User` (technician information) + +## Performance Considerations +- PDF generation is CPU-intensive; consider async processing for large reports +- Implement caching for frequently requested reports +- Use pagination for very large service histories +- Consider background processing for bulk PDF generation diff --git a/Vpassbackend/Controllers/PdfController.cs b/Vpassbackend/Controllers/PdfController.cs new file mode 100644 index 0000000..5e0abc7 --- /dev/null +++ b/Vpassbackend/Controllers/PdfController.cs @@ -0,0 +1,193 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Vpassbackend.Data; +using Vpassbackend.Services; +using Vpassbackend.DTOs; + +namespace Vpassbackend.Controllers +{ + [ApiController] + [Route("api/[controller]")] + public class PdfController : ControllerBase + { + private readonly ApplicationDbContext _context; + private readonly IPdfService _pdfService; + + public PdfController(ApplicationDbContext context, IPdfService pdfService) + { + _context = context; + _pdfService = pdfService; + } + + /// + /// Generate and download complete vehicle service history PDF + /// + /// Vehicle ID + /// PDF file for download + [HttpGet("vehicle-service-history/{vehicleId}")] + public async Task GenerateVehicleServiceHistoryPdf(int vehicleId) + { + try + { + // Get vehicle with customer information + var vehicle = await _context.Vehicles + .Include(v => v.Customer) + .FirstOrDefaultAsync(v => v.VehicleId == vehicleId); + + if (vehicle == null) + { + return NotFound(new { message = "Vehicle not found" }); + } + + // Get service history for the vehicle + var serviceHistory = await _context.VehicleServiceHistories + .Include(vh => vh.ServiceCenter) + .Include(vh => vh.ServicedByUser) + .Where(vh => vh.VehicleId == vehicleId) + .OrderByDescending(vh => vh.ServiceDate) + .Select(vh => new ServiceHistoryDTO + { + ServiceHistoryId = vh.ServiceHistoryId, + VehicleId = vh.VehicleId, + ServiceType = vh.ServiceType, + Description = vh.Description, + Cost = vh.Cost, + ServiceDate = vh.ServiceDate, + Mileage = vh.Mileage, + IsVerified = vh.IsVerified, + ServiceCenterName = vh.ServiceCenter != null ? vh.ServiceCenter.Station_name : null, + ServicedByUserName = vh.ServicedByUser != null ? $"{vh.ServicedByUser.FirstName} {vh.ServicedByUser.LastName}" : null, + ExternalServiceCenterName = vh.ExternalServiceCenterName, + ReceiptDocumentPath = vh.ReceiptDocumentPath + }) + .ToListAsync(); + + // Generate PDF + var pdfBytes = await _pdfService.GenerateVehicleServiceHistoryPdfAsync(vehicle, serviceHistory); + + // Create filename + var fileName = $"ServiceHistory_{vehicle.RegistrationNumber}_{DateTime.Now:yyyyMMdd}.pdf"; + + // Return file for download + return File(pdfBytes, "application/pdf", fileName); + } + catch (Exception ex) + { + return StatusCode(500, new { message = "Error generating PDF", error = ex.Message }); + } + } + + /// + /// Generate and download vehicle service history summary PDF + /// + /// Vehicle ID + /// PDF file for download + [HttpGet("vehicle-service-summary/{vehicleId}")] + public async Task GenerateVehicleServiceSummaryPdf(int vehicleId) + { + try + { + // Get vehicle with customer information + var vehicle = await _context.Vehicles + .Include(v => v.Customer) + .FirstOrDefaultAsync(v => v.VehicleId == vehicleId); + + if (vehicle == null) + { + return NotFound(new { message = "Vehicle not found" }); + } + + // Get service history for the vehicle + var serviceHistory = await _context.VehicleServiceHistories + .Include(vh => vh.ServiceCenter) + .Include(vh => vh.ServicedByUser) + .Where(vh => vh.VehicleId == vehicleId) + .OrderByDescending(vh => vh.ServiceDate) + .Select(vh => new ServiceHistoryDTO + { + ServiceHistoryId = vh.ServiceHistoryId, + VehicleId = vh.VehicleId, + ServiceType = vh.ServiceType, + Description = vh.Description, + Cost = vh.Cost, + ServiceDate = vh.ServiceDate, + Mileage = vh.Mileage, + IsVerified = vh.IsVerified, + ServiceCenterName = vh.ServiceCenter != null ? vh.ServiceCenter.Station_name : null, + ServicedByUserName = vh.ServicedByUser != null ? $"{vh.ServicedByUser.FirstName} {vh.ServicedByUser.LastName}" : null, + ExternalServiceCenterName = vh.ExternalServiceCenterName, + ReceiptDocumentPath = vh.ReceiptDocumentPath + }) + .ToListAsync(); + + // Generate PDF + var pdfBytes = await _pdfService.GenerateServiceHistorySummaryPdfAsync(vehicle, serviceHistory); + + // Create filename + var fileName = $"ServiceSummary_{vehicle.RegistrationNumber}_{DateTime.Now:yyyyMMdd}.pdf"; + + // Return file for download + return File(pdfBytes, "application/pdf", fileName); + } + catch (Exception ex) + { + return StatusCode(500, new { message = "Error generating PDF", error = ex.Message }); + } + } + + /// + /// Preview vehicle service history PDF in browser + /// + /// Vehicle ID + /// PDF file for preview + [HttpGet("vehicle-service-history/{vehicleId}/preview")] + public async Task PreviewVehicleServiceHistoryPdf(int vehicleId) + { + try + { + // Get vehicle with customer information + var vehicle = await _context.Vehicles + .Include(v => v.Customer) + .FirstOrDefaultAsync(v => v.VehicleId == vehicleId); + + if (vehicle == null) + { + return NotFound(new { message = "Vehicle not found" }); + } + + // Get service history for the vehicle + var serviceHistory = await _context.VehicleServiceHistories + .Include(vh => vh.ServiceCenter) + .Include(vh => vh.ServicedByUser) + .Where(vh => vh.VehicleId == vehicleId) + .OrderByDescending(vh => vh.ServiceDate) + .Select(vh => new ServiceHistoryDTO + { + ServiceHistoryId = vh.ServiceHistoryId, + VehicleId = vh.VehicleId, + ServiceType = vh.ServiceType, + Description = vh.Description, + Cost = vh.Cost, + ServiceDate = vh.ServiceDate, + Mileage = vh.Mileage, + IsVerified = vh.IsVerified, + ServiceCenterName = vh.ServiceCenter != null ? vh.ServiceCenter.Station_name : null, + ServicedByUserName = vh.ServicedByUser != null ? $"{vh.ServicedByUser.FirstName} {vh.ServicedByUser.LastName}" : null, + ExternalServiceCenterName = vh.ExternalServiceCenterName, + ReceiptDocumentPath = vh.ReceiptDocumentPath + }) + .ToListAsync(); + + // Generate PDF + var pdfBytes = await _pdfService.GenerateVehicleServiceHistoryPdfAsync(vehicle, serviceHistory); + + // Return file for preview (inline display) + return File(pdfBytes, "application/pdf"); + } + catch (Exception ex) + { + return StatusCode(500, new { message = "Error generating PDF", error = ex.Message }); + } + } + } +} diff --git a/Vpassbackend/Controllers/TestPdfController.cs b/Vpassbackend/Controllers/TestPdfController.cs new file mode 100644 index 0000000..f948718 --- /dev/null +++ b/Vpassbackend/Controllers/TestPdfController.cs @@ -0,0 +1,377 @@ +using Microsoft.AspNetCore.Mvc; +using Vpassbackend.Services; +using Vpassbackend.Models; +using Vpassbackend.DTOs; + +namespace Vpassbackend.Controllers +{ + [ApiController] + [Route("api/[controller]")] + public class TestPdfController : ControllerBase + { + private readonly IPdfService _pdfService; + + public TestPdfController(IPdfService pdfService) + { + _pdfService = pdfService; + } + + /// + /// Test PDF generation with mock data showing both verified and unverified services + /// + /// PDF file for download + [HttpGet("test-vehicle-service-history")] + public async Task TestVehicleServiceHistoryPdf() + { + try + { + // Create mock vehicle data + var mockVehicle = new Vehicle + { + VehicleId = 1, + RegistrationNumber = "ABC-1234", + Brand = "Toyota", + Model = "Camry", + Year = 2020, + Fuel = "Petrol", + Mileage = 25000, + ChassisNumber = "1234567890123456", + CustomerId = 1, + Customer = new Customer + { + CustomerId = 1, + FirstName = "John", + LastName = "Doe", + Email = "john.doe@example.com", + Address = "123 Main Street, Colombo 03", + PhoneNumber = "+94771234567", + NIC = "123456789V", + Password = "hashedpassword", + LoyaltyPoints = 150, + IsEmailVerified = true + } + }; + + // Create mock service history with both verified and unverified services + var mockServiceHistory = new List + { + // Verified service from registered service center + new ServiceHistoryDTO + { + ServiceHistoryId = 1, + VehicleId = 1, + ServiceType = "Full Service", + Description = "Complete engine service including oil change, filter replacement, and general inspection", + Cost = 12500, + ServiceDate = DateTime.Now.AddDays(-30), + Mileage = 24500, + IsVerified = true, + ServiceCenterName = "Toyota Service Center - Colombo", + ServicedByUserName = "Michael Johnson" + }, + + // Unverified service (self-reported) + new ServiceHistoryDTO + { + ServiceHistoryId = 2, + VehicleId = 1, + ServiceType = "Tire Rotation", + Description = "Rotated all four tires and checked tire pressure", + Cost = 1500, + ServiceDate = DateTime.Now.AddDays(-45), + Mileage = 24200, + IsVerified = false, + ExternalServiceCenterName = "Quick Fix Auto - Kandy" + }, + + // Verified service from registered service center + new ServiceHistoryDTO + { + ServiceHistoryId = 3, + VehicleId = 1, + ServiceType = "Brake Service", + Description = "Brake pad replacement and brake fluid change", + Cost = 18000, + ServiceDate = DateTime.Now.AddDays(-60), + Mileage = 23800, + IsVerified = true, + ServiceCenterName = "AutoCare Lanka - Galle Road", + ServicedByUserName = "Sarah Williams" + }, + + // Unverified service (self-reported) + new ServiceHistoryDTO + { + ServiceHistoryId = 4, + VehicleId = 1, + ServiceType = "Oil Change", + Description = "Self-performed oil change with premium oil", + Cost = 3500, + ServiceDate = DateTime.Now.AddDays(-90), + Mileage = 23200, + IsVerified = false, + ExternalServiceCenterName = "Self Service" + }, + + // Verified service from registered service center + new ServiceHistoryDTO + { + ServiceHistoryId = 5, + VehicleId = 1, + ServiceType = "Air Conditioning Service", + Description = "A/C system cleaning and refrigerant refill", + Cost = 8500, + ServiceDate = DateTime.Now.AddDays(-120), + Mileage = 22800, + IsVerified = true, + ServiceCenterName = "Cool Air Service Station", + ServicedByUserName = "David Chen" + }, + + // Unverified service (external service center) + new ServiceHistoryDTO + { + ServiceHistoryId = 6, + VehicleId = 1, + ServiceType = "Battery Replacement", + Description = "Replaced old battery with new Exide battery", + Cost = 15000, + ServiceDate = DateTime.Now.AddDays(-180), + Mileage = 22000, + IsVerified = false, + ExternalServiceCenterName = "City Battery Center" + } + }; + + // Generate PDF + var pdfBytes = await _pdfService.GenerateVehicleServiceHistoryPdfAsync(mockVehicle, mockServiceHistory); + + // Create filename + var fileName = $"TestServiceHistory_{DateTime.Now:yyyyMMdd_HHmmss}.pdf"; + + // Return file for download + return File(pdfBytes, "application/pdf", fileName); + } + catch (Exception ex) + { + return StatusCode(500, new { message = "Error generating test PDF", error = ex.Message }); + } + } + + /// + /// Test PDF generation with no service history data + /// + /// PDF file for download + [HttpGet("test-empty-service-history")] + public async Task TestEmptyServiceHistoryPdf() + { + try + { + // Create mock vehicle data + var mockVehicle = new Vehicle + { + VehicleId = 2, + RegistrationNumber = "XYZ-9876", + Brand = "Honda", + Model = "Civic", + Year = 2018, + Fuel = "Petrol", + Mileage = 45000, + ChassisNumber = "0987654321098765", + CustomerId = 2, + Customer = new Customer + { + CustomerId = 2, + FirstName = "Jane", + LastName = "Smith", + Email = "jane.smith@example.com", + Address = "456 Oak Avenue, Kandy", + PhoneNumber = "+94779876543", + NIC = "987654321V", + Password = "hashedpassword", + LoyaltyPoints = 75, + IsEmailVerified = true + } + }; + + // Empty service history + var emptyServiceHistory = new List(); + + // Generate PDF + var pdfBytes = await _pdfService.GenerateVehicleServiceHistoryPdfAsync(mockVehicle, emptyServiceHistory); + + // Create filename + var fileName = $"TestEmptyServiceHistory_{DateTime.Now:yyyyMMdd_HHmmss}.pdf"; + + // Return file for download + return File(pdfBytes, "application/pdf", fileName); + } + catch (Exception ex) + { + return StatusCode(500, new { message = "Error generating test PDF", error = ex.Message }); + } + } + + /// + /// Test PDF generation with only verified services + /// + /// PDF file for download + [HttpGet("test-verified-only")] + public async Task TestVerifiedOnlyPdf() + { + try + { + // Create mock vehicle data + var mockVehicle = new Vehicle + { + VehicleId = 3, + RegistrationNumber = "DEF-5678", + Brand = "Nissan", + Model = "Altima", + Year = 2019, + Fuel = "Petrol", + Mileage = 35000, + ChassisNumber = "1357924680135792", + CustomerId = 3, + Customer = new Customer + { + CustomerId = 3, + FirstName = "Robert", + LastName = "Johnson", + Email = "robert.johnson@example.com", + Address = "789 Pine Road, Galle", + PhoneNumber = "+94765432109", + NIC = "654321987V", + Password = "hashedpassword", + LoyaltyPoints = 200, + IsEmailVerified = true + } + }; + + // Only verified services + var verifiedOnlyHistory = new List + { + new ServiceHistoryDTO + { + ServiceHistoryId = 7, + VehicleId = 3, + ServiceType = "Scheduled Maintenance", + Description = "60,000 km scheduled maintenance service", + Cost = 25000, + ServiceDate = DateTime.Now.AddDays(-15), + Mileage = 34800, + IsVerified = true, + ServiceCenterName = "Nissan Authorized Service Center", + ServicedByUserName = "Emily Davis" + }, + new ServiceHistoryDTO + { + ServiceHistoryId = 8, + VehicleId = 3, + ServiceType = "Transmission Service", + Description = "Transmission fluid change and filter replacement", + Cost = 22000, + ServiceDate = DateTime.Now.AddDays(-90), + Mileage = 34000, + IsVerified = true, + ServiceCenterName = "Premium Auto Service", + ServicedByUserName = "Mark Wilson" + } + }; + + // Generate PDF + var pdfBytes = await _pdfService.GenerateVehicleServiceHistoryPdfAsync(mockVehicle, verifiedOnlyHistory); + + // Create filename + var fileName = $"TestVerifiedOnly_{DateTime.Now:yyyyMMdd_HHmmss}.pdf"; + + // Return file for download + return File(pdfBytes, "application/pdf", fileName); + } + catch (Exception ex) + { + return StatusCode(500, new { message = "Error generating test PDF", error = ex.Message }); + } + } + + /// + /// Test PDF generation with only unverified services + /// + /// PDF file for download + [HttpGet("test-unverified-only")] + public async Task TestUnverifiedOnlyPdf() + { + try + { + // Create mock vehicle data + var mockVehicle = new Vehicle + { + VehicleId = 4, + RegistrationNumber = "GHI-2468", + Brand = "Mazda", + Model = "CX-5", + Year = 2021, + Fuel = "Petrol", + Mileage = 15000, + ChassisNumber = "2468135790246813", + CustomerId = 4, + Customer = new Customer + { + CustomerId = 4, + FirstName = "Lisa", + LastName = "Anderson", + Email = "lisa.anderson@example.com", + Address = "321 Cedar Street, Negombo", + PhoneNumber = "+94712345678", + NIC = "321654987V", + Password = "hashedpassword", + LoyaltyPoints = 50, + IsEmailVerified = true + } + }; + + // Only unverified services + var unverifiedOnlyHistory = new List + { + new ServiceHistoryDTO + { + ServiceHistoryId = 9, + VehicleId = 4, + ServiceType = "Car Wash & Wax", + Description = "Professional car wash and wax service", + Cost = 2500, + ServiceDate = DateTime.Now.AddDays(-7), + Mileage = 14950, + IsVerified = false, + ExternalServiceCenterName = "Shine Auto Detailing" + }, + new ServiceHistoryDTO + { + ServiceHistoryId = 10, + VehicleId = 4, + ServiceType = "Interior Cleaning", + Description = "Deep interior cleaning and sanitization", + Cost = 3000, + ServiceDate = DateTime.Now.AddDays(-30), + Mileage = 14500, + IsVerified = false, + ExternalServiceCenterName = "Clean Car Solutions" + } + }; + + // Generate PDF + var pdfBytes = await _pdfService.GenerateVehicleServiceHistoryPdfAsync(mockVehicle, unverifiedOnlyHistory); + + // Create filename + var fileName = $"TestUnverifiedOnly_{DateTime.Now:yyyyMMdd_HHmmss}.pdf"; + + // Return file for download + return File(pdfBytes, "application/pdf", fileName); + } + catch (Exception ex) + { + return StatusCode(500, new { message = "Error generating test PDF", error = ex.Message }); + } + } + } +} diff --git a/Vpassbackend/Migrations/20250711055136_InitialCreate.Designer.cs b/Vpassbackend/Migrations/20250713160234_InitialCreate.Designer.cs similarity index 99% rename from Vpassbackend/Migrations/20250711055136_InitialCreate.Designer.cs rename to Vpassbackend/Migrations/20250713160234_InitialCreate.Designer.cs index ae46059..b5ea9b5 100644 --- a/Vpassbackend/Migrations/20250711055136_InitialCreate.Designer.cs +++ b/Vpassbackend/Migrations/20250713160234_InitialCreate.Designer.cs @@ -12,7 +12,7 @@ namespace Vpassbackend.Migrations { [DbContext(typeof(ApplicationDbContext))] - [Migration("20250711055136_InitialCreate")] + [Migration("20250713160234_InitialCreate")] partial class InitialCreate { /// diff --git a/Vpassbackend/Migrations/20250711055136_InitialCreate.cs b/Vpassbackend/Migrations/20250713160234_InitialCreate.cs similarity index 100% rename from Vpassbackend/Migrations/20250711055136_InitialCreate.cs rename to Vpassbackend/Migrations/20250713160234_InitialCreate.cs diff --git a/Vpassbackend/Program.cs b/Vpassbackend/Program.cs index 7f7936b..c6e9ca5 100644 --- a/Vpassbackend/Program.cs +++ b/Vpassbackend/Program.cs @@ -9,9 +9,13 @@ var builder = WebApplication.CreateBuilder(args); -// Configure EF Core +// Configure EF Core with retry logic builder.Services.AddDbContext(options => - options.UseSqlServer(builder.Configuration.GetConnectionString("DefaultConnection"))); + options.UseSqlServer(builder.Configuration.GetConnectionString("DefaultConnection"), + sqlServerOptions => sqlServerOptions.EnableRetryOnFailure( + maxRetryCount: 5, + maxRetryDelay: TimeSpan.FromSeconds(30), + errorNumbersToAdd: null))); // Configure CORS for development - Allow any origin during development builder.Services.AddCors(options => @@ -45,6 +49,7 @@ // Add services builder.Services.AddScoped(); builder.Services.AddScoped(); +builder.Services.AddScoped(); // Configure JWT Authentication builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme) @@ -111,6 +116,7 @@ var app = builder.Build(); // Seed data +/* using (var scope = app.Services.CreateScope()) { try @@ -126,6 +132,7 @@ // Continue with application startup even if seeding fails } } +*/ // Configure HTTP pipeline if (app.Environment.IsDevelopment()) diff --git a/Vpassbackend/Services/IPdfService.cs b/Vpassbackend/Services/IPdfService.cs new file mode 100644 index 0000000..7617777 --- /dev/null +++ b/Vpassbackend/Services/IPdfService.cs @@ -0,0 +1,11 @@ +using Vpassbackend.Models; +using Vpassbackend.DTOs; + +namespace Vpassbackend.Services +{ + public interface IPdfService + { + Task GenerateVehicleServiceHistoryPdfAsync(Vehicle vehicle, List serviceHistory); + Task GenerateServiceHistorySummaryPdfAsync(Vehicle vehicle, List serviceHistory); + } +} diff --git a/Vpassbackend/Services/PdfService.cs b/Vpassbackend/Services/PdfService.cs new file mode 100644 index 0000000..51a5437 --- /dev/null +++ b/Vpassbackend/Services/PdfService.cs @@ -0,0 +1,337 @@ +using iTextSharp.text; +using iTextSharp.text.pdf; +using Vpassbackend.Models; +using Vpassbackend.DTOs; +using System.IO; +using Document = iTextSharp.text.Document; + +namespace Vpassbackend.Services +{ + public class PdfService : IPdfService + { + public async Task GenerateVehicleServiceHistoryPdfAsync(Vehicle vehicle, List serviceHistory) + { + return await Task.Run(() => + { + using (var ms = new MemoryStream()) + { + var document = new Document(PageSize.A4, 36, 36, 54, 54); + var writer = PdfWriter.GetInstance(document, ms); + + document.Open(); + + // Add header + AddHeader(document, "Vehicle Service History Report"); + + // Add vehicle information + AddVehicleInfo(document, vehicle); + + // Add service history summary + AddServiceHistorySummary(document, serviceHistory); + + // Add detailed service history + AddDetailedServiceHistory(document, serviceHistory); + + // Add footer + AddFooter(document); + + document.Close(); + + return ms.ToArray(); + } + }); + } + + public async Task GenerateServiceHistorySummaryPdfAsync(Vehicle vehicle, List serviceHistory) + { + return await Task.Run(() => + { + using (var ms = new MemoryStream()) + { + var document = new Document(PageSize.A4, 36, 36, 54, 54); + var writer = PdfWriter.GetInstance(document, ms); + + document.Open(); + + // Add header + AddHeader(document, "Vehicle Service History Summary"); + + // Add vehicle information + AddVehicleInfo(document, vehicle); + + // Add service history summary only + AddServiceHistorySummary(document, serviceHistory); + + // Add footer + AddFooter(document); + + document.Close(); + + return ms.ToArray(); + } + }); + } + + private void AddHeader(Document document, string title) + { + var headerFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 18, new BaseColor(64, 64, 64)); + var titleFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 16, new BaseColor(0, 0, 0)); + var dateFont = FontFactory.GetFont(FontFactory.HELVETICA, 10, new BaseColor(128, 128, 128)); + + // Company header + var companyParagraph = new Paragraph("Vehicle Passport System", headerFont) + { + Alignment = Element.ALIGN_CENTER, + SpacingAfter = 10 + }; + document.Add(companyParagraph); + + // Document title + var titleParagraph = new Paragraph(title, titleFont) + { + Alignment = Element.ALIGN_CENTER, + SpacingAfter = 5 + }; + document.Add(titleParagraph); + + // Generation date + var dateParagraph = new Paragraph($"Generated on: {DateTime.Now:dd/MM/yyyy HH:mm}", dateFont) + { + Alignment = Element.ALIGN_CENTER, + SpacingAfter = 20 + }; + document.Add(dateParagraph); + + // Add a line separator + var line = new Paragraph("_____________________________________________________________________________") + { + Alignment = Element.ALIGN_CENTER, + SpacingAfter = 20 + }; + document.Add(line); + } + + private void AddVehicleInfo(Document document, Vehicle vehicle) + { + var sectionFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 14, new BaseColor(0, 0, 0)); + var labelFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 11, new BaseColor(0, 0, 0)); + var valueFont = FontFactory.GetFont(FontFactory.HELVETICA, 11, new BaseColor(0, 0, 0)); + + // Vehicle Information Section + var vehicleSection = new Paragraph("Vehicle Information", sectionFont) + { + SpacingBefore = 10, + SpacingAfter = 10 + }; + document.Add(vehicleSection); + + // Create a table for vehicle information + var vehicleTable = new PdfPTable(4) { WidthPercentage = 100 }; + vehicleTable.SetWidths(new float[] { 25f, 25f, 25f, 25f }); + + // Row 1 + AddTableCell(vehicleTable, "Registration Number:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(vehicleTable, vehicle.RegistrationNumber, valueFont, new BaseColor(255, 255, 255)); + AddTableCell(vehicleTable, "Owner:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(vehicleTable, $"{vehicle.Customer.FirstName} {vehicle.Customer.LastName}", valueFont, new BaseColor(255, 255, 255)); + + // Row 2 + AddTableCell(vehicleTable, "Brand:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(vehicleTable, vehicle.Brand ?? "N/A", valueFont, new BaseColor(255, 255, 255)); + AddTableCell(vehicleTable, "Model:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(vehicleTable, vehicle.Model ?? "N/A", valueFont, new BaseColor(255, 255, 255)); + + // Row 3 + AddTableCell(vehicleTable, "Year:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(vehicleTable, vehicle.Year?.ToString() ?? "N/A", valueFont, new BaseColor(255, 255, 255)); + AddTableCell(vehicleTable, "Fuel Type:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(vehicleTable, vehicle.Fuel ?? "N/A", valueFont, new BaseColor(255, 255, 255)); + + // Row 4 + AddTableCell(vehicleTable, "Chassis Number:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(vehicleTable, vehicle.ChassisNumber ?? "N/A", valueFont, new BaseColor(255, 255, 255)); + AddTableCell(vehicleTable, "Current Mileage:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(vehicleTable, vehicle.Mileage?.ToString("N0") ?? "N/A", valueFont, new BaseColor(255, 255, 255)); + + document.Add(vehicleTable); + } + + private void AddServiceHistorySummary(Document document, List serviceHistory) + { + var sectionFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 14, new BaseColor(0, 0, 0)); + var labelFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 11, new BaseColor(0, 0, 0)); + var valueFont = FontFactory.GetFont(FontFactory.HELVETICA, 11, new BaseColor(0, 0, 0)); + + // Service History Summary Section + var summarySection = new Paragraph("Service History Summary", sectionFont) + { + SpacingBefore = 20, + SpacingAfter = 10 + }; + document.Add(summarySection); + + if (!serviceHistory.Any()) + { + var noDataParagraph = new Paragraph("No service history available for this vehicle.", valueFont) + { + SpacingAfter = 20, + Alignment = Element.ALIGN_CENTER + }; + document.Add(noDataParagraph); + return; + } + + // Calculate statistics + var totalServices = serviceHistory.Count; + var verifiedServices = serviceHistory.Count(s => s.IsVerified); + var unverifiedServices = serviceHistory.Count(s => !s.IsVerified); + var totalCost = serviceHistory.Sum(s => s.Cost); + var averageCost = totalServices > 0 ? totalCost / totalServices : 0; + var lastServiceDate = serviceHistory.MaxBy(s => s.ServiceDate)?.ServiceDate; + + // Create summary table + var summaryTable = new PdfPTable(4) { WidthPercentage = 100 }; + summaryTable.SetWidths(new float[] { 25f, 25f, 25f, 25f }); + + // Row 1 + AddTableCell(summaryTable, "Total Services:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(summaryTable, totalServices.ToString(), valueFont, new BaseColor(255, 255, 255)); + AddTableCell(summaryTable, "Total Cost:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(summaryTable, $"LKR {totalCost:N2}", valueFont, new BaseColor(255, 255, 255)); + + // Row 2 + AddTableCell(summaryTable, "Verified Services:", labelFont, new BaseColor(200, 255, 200)); // Light green + AddTableCell(summaryTable, verifiedServices.ToString(), valueFont, new BaseColor(255, 255, 255)); + AddTableCell(summaryTable, "Unverified Services:", labelFont, new BaseColor(255, 200, 200)); // Light red + AddTableCell(summaryTable, unverifiedServices.ToString(), valueFont, new BaseColor(255, 255, 255)); + + // Row 3 + AddTableCell(summaryTable, "Average Cost:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(summaryTable, $"LKR {averageCost:N2}", valueFont, new BaseColor(255, 255, 255)); + AddTableCell(summaryTable, "Last Service:", labelFont, new BaseColor(211, 211, 211)); + AddTableCell(summaryTable, lastServiceDate?.ToString("dd/MM/yyyy") ?? "N/A", valueFont, new BaseColor(255, 255, 255)); + + document.Add(summaryTable); + } + + private void AddDetailedServiceHistory(Document document, List serviceHistory) + { + var sectionFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 14, new BaseColor(0, 0, 0)); + var headerFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 10, new BaseColor(255, 255, 255)); + var verifiedFont = FontFactory.GetFont(FontFactory.HELVETICA, 9, new BaseColor(0, 0, 0)); + var unverifiedFont = FontFactory.GetFont(FontFactory.HELVETICA, 9, new BaseColor(64, 64, 64)); + + // Detailed Service History Section + var detailSection = new Paragraph("Detailed Service History", sectionFont) + { + SpacingBefore = 20, + SpacingAfter = 10 + }; + document.Add(detailSection); + + if (!serviceHistory.Any()) + { + return; + } + + // Create detailed table + var detailTable = new PdfPTable(6) { WidthPercentage = 100 }; + detailTable.SetWidths(new float[] { 15f, 20f, 25f, 20f, 10f, 10f }); + + // Add headers + AddTableCell(detailTable, "Date", headerFont, new BaseColor(64, 64, 64)); + AddTableCell(detailTable, "Service Type", headerFont, new BaseColor(64, 64, 64)); + AddTableCell(detailTable, "Description", headerFont, new BaseColor(64, 64, 64)); + AddTableCell(detailTable, "Service Provider", headerFont, new BaseColor(64, 64, 64)); + AddTableCell(detailTable, "Cost (LKR)", headerFont, new BaseColor(64, 64, 64)); + AddTableCell(detailTable, "Status", headerFont, new BaseColor(64, 64, 64)); + + // Sort by date (newest first) + var sortedHistory = serviceHistory.OrderByDescending(s => s.ServiceDate).ToList(); + + foreach (var service in sortedHistory) + { + var font = service.IsVerified ? verifiedFont : unverifiedFont; + var rowColor = service.IsVerified ? new BaseColor(255, 255, 255) : new BaseColor(248, 248, 248); + + AddTableCell(detailTable, service.ServiceDate.ToString("dd/MM/yyyy"), font, rowColor); + AddTableCell(detailTable, service.ServiceType, font, rowColor); + AddTableCell(detailTable, service.Description ?? "No description provided", font, rowColor); + + var serviceProvider = service.IsVerified + ? service.ServiceCenterName ?? "Unknown Service Center" + : service.ExternalServiceCenterName ?? "Self-Reported"; + AddTableCell(detailTable, serviceProvider, font, rowColor); + + AddTableCell(detailTable, service.Cost.ToString("N2"), font, rowColor); + + var statusColor = service.IsVerified ? new BaseColor(76, 175, 80) : new BaseColor(255, 152, 0); + var statusFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 8, new BaseColor(255, 255, 255)); + AddTableCell(detailTable, service.IsVerified ? "VERIFIED" : "UNVERIFIED", statusFont, statusColor); + } + + document.Add(detailTable); + + // Add legend + AddLegend(document); + } + + private void AddLegend(Document document) + { + var legendFont = FontFactory.GetFont(FontFactory.HELVETICA, 9, new BaseColor(0, 0, 0)); + var legendTitle = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 10, new BaseColor(0, 0, 0)); + + var legendSection = new Paragraph("Legend:", legendTitle) + { + SpacingBefore = 15, + SpacingAfter = 5 + }; + document.Add(legendSection); + + var verifiedParagraph = new Paragraph("• VERIFIED: Services performed at registered service centers with official records", legendFont) + { + SpacingAfter = 3 + }; + document.Add(verifiedParagraph); + + var unverifiedParagraph = new Paragraph("• UNVERIFIED: Self-reported services or services performed at non-registered centers", legendFont) + { + SpacingAfter = 10 + }; + document.Add(unverifiedParagraph); + } + + private void AddFooter(Document document) + { + var footerFont = FontFactory.GetFont(FontFactory.HELVETICA, 8, new BaseColor(128, 128, 128)); + + var footerParagraph = new Paragraph($"This document was generated electronically by Vehicle Passport System on {DateTime.Now:dd/MM/yyyy HH:mm}. " + + "For verification of service records, please contact the respective service centers.", footerFont) + { + SpacingBefore = 30, + Alignment = Element.ALIGN_CENTER + }; + document.Add(footerParagraph); + + var disclaimerParagraph = new Paragraph("Note: Unverified service records are self-reported and may not reflect actual service performed.", footerFont) + { + SpacingBefore = 10, + Alignment = Element.ALIGN_CENTER + }; + document.Add(disclaimerParagraph); + } + + private void AddTableCell(PdfPTable table, string text, Font font, BaseColor backgroundColor) + { + var cell = new PdfPCell(new Phrase(text, font)) + { + BackgroundColor = backgroundColor, + Padding = 8, + Border = Rectangle.BOX, + BorderColor = new BaseColor(211, 211, 211), + BorderWidth = 0.5f + }; + table.AddCell(cell); + } + } +} diff --git a/Vpassbackend/Vpassbackend.csproj b/Vpassbackend/Vpassbackend.csproj index 72d96f7..8e4ffb0 100644 --- a/Vpassbackend/Vpassbackend.csproj +++ b/Vpassbackend/Vpassbackend.csproj @@ -8,6 +8,7 @@ + diff --git a/Vpassbackend/appsettings.json b/Vpassbackend/appsettings.json index 009bc56..4a6b88e 100644 --- a/Vpassbackend/appsettings.json +++ b/Vpassbackend/appsettings.json @@ -1,6 +1,6 @@ { "ConnectionStrings": { - "DefaultConnection": "Server=DESKTOP-F8C2NUA\\SQLEXPRESS;Connect Timeout=30;Database=VehiclePassportAppNew2;Trusted_Connection=True;TrustServerCertificate=True;" + "DefaultConnection": "Server=THISHU\\SQLEXPRESS02;Connect Timeout=120;Database=VehiclePassportAppTesting123;Trusted_Connection=True;TrustServerCertificate=True;Command Timeout=300;" }, "Jwt": { diff --git a/Vpassbackend/bin/Debug/net8.0/Azure.Core.dll b/Vpassbackend/bin/Debug/net8.0/Azure.Core.dll deleted file mode 100644 index d3fa20b..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Azure.Core.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Azure.Identity.dll b/Vpassbackend/bin/Debug/net8.0/Azure.Identity.dll deleted file mode 100644 index aab6832..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Azure.Identity.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/BCrypt.Net-Next.dll b/Vpassbackend/bin/Debug/net8.0/BCrypt.Net-Next.dll deleted file mode 100644 index 42d9082..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/BCrypt.Net-Next.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Examples/add-service-history.json b/Vpassbackend/bin/Debug/net8.0/Examples/add-service-history.json deleted file mode 100644 index e69de29..0000000 diff --git a/Vpassbackend/bin/Debug/net8.0/Examples/add-unverified-service-history.json b/Vpassbackend/bin/Debug/net8.0/Examples/add-unverified-service-history.json deleted file mode 100644 index b259d40..0000000 --- a/Vpassbackend/bin/Debug/net8.0/Examples/add-unverified-service-history.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "serviceType": "Oil Change", - "description": "Oil change at external service provider", - "cost": 39.99, - "serviceDate": "2025-07-01T14:00:00", - "mileage": 24500, - "externalServiceCenterName": "QuickLube Auto Service" -} diff --git a/Vpassbackend/bin/Debug/net8.0/Examples/add-verified-service-history.json b/Vpassbackend/bin/Debug/net8.0/Examples/add-verified-service-history.json deleted file mode 100644 index 45b8c1a..0000000 --- a/Vpassbackend/bin/Debug/net8.0/Examples/add-verified-service-history.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "serviceType": "Oil Change", - "description": "Regular oil change and filter replacement", - "cost": 45.99, - "serviceCenterId": 1, - "servicedByUserId": 1, - "serviceDate": "2025-07-09T10:30:00", - "mileage": 25000 -} diff --git a/Vpassbackend/bin/Debug/net8.0/Humanizer.dll b/Vpassbackend/bin/Debug/net8.0/Humanizer.dll deleted file mode 100644 index c9a7ef8..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Humanizer.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll deleted file mode 100644 index a8988fa..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll deleted file mode 100644 index 99df4e2..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index fe6ba4c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll deleted file mode 100644 index dc218f9..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index 412e7ed..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll deleted file mode 100644 index 8dec441..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll deleted file mode 100644 index 79e9046..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 85903b0..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index 179467b..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll deleted file mode 100644 index d5da5f1..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index 91e0432..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll deleted file mode 100644 index cf8f534..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index 08b195d..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll deleted file mode 100644 index 077b1b6..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 81ed3de..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index bd71a2b..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll deleted file mode 100644 index 8905537..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index f9d1dc6..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll deleted file mode 100644 index 35905b6..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Options.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Options.dll deleted file mode 100644 index a7b3f21..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll deleted file mode 100644 index 9a7cadb..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Identity.Client.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Identity.Client.dll deleted file mode 100644 index 73873e5..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Identity.Client.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll deleted file mode 100644 index 32aad0c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll deleted file mode 100644 index 109d630..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll deleted file mode 100644 index a787cc1..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll deleted file mode 100644 index fed943a..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll deleted file mode 100644 index da9cab0..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll deleted file mode 100644 index d9cf85c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.OpenApi.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.OpenApi.dll deleted file mode 100644 index 5d65717..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.OpenApi.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll deleted file mode 100644 index ddeaa86..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll b/Vpassbackend/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 3ab5850..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Mono.TextTemplating.dll b/Vpassbackend/bin/Debug/net8.0/Mono.TextTemplating.dll deleted file mode 100644 index d5a4b3c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Mono.TextTemplating.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/Vpassbackend/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll deleted file mode 100644 index 53296a6..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/Vpassbackend/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll deleted file mode 100644 index 3d84473..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/Vpassbackend/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll deleted file mode 100644 index 3e8fa7a..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.ClientModel.dll b/Vpassbackend/bin/Debug/net8.0/System.ClientModel.dll deleted file mode 100644 index 00a3380..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.ClientModel.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.CodeDom.dll b/Vpassbackend/bin/Debug/net8.0/System.CodeDom.dll deleted file mode 100644 index 3128b6a..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.CodeDom.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Composition.AttributedModel.dll b/Vpassbackend/bin/Debug/net8.0/System.Composition.AttributedModel.dll deleted file mode 100644 index d37283b..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Composition.AttributedModel.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Composition.Convention.dll b/Vpassbackend/bin/Debug/net8.0/System.Composition.Convention.dll deleted file mode 100644 index b6fa4ab..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Composition.Convention.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Composition.Hosting.dll b/Vpassbackend/bin/Debug/net8.0/System.Composition.Hosting.dll deleted file mode 100644 index c67f1c0..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Composition.Hosting.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Composition.Runtime.dll b/Vpassbackend/bin/Debug/net8.0/System.Composition.Runtime.dll deleted file mode 100644 index 2a4b38c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Composition.Runtime.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Composition.TypedParts.dll b/Vpassbackend/bin/Debug/net8.0/System.Composition.TypedParts.dll deleted file mode 100644 index 7c0c780..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Composition.TypedParts.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll b/Vpassbackend/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index 14f8ef6..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Drawing.Common.dll b/Vpassbackend/bin/Debug/net8.0/System.Drawing.Common.dll deleted file mode 100644 index be6915e..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Drawing.Common.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Formats.Asn1.dll b/Vpassbackend/bin/Debug/net8.0/System.Formats.Asn1.dll deleted file mode 100644 index 3481a18..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Formats.Asn1.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll b/Vpassbackend/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll deleted file mode 100644 index 19dc739..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Memory.Data.dll b/Vpassbackend/bin/Debug/net8.0/System.Memory.Data.dll deleted file mode 100644 index 6f2a3e0..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Memory.Data.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Runtime.Caching.dll b/Vpassbackend/bin/Debug/net8.0/System.Runtime.Caching.dll deleted file mode 100644 index 14826eb..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll b/Vpassbackend/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 1ba8770..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Security.Permissions.dll b/Vpassbackend/bin/Debug/net8.0/System.Security.Permissions.dll deleted file mode 100644 index 39dd4df..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Security.Permissions.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/System.Windows.Extensions.dll b/Vpassbackend/bin/Debug/net8.0/System.Windows.Extensions.dll deleted file mode 100644 index c3e8844..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Vpassbackend.deps.json b/Vpassbackend/bin/Debug/net8.0/Vpassbackend.deps.json deleted file mode 100644 index 5670eac..0000000 --- a/Vpassbackend/bin/Debug/net8.0/Vpassbackend.deps.json +++ /dev/null @@ -1,1537 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v8.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v8.0": { - "Vpassbackend/1.0.0": { - "dependencies": { - "BCrypt.Net-Next": "4.0.3", - "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.18", - "Microsoft.AspNetCore.OpenApi": "8.0.8", - "Microsoft.EntityFrameworkCore.Design": "8.0.18", - "Microsoft.EntityFrameworkCore.SqlServer": "8.0.17", - "Microsoft.EntityFrameworkCore.Tools": "8.0.18", - "Swashbuckle.AspNetCore": "8.1.4" - }, - "runtime": { - "Vpassbackend.dll": {} - } - }, - "Azure.Core/1.38.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "System.ClientModel": "1.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.1", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "4.7.2", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/net6.0/Azure.Core.dll": { - "assemblyVersion": "1.38.0.0", - "fileVersion": "1.3800.24.12602" - } - } - }, - "Azure.Identity/1.11.4": { - "dependencies": { - "Azure.Core": "1.38.0", - "Microsoft.Identity.Client": "4.61.3", - "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", - "System.Memory": "4.5.4", - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Text.Json": "4.7.2", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "assemblyVersion": "1.11.4.0", - "fileVersion": "1.1100.424.31005" - } - } - }, - "BCrypt.Net-Next/4.0.3": { - "runtime": { - "lib/net6.0/BCrypt.Net-Next.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.0.3.0" - } - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.18": { - "dependencies": { - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2" - }, - "runtime": { - "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { - "assemblyVersion": "8.0.18.0", - "fileVersion": "8.0.1825.31706" - } - } - }, - "Microsoft.AspNetCore.OpenApi/8.0.8": { - "dependencies": { - "Microsoft.OpenApi": "1.6.23" - }, - "runtime": { - "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "8.0.8.0", - "fileVersion": "8.0.824.36908" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, - "Microsoft.CodeAnalysis.Common/4.5.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "6.0.0", - "System.Reflection.Metadata": "6.0.1", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.5.0.0", - "fileVersion": "4.500.23.10905" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.5.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.5.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.5.0.0", - "fileVersion": "4.500.23.10905" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "4.5.0", - "Microsoft.CodeAnalysis.Common": "4.5.0", - "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "assemblyVersion": "4.5.0.0", - "fileVersion": "4.500.23.10905" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "4.5.0", - "System.Composition": "6.0.0", - "System.IO.Pipelines": "6.0.3", - "System.Threading.Channels": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "assemblyVersion": "4.5.0.0", - "fileVersion": "4.500.23.10905" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Data.SqlClient/5.1.6": { - "dependencies": { - "Azure.Identity": "1.11.4", - "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1", - "Microsoft.Identity.Client": "4.61.3", - "Microsoft.IdentityModel.JsonWebTokens": "7.1.2", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2", - "Microsoft.SqlServer.Server": "1.0.0", - "System.Configuration.ConfigurationManager": "6.0.1", - "System.Diagnostics.DiagnosticSource": "6.0.1", - "System.Runtime.Caching": "6.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.16.24240.5" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.16.24240.5" - }, - "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.16.24240.5" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "5.1.1.0" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "5.1.1.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "5.1.1.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "5.1.1.0" - } - } - }, - "Microsoft.EntityFrameworkCore/8.0.18": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.18", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.18", - "Microsoft.Extensions.Caching.Memory": "8.0.1", - "Microsoft.Extensions.Logging": "8.0.1" - }, - "runtime": { - "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "8.0.18.0", - "fileVersion": "8.0.1825.31203" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/8.0.18": { - "runtime": { - "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "8.0.18.0", - "fileVersion": "8.0.1825.31203" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/8.0.18": {}, - "Microsoft.EntityFrameworkCore.Design/8.0.18": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.18", - "Microsoft.Extensions.DependencyModel": "8.0.2", - "Mono.TextTemplating": "2.2.1" - }, - "runtime": { - "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { - "assemblyVersion": "8.0.18.0", - "fileVersion": "8.0.1825.31203" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/8.0.18": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.18", - "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "8.0.18.0", - "fileVersion": "8.0.1825.31203" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/8.0.17": { - "dependencies": { - "Microsoft.Data.SqlClient": "5.1.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.18", - "System.Formats.Asn1": "8.0.2" - }, - "runtime": { - "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "8.0.17.0", - "fileVersion": "8.0.1725.26604" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/8.0.18": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "8.0.18" - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, - "Microsoft.Extensions.Caching.Abstractions/8.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "8.0.0" - } - }, - "Microsoft.Extensions.Caching.Memory/8.0.1": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", - "Microsoft.Extensions.Logging.Abstractions": "8.0.2", - "Microsoft.Extensions.Options": "8.0.2", - "Microsoft.Extensions.Primitives": "8.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.1024.46610" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "8.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection/8.0.1": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.1024.46610" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.1024.46610" - } - } - }, - "Microsoft.Extensions.DependencyModel/8.0.2": { - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "8.0.0.2", - "fileVersion": "8.0.1024.46610" - } - } - }, - "Microsoft.Extensions.Logging/8.0.1": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.1", - "Microsoft.Extensions.Logging.Abstractions": "8.0.2", - "Microsoft.Extensions.Options": "8.0.2" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.1024.46610" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.2": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.1024.46610" - } - } - }, - "Microsoft.Extensions.Options/8.0.2": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", - "Microsoft.Extensions.Primitives": "8.0.0" - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.224.6711" - } - } - }, - "Microsoft.Extensions.Primitives/8.0.0": {}, - "Microsoft.Identity.Client/4.61.3": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "7.1.2", - "System.Diagnostics.DiagnosticSource": "6.0.1" - }, - "runtime": { - "lib/net6.0/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.61.3.0", - "fileVersion": "4.61.3.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { - "dependencies": { - "Microsoft.Identity.Client": "4.61.3", - "System.Security.Cryptography.ProtectedData": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "4.61.3.0", - "fileVersion": "4.61.3.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/7.1.2": { - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "7.1.2.0", - "fileVersion": "7.1.2.41121" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/7.1.2": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "7.1.2" - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "7.1.2.0", - "fileVersion": "7.1.2.41121" - } - } - }, - "Microsoft.IdentityModel.Logging/7.1.2": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "7.1.2" - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "7.1.2.0", - "fileVersion": "7.1.2.41121" - } - } - }, - "Microsoft.IdentityModel.Protocols/7.1.2": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "7.1.2", - "Microsoft.IdentityModel.Tokens": "7.1.2" - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "7.1.2.0", - "fileVersion": "7.1.2.41121" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "7.1.2", - "System.IdentityModel.Tokens.Jwt": "7.1.2" - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "7.1.2.0", - "fileVersion": "7.1.2.41121" - } - } - }, - "Microsoft.IdentityModel.Tokens/7.1.2": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "7.1.2" - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "7.1.2.0", - "fileVersion": "7.1.2.41121" - } - } - }, - "Microsoft.OpenApi/1.6.23": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.6.23.0", - "fileVersion": "1.6.23.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "dependencies": { - "System.CodeDom": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Mono.TextTemplating.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.1.1" - } - } - }, - "Swashbuckle.AspNetCore/8.1.4": { - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "8.1.4", - "Swashbuckle.AspNetCore.SwaggerGen": "8.1.4", - "Swashbuckle.AspNetCore.SwaggerUI": "8.1.4" - } - }, - "Swashbuckle.AspNetCore.Swagger/8.1.4": { - "dependencies": { - "Microsoft.OpenApi": "1.6.23" - }, - "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "8.1.4.0", - "fileVersion": "8.1.4.1479" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/8.1.4": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "8.1.4" - }, - "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "8.1.4.0", - "fileVersion": "8.1.4.1479" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/8.1.4": { - "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "8.1.4.0", - "fileVersion": "8.1.4.1479" - } - } - }, - "System.ClientModel/1.0.0": { - "dependencies": { - "System.Memory.Data": "1.0.2", - "System.Text.Json": "4.7.2" - }, - "runtime": { - "lib/net6.0/System.ClientModel.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.24.5302" - } - } - }, - "System.CodeDom/4.4.0": { - "runtime": { - "lib/netstandard2.0/System.CodeDom.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.6.25519.3" - } - } - }, - "System.Collections.Immutable/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Composition/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - } - }, - "System.Composition.AttributedModel/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Convention/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Hosting/6.0.0": { - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.Runtime/6.0.0": { - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Composition.TypedParts/6.0.0": { - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.1": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.922.41905" - } - } - }, - "System.Diagnostics.DiagnosticSource/6.0.1": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Formats.Asn1/8.0.2": { - "runtime": { - "lib/net8.0/System.Formats.Asn1.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.0.1325.6609" - } - } - }, - "System.IdentityModel.Tokens.Jwt/7.1.2": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "7.1.2", - "Microsoft.IdentityModel.Tokens": "7.1.2" - }, - "runtime": { - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "7.1.2.0", - "fileVersion": "7.1.2.41121" - } - } - }, - "System.IO.Pipelines/6.0.3": {}, - "System.Memory/4.5.4": {}, - "System.Memory.Data/1.0.2": { - "dependencies": { - "System.Text.Encodings.Web": "6.0.0", - "System.Text.Json": "4.7.2" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "assemblyVersion": "1.0.2.0", - "fileVersion": "1.0.221.20802" - } - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.Reflection.Metadata/6.0.1": { - "dependencies": { - "System.Collections.Immutable": "6.0.0" - } - }, - "System.Runtime.Caching/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.1" - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Cng/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "8.0.2" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Json/4.7.2": {}, - "System.Threading.Channels/6.0.0": {}, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Windows.Extensions/6.0.0": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - } - } - }, - "libraries": { - "Vpassbackend/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Azure.Core/1.38.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", - "path": "azure.core/1.38.0", - "hashPath": "azure.core.1.38.0.nupkg.sha512" - }, - "Azure.Identity/1.11.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==", - "path": "azure.identity/1.11.4", - "hashPath": "azure.identity.1.11.4.nupkg.sha512" - }, - "BCrypt.Net-Next/4.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W+U9WvmZQgi5cX6FS5GDtDoPzUCV4LkBLkywq/kRZhuDwcbavOzcDAr3LXJFqHUi952Yj3LEYoWW0jbEUQChsA==", - "path": "bcrypt.net-next/4.0.3", - "hashPath": "bcrypt.net-next.4.0.3.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.18": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ty49uva5oIFa7nOkeL+6TGRU7DQohBaEGs+QcGoGSXq4d7MZnNueLte0HFa9WHvjZUDfJSQ1PVmWkFeIYS1w4Q==", - "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.18", - "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.8.0.18.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/8.0.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wNHhohqP8rmsQ4UhKbd6jZMD6l+2Q/+DvRBT0Cgqeuglr13aF6sSJWicZKCIhZAUXzuhkdwtHVc95MlPlFk0dA==", - "path": "microsoft.aspnetcore.openapi/8.0.8", - "hashPath": "microsoft.aspnetcore.openapi.8.0.8.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==", - "path": "microsoft.codeanalysis.common/4.5.0", - "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==", - "path": "microsoft.codeanalysis.csharp/4.5.0", - "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==", - "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0", - "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==", - "path": "microsoft.codeanalysis.workspaces.common/4.5.0", - "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/5.1.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+pz7gIPh5ydsBcQvivt4R98PwJXer86fyQBBToIBLxZ5kuhW4N13Ijz87s9WpuPtF1vh4JesYCgpDPAOgkMhdg==", - "path": "microsoft.data.sqlclient/5.1.6", - "hashPath": "microsoft.data.sqlclient.5.1.6.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==", - "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/8.0.18": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LBc07vlgPxEXmjF0Kgn1S0mip3KLDPVD1OQOFu+4Mfpg1Z8OPMJ82MVCkqek1Ex2WeCzVGbNI9nRXcepHB+48g==", - "path": "microsoft.entityframeworkcore/8.0.18", - "hashPath": "microsoft.entityframeworkcore.8.0.18.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/8.0.18": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aQGpxj0/RKXhSqDFbWENQgOg6WQH3z5Dezu3VBXaTCBHE6hAWQIZmmqdpO1k+lkANsoCSwPJZ4iFRqPPZXBXzg==", - "path": "microsoft.entityframeworkcore.abstractions/8.0.18", - "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.18.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/8.0.18": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aYkyWRkb+o9++mtIWn5XSYPVND5N9mFFfvdmBX1s6kCss6XTaZsFXf8QjvaiXAcGblp/HoYzS5lusx0ZqeFxzQ==", - "path": "microsoft.entityframeworkcore.analyzers/8.0.18", - "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.18.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/8.0.18": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ONya9HGDtULSfoxld0ir12lxOxX2zp4TRYp6pO3wwXtWSYK3bU1kUSZMIJdeewznYcOfpCJVuSJVch6Y5xtIIQ==", - "path": "microsoft.entityframeworkcore.design/8.0.18", - "hashPath": "microsoft.entityframeworkcore.design.8.0.18.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/8.0.18": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SL067ITd6QfDF9wNsNtGm3fROpnv3SNrOY3Fjb+efEUnKn5NI0sUitrtpUim+t1DtCJIs7qgmyCPdD3zjSt4Xw==", - "path": "microsoft.entityframeworkcore.relational/8.0.18", - "hashPath": "microsoft.entityframeworkcore.relational.8.0.18.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/8.0.17": { - "type": "package", - "serviceable": true, - "sha512": "sha512-082YhxI+KZFhl1AFLOxasYjQGQsiFJKxqcUPWobBpoDjE/XCueJs0Kz+XengUGQZSLrCcCCnwlOG3kiBXsTJcw==", - "path": "microsoft.entityframeworkcore.sqlserver/8.0.17", - "hashPath": "microsoft.entityframeworkcore.sqlserver.8.0.17.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Tools/8.0.18": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NjAp3CYIbaH6esFt2knQdib+it1mL17v6wtKGuhNpj2x5LqHCEIa53zcH3HTq+jzOBsUWu2chxsBXHo5d2ff0g==", - "path": "microsoft.entityframeworkcore.tools/8.0.18", - "hashPath": "microsoft.entityframeworkcore.tools.8.0.18.nupkg.sha512" - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", - "path": "microsoft.extensions.apidescription.server/6.0.5", - "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", - "path": "microsoft.extensions.caching.abstractions/8.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", - "path": "microsoft.extensions.caching.memory/8.0.1", - "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", - "path": "microsoft.extensions.configuration.abstractions/8.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", - "path": "microsoft.extensions.dependencyinjection/8.0.1", - "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/8.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", - "path": "microsoft.extensions.dependencymodel/8.0.2", - "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/8.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", - "path": "microsoft.extensions.logging/8.0.1", - "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", - "path": "microsoft.extensions.logging.abstractions/8.0.2", - "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" - }, - "Microsoft.Extensions.Options/8.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", - "path": "microsoft.extensions.options/8.0.2", - "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/8.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", - "path": "microsoft.extensions.primitives/8.0.0", - "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.61.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==", - "path": "microsoft.identity.client/4.61.3", - "hashPath": "microsoft.identity.client.4.61.3.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==", - "path": "microsoft.identity.client.extensions.msal/4.61.3", - "hashPath": "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/7.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-33eTIA2uO/L9utJjZWbKsMSVsQf7F8vtd6q5mQX7ZJzNvCpci5fleD6AeANGlbbb7WX7XKxq9+Dkb5e3GNDrmQ==", - "path": "microsoft.identitymodel.abstractions/7.1.2", - "hashPath": "microsoft.identitymodel.abstractions.7.1.2.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/7.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cloLGeZolXbCJhJBc5OC05uhrdhdPL6MWHuVUnkkUvPDeK7HkwThBaLZ1XjBQVk9YhxXE2OvHXnKi0PLleXxDg==", - "path": "microsoft.identitymodel.jsonwebtokens/7.1.2", - "hashPath": "microsoft.identitymodel.jsonwebtokens.7.1.2.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/7.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YCxBt2EeJP8fcXk9desChkWI+0vFqFLvBwrz5hBMsoh0KJE6BC66DnzkdzkJNqMltLromc52dkdT206jJ38cTw==", - "path": "microsoft.identitymodel.logging/7.1.2", - "hashPath": "microsoft.identitymodel.logging.7.1.2.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/7.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==", - "path": "microsoft.identitymodel.protocols/7.1.2", - "hashPath": "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==", - "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/7.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oICJMqr3aNEDZOwnH5SK49bR6Z4aX0zEAnOLuhloumOSuqnNq+GWBdQyrgILnlcT5xj09xKCP/7Y7gJYB+ls/g==", - "path": "microsoft.identitymodel.tokens/7.1.2", - "hashPath": "microsoft.identitymodel.tokens.7.1.2.nupkg.sha512" - }, - "Microsoft.OpenApi/1.6.23": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==", - "path": "microsoft.openapi/1.6.23", - "hashPath": "microsoft.openapi.1.6.23.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "path": "mono.texttemplating/2.2.1", - "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/8.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qYk8VHyvs6wML+KXtjyCgS9Aj18mcm0ZtnJeNCTlj/DYQ7A3pfLIztQgLuZS/LEMYsrTo1lSKR3IIZ5/HzVCWA==", - "path": "swashbuckle.aspnetcore/8.1.4", - "hashPath": "swashbuckle.aspnetcore.8.1.4.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/8.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w83aYEBJYNa6ZYomziwZWwXhqQPLKhZH0n8MzqqNhF1ElCGBKm71kd7W6pgIr/yu0i6ymQzrZUFSZLdvH1kY5w==", - "path": "swashbuckle.aspnetcore.swagger/8.1.4", - "hashPath": "swashbuckle.aspnetcore.swagger.8.1.4.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/8.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aBwO2MF1HHAaWgdBwX8tlSqxycOKTKmCT6pEpb0oSY1pn7mUdmzJvHZA0HxWx9nfmKP0eOGQcLC9ZnN/MuehRQ==", - "path": "swashbuckle.aspnetcore.swaggergen/8.1.4", - "hashPath": "swashbuckle.aspnetcore.swaggergen.8.1.4.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/8.1.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mTn6OwB43ETrN6IgAZd7ojWGhTwBZ98LT3QwbAn6Gg3wJStQV4znU0mWiHaKFlD/+Qhj1uhAUOa52rmd6xmbzg==", - "path": "swashbuckle.aspnetcore.swaggerui/8.1.4", - "hashPath": "swashbuckle.aspnetcore.swaggerui.8.1.4.nupkg.sha512" - }, - "System.ClientModel/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", - "path": "system.clientmodel/1.0.0", - "hashPath": "system.clientmodel.1.0.0.nupkg.sha512" - }, - "System.CodeDom/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "path": "system.codedom/4.4.0", - "hashPath": "system.codedom.4.4.0.nupkg.sha512" - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "path": "system.collections.immutable/6.0.0", - "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" - }, - "System.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", - "path": "system.composition/6.0.0", - "hashPath": "system.composition.6.0.0.nupkg.sha512" - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", - "path": "system.composition.attributedmodel/6.0.0", - "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", - "path": "system.composition.convention/6.0.0", - "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", - "path": "system.composition.hosting/6.0.0", - "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", - "path": "system.composition.runtime/6.0.0", - "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", - "path": "system.composition.typedparts/6.0.0", - "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", - "path": "system.configuration.configurationmanager/6.0.1", - "hashPath": "system.configuration.configurationmanager.6.0.1.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==", - "path": "system.diagnostics.diagnosticsource/6.0.1", - "hashPath": "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Formats.Asn1/8.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yUsFqNGa7tbwm5QOOnOR3VSoh8a0Yki39mTbhOnErdbg8hVSFtrK0EXerj286PXcegiF1LkE7lL++qqMZW5jIQ==", - "path": "system.formats.asn1/8.0.2", - "hashPath": "system.formats.asn1.8.0.2.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/7.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Thhbe1peAmtSBFaV/ohtykXiZSOkx59Da44hvtWfIMFofDA3M3LaVyjstACf2rKGn4dEDR2cUpRAZ0Xs/zB+7Q==", - "path": "system.identitymodel.tokens.jwt/7.1.2", - "hashPath": "system.identitymodel.tokens.jwt.7.1.2.nupkg.sha512" - }, - "System.IO.Pipelines/6.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", - "path": "system.io.pipelines/6.0.3", - "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "path": "system.memory.data/1.0.2", - "hashPath": "system.memory.data.1.0.2.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.Reflection.Metadata/6.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==", - "path": "system.reflection.metadata/6.0.1", - "hashPath": "system.reflection.metadata.6.0.1.nupkg.sha512" - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", - "path": "system.runtime.caching/6.0.0", - "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "path": "system.security.cryptography.cng/5.0.0", - "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Text.Json/4.7.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", - "path": "system.text.json/4.7.2", - "hashPath": "system.text.json.4.7.2.nupkg.sha512" - }, - "System.Threading.Channels/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==", - "path": "system.threading.channels/6.0.0", - "hashPath": "system.threading.channels.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/Vpassbackend/bin/Debug/net8.0/Vpassbackend.dll b/Vpassbackend/bin/Debug/net8.0/Vpassbackend.dll deleted file mode 100644 index 41ab911..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Vpassbackend.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Vpassbackend.exe b/Vpassbackend/bin/Debug/net8.0/Vpassbackend.exe deleted file mode 100644 index 2e4d36c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Vpassbackend.exe and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Vpassbackend.pdb b/Vpassbackend/bin/Debug/net8.0/Vpassbackend.pdb deleted file mode 100644 index 8e9caa4..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/Vpassbackend.pdb and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/Vpassbackend.runtimeconfig.json b/Vpassbackend/bin/Debug/net8.0/Vpassbackend.runtimeconfig.json deleted file mode 100644 index b8a4a9c..0000000 --- a/Vpassbackend/bin/Debug/net8.0/Vpassbackend.runtimeconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net8.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "8.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "8.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/Vpassbackend/bin/Debug/net8.0/appsettings.Development.json b/Vpassbackend/bin/Debug/net8.0/appsettings.Development.json deleted file mode 100644 index 0c208ae..0000000 --- a/Vpassbackend/bin/Debug/net8.0/appsettings.Development.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/Vpassbackend/bin/Debug/net8.0/appsettings.json b/Vpassbackend/bin/Debug/net8.0/appsettings.json deleted file mode 100644 index 009bc56..0000000 --- a/Vpassbackend/bin/Debug/net8.0/appsettings.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "ConnectionStrings": { - "DefaultConnection": "Server=DESKTOP-F8C2NUA\\SQLEXPRESS;Connect Timeout=30;Database=VehiclePassportAppNew2;Trusted_Connection=True;TrustServerCertificate=True;" - }, - - "Jwt": { - "Key": "Jd92kLq8Yz7rMjvOaTm1Xq9FbA6wKe6V", - "Issuer": "WebApplication2", - "Audience": "WebApplication2Client" -}, - -"Smtp": { - "Host": "smtp.gmail.com", - "Port": "587", - "Username": "navijaye@gmail.com", - "Password": "pabk oixr ggcv ddtx", - "FromEmail": "navijaye@gmail.com" -} -, - - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*" -} diff --git a/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index b08ba21..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index eba2a5a..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index ff203e1..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index fe89036..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 3dda417..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4d3bd0a..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index c41bb1f..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 05845f2..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 1e5038d..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 456ac85..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 7bb3187..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 01edef3..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index de36d31..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 71d6443..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 23107b9..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 291cf9b..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ef0d337..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index f266330..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6affe5c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 263bd04..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index a94da35..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index c94e8e6..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 6e0e837..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 212267a..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 1fae94d..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index b2e573c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index fdbe6ff..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 5fee24c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 9533b36..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index fa25298..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 1297d58..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8af36a3..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 197797b..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 0fd342c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index c09c2ab..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index d6eaab6..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index ecfe483..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index e9133a5..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index baa7776..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 74714d8..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll deleted file mode 100644 index 206341f..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 9e26473..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index c171a72..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index 3f2b452..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index 8fde16b..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll deleted file mode 100644 index 93fb631..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll deleted file mode 100644 index ff20fab..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 66af198..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 7c9e87b..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll deleted file mode 100644 index bdca76d..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 332dbfa..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index 69f0d1b..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 2fbf86e..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4c57b04..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index b551e37..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8758fff..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index de4fe51..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 67b261c..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index c6b8d86..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index a14ec60..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll deleted file mode 100644 index 2d39791..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 86802cf..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll deleted file mode 100644 index 691a8fa..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ diff --git a/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e8e4ee0..0000000 Binary files a/Vpassbackend/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/Vpassbackend/obj/Backend.csproj.EntityFrameworkCore.targets b/Vpassbackend/obj/Backend.csproj.EntityFrameworkCore.targets deleted file mode 100644 index 7d6485d..0000000 --- a/Vpassbackend/obj/Backend.csproj.EntityFrameworkCore.targets +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Vpassbackend/obj/Backend.csproj.nuget.dgspec.json b/Vpassbackend/obj/Backend.csproj.nuget.dgspec.json deleted file mode 100644 index 72b222f..0000000 --- a/Vpassbackend/obj/Backend.csproj.nuget.dgspec.json +++ /dev/null @@ -1,113 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\sprint588\\Github\\vp_backend\\backend\\backend\\Backend.csproj": {} - }, - "projects": { - "D:\\sprint588\\Github\\vp_backend\\backend\\backend\\Backend.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\sprint588\\Github\\vp_backend\\backend\\backend\\Backend.csproj", - "projectName": "Backend", - "projectPath": "D:\\sprint588\\Github\\vp_backend\\backend\\backend\\Backend.csproj", - "packagesPath": "C:\\Users\\acer\\.nuget\\packages\\", - "outputPath": "D:\\sprint588\\Github\\vp_backend\\backend\\backend\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\acer\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net8.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - } - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "dependencies": { - "AutoMapper.Extensions.Microsoft.DependencyInjection": { - "target": "Package", - "version": "[12.0.1, )" - }, - "BCrypt.Net-Next": { - "target": "Package", - "version": "[4.0.3, )" - }, - "Microsoft.AspNetCore.Authentication.JwtBearer": { - "target": "Package", - "version": "[8.0.0, )" - }, - "Microsoft.AspNetCore.Authorization": { - "target": "Package", - "version": "[8.0.0, )" - }, - "Microsoft.AspNetCore.OpenApi": { - "target": "Package", - "version": "[8.0.8, )" - }, - "Microsoft.Data.SqlClient": { - "target": "Package", - "version": "[6.0.2, )" - }, - "Microsoft.EntityFrameworkCore": { - "target": "Package", - "version": "[8.0.0, )" - }, - "Microsoft.EntityFrameworkCore.Design": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[8.0.0, )" - }, - "Microsoft.EntityFrameworkCore.SqlServer": { - "target": "Package", - "version": "[8.0.0, )" - }, - "Swashbuckle.AspNetCore": { - "target": "Package", - "version": "[6.4.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48", - "net481" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.411/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Vpassbackend/obj/Backend.csproj.nuget.g.props b/Vpassbackend/obj/Backend.csproj.nuget.g.props deleted file mode 100644 index 858a0a0..0000000 --- a/Vpassbackend/obj/Backend.csproj.nuget.g.props +++ /dev/null @@ -1,25 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\acer\.nuget\packages\ - PackageReference - 6.11.1 - - - - - - - - - - - - C:\Users\acer\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 - C:\Users\acer\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3 - - \ No newline at end of file diff --git a/Vpassbackend/obj/Backend.csproj.nuget.g.targets b/Vpassbackend/obj/Backend.csproj.nuget.g.targets deleted file mode 100644 index ac8b274..0000000 --- a/Vpassbackend/obj/Backend.csproj.nuget.g.targets +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/Vpassbackend/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Vpassbackend/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs deleted file mode 100644 index 2217181..0000000 --- a/Vpassbackend/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Vpassbackend/obj/Debug/net8.0/ApiEndpoints.json b/Vpassbackend/obj/Debug/net8.0/ApiEndpoints.json deleted file mode 100644 index 8795178..0000000 --- a/Vpassbackend/obj/Debug/net8.0/ApiEndpoints.json +++ /dev/null @@ -1,21 +0,0 @@ -[ - { - "ContainingType": "Program\u002B\u003C\u003Ec__DisplayClass0_0", - "Method": "\u003C\u003CMain\u003E$\u003Eb__0", - "RelativePath": "weatherforecast", - "HttpMethod": "GET", - "IsController": false, - "Order": 0, - "Parameters": [], - "ReturnTypes": [ - { - "Type": "WeatherForecast[]", - "MediaTypes": [ - "application/json" - ], - "StatusCode": 200 - } - ], - "EndpointName": "GetWeatherForecast" - } -] \ No newline at end of file diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.AssemblyInfo.cs b/Vpassbackend/obj/Debug/net8.0/Backend.AssemblyInfo.cs deleted file mode 100644 index 3417311..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Backend.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("Backend")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1d1931d92672b1d3174eaaa553c4d571a020a8e7")] -[assembly: System.Reflection.AssemblyProductAttribute("Backend")] -[assembly: System.Reflection.AssemblyTitleAttribute("Backend")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.AssemblyInfoInputs.cache b/Vpassbackend/obj/Debug/net8.0/Backend.AssemblyInfoInputs.cache deleted file mode 100644 index 7004081..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Backend.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -7e209926c1b61ef0f4c9b06795871ce52a3097ea653100e8a2a0230b973597ec diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.GeneratedMSBuildEditorConfig.editorconfig b/Vpassbackend/obj/Debug/net8.0/Backend.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index e21de9e..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Backend.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,19 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = true -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Backend -build_property.RootNamespace = Backend -build_property.ProjectDir = D:\sprint588\Github\vp_backend\backend\backend\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.RazorLangVersion = 8.0 -build_property.SupportLocalizedComponentNames = -build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = D:\sprint588\Github\vp_backend\backend\backend -build_property._RazorSourceGeneratorDebug = diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.GlobalUsings.g.cs b/Vpassbackend/obj/Debug/net8.0/Backend.GlobalUsings.g.cs deleted file mode 100644 index 025530a..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Backend.GlobalUsings.g.cs +++ /dev/null @@ -1,17 +0,0 @@ -// -global using global::Microsoft.AspNetCore.Builder; -global using global::Microsoft.AspNetCore.Hosting; -global using global::Microsoft.AspNetCore.Http; -global using global::Microsoft.AspNetCore.Routing; -global using global::Microsoft.Extensions.Configuration; -global using global::Microsoft.Extensions.DependencyInjection; -global using global::Microsoft.Extensions.Hosting; -global using global::Microsoft.Extensions.Logging; -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Net.Http.Json; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.MvcApplicationPartsAssemblyInfo.cache b/Vpassbackend/obj/Debug/net8.0/Backend.MvcApplicationPartsAssemblyInfo.cache deleted file mode 100644 index e69de29..0000000 diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.MvcApplicationPartsAssemblyInfo.cs b/Vpassbackend/obj/Debug/net8.0/Backend.MvcApplicationPartsAssemblyInfo.cs deleted file mode 100644 index 7a8df11..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Backend.MvcApplicationPartsAssemblyInfo.cs +++ /dev/null @@ -1,17 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.assets.cache b/Vpassbackend/obj/Debug/net8.0/Backend.assets.cache deleted file mode 100644 index ebc3b14..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/Backend.assets.cache and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.csproj.AssemblyReference.cache b/Vpassbackend/obj/Debug/net8.0/Backend.csproj.AssemblyReference.cache deleted file mode 100644 index df3e4f5..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/Backend.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.csproj.BuildWithSkipAnalyzers b/Vpassbackend/obj/Debug/net8.0/Backend.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.csproj.CoreCompileInputs.cache b/Vpassbackend/obj/Debug/net8.0/Backend.csproj.CoreCompileInputs.cache deleted file mode 100644 index 073327c..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Backend.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -cd56ac671dd22a76779afe52a5334a7562348121cbb3645d7be7db87f4fc2263 diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.csproj.FileListAbsolute.txt b/Vpassbackend/obj/Debug/net8.0/Backend.csproj.FileListAbsolute.txt deleted file mode 100644 index 7e928f6..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Backend.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,186 +0,0 @@ -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\appsettings.Development.json -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\appsettings.json -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\Backend.exe -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\Backend.deps.json -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\Backend.runtimeconfig.json -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\Backend.dll -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\Backend.pdb -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\Microsoft.OpenApi.dll -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll -D:\NeonCoders\vp_backend\Backend\Backend\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.csproj.AssemblyReference.cache -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.GeneratedMSBuildEditorConfig.editorconfig -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.AssemblyInfoInputs.cache -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.AssemblyInfo.cs -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.csproj.CoreCompileInputs.cache -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.MvcApplicationPartsAssemblyInfo.cs -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.MvcApplicationPartsAssemblyInfo.cache -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\staticwebassets.build.json -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\staticwebassets.development.json -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\staticwebassets\msbuild.Backend.Microsoft.AspNetCore.StaticWebAssets.props -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\staticwebassets\msbuild.build.Backend.props -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.Backend.props -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.Backend.props -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\staticwebassets.pack.json -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\scopedcss\bundle\Backend.styles.css -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.csproj.Up2Date -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.dll -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\refint\Backend.dll -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.pdb -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\Backend.genruntimeconfig.cache -D:\NeonCoders\vp_backend\Backend\Backend\obj\Debug\net8.0\ref\Backend.dll -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.csproj.AssemblyReference.cache -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.GeneratedMSBuildEditorConfig.editorconfig -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.AssemblyInfoInputs.cache -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.AssemblyInfo.cs -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.csproj.CoreCompileInputs.cache -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.MvcApplicationPartsAssemblyInfo.cs -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.MvcApplicationPartsAssemblyInfo.cache -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.sourcelink.json -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.dll -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\refint\Backend.dll -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.pdb -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\appsettings.Development.json -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\appsettings.json -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Backend.exe -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Backend.deps.json -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Backend.runtimeconfig.json -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Backend.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Backend.pdb -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\AutoMapper.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Azure.Core.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Azure.Identity.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\BCrypt.Net-Next.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Humanizer.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.Bcl.Cryptography.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.SqlServer.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.Extensions.Options.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.Identity.Client.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.OpenApi.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Mono.TextTemplating.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.ClientModel.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.CodeDom.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.Composition.AttributedModel.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.Composition.Convention.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.Composition.Hosting.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.Composition.Runtime.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.Composition.TypedParts.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.Diagnostics.EventLog.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.Memory.Data.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.Security.Cryptography.Pkcs.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\cs\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\de\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\es\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\fr\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\it\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ja\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ko\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\pl\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\pt-BR\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\ru\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\tr\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\zh-Hans\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\zh-Hant\Microsoft.Data.SqlClient.resources.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\runtimes\unix\lib\net8.0\Microsoft.Data.SqlClient.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\runtimes\win\lib\net8.0\Microsoft.Data.SqlClient.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Diagnostics.EventLog.dll -D:\sprint588\Github\vp_backend\backend\backend\bin\Debug\net8.0\runtimes\win\lib\net8.0\System.Security.Cryptography.Pkcs.dll -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\staticwebassets.build.json -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\staticwebassets.development.json -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\staticwebassets\msbuild.Backend.Microsoft.AspNetCore.StaticWebAssets.props -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\staticwebassets\msbuild.build.Backend.props -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.Backend.props -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.Backend.props -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\staticwebassets.pack.json -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\scopedcss\bundle\Backend.styles.css -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.csproj.Up2Date -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\Backend.genruntimeconfig.cache -D:\sprint588\Github\vp_backend\backend\backend\obj\Debug\net8.0\ref\Backend.dll diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.csproj.Up2Date b/Vpassbackend/obj/Debug/net8.0/Backend.csproj.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.dll b/Vpassbackend/obj/Debug/net8.0/Backend.dll deleted file mode 100644 index 38bc098..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/Backend.dll and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.genruntimeconfig.cache b/Vpassbackend/obj/Debug/net8.0/Backend.genruntimeconfig.cache deleted file mode 100644 index 72dccca..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Backend.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -e4082315b457f6164c15b2a7fe60191bd6d0211a2593a96a6d44de8476629545 diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.pdb b/Vpassbackend/obj/Debug/net8.0/Backend.pdb deleted file mode 100644 index 131b3b0..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/Backend.pdb and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/Backend.sourcelink.json b/Vpassbackend/obj/Debug/net8.0/Backend.sourcelink.json deleted file mode 100644 index 26ff659..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Backend.sourcelink.json +++ /dev/null @@ -1 +0,0 @@ -{"documents":{"D:\\sprint588\\Github\\vp_backend\\*":"https://raw.githubusercontent.com/NeonCoders-UoM/vp_backend/1d1931d92672b1d3174eaaa553c4d571a020a8e7/*"}} \ No newline at end of file diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbac.3B05EFF0.Up2Date b/Vpassbackend/obj/Debug/net8.0/Vpassbac.3B05EFF0.Up2Date deleted file mode 100644 index e69de29..0000000 diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.AssemblyInfo.cs b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.AssemblyInfo.cs deleted file mode 100644 index c47e456..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.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("Vpassbackend")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9c6c061b38bb9ec8b170e872e36e360d60a970c1")] -[assembly: System.Reflection.AssemblyProductAttribute("Vpassbackend")] -[assembly: System.Reflection.AssemblyTitleAttribute("Vpassbackend")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.AssemblyInfoInputs.cache b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.AssemblyInfoInputs.cache deleted file mode 100644 index f30105b..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -2f7e583ca45a02a95edfdfb4fcc7d09d02ff31ad990d2bd497dc130841e71c79 diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.GeneratedMSBuildEditorConfig.editorconfig b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index b669497..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,19 +0,0 @@ -is_global = true -build_property.TargetFramework = net8.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = true -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Vpassbackend -build_property.RootNamespace = Vpassbackend -build_property.ProjectDir = D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\ -build_property.EnableComHosting = -build_property.EnableGeneratedComInterfaceComImportInterop = -build_property.RazorLangVersion = 8.0 -build_property.SupportLocalizedComponentNames = -build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend -build_property._RazorSourceGeneratorDebug = diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.GlobalUsings.g.cs b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.GlobalUsings.g.cs deleted file mode 100644 index 025530a..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.GlobalUsings.g.cs +++ /dev/null @@ -1,17 +0,0 @@ -// -global using global::Microsoft.AspNetCore.Builder; -global using global::Microsoft.AspNetCore.Hosting; -global using global::Microsoft.AspNetCore.Http; -global using global::Microsoft.AspNetCore.Routing; -global using global::Microsoft.Extensions.Configuration; -global using global::Microsoft.Extensions.DependencyInjection; -global using global::Microsoft.Extensions.Hosting; -global using global::Microsoft.Extensions.Logging; -global using global::System; -global using global::System.Collections.Generic; -global using global::System.IO; -global using global::System.Linq; -global using global::System.Net.Http; -global using global::System.Net.Http.Json; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.MvcApplicationPartsAssemblyInfo.cache b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.MvcApplicationPartsAssemblyInfo.cache deleted file mode 100644 index e69de29..0000000 diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.MvcApplicationPartsAssemblyInfo.cs b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.MvcApplicationPartsAssemblyInfo.cs deleted file mode 100644 index 7a8df11..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.MvcApplicationPartsAssemblyInfo.cs +++ /dev/null @@ -1,17 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.assets.cache b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.assets.cache deleted file mode 100644 index 972a98b..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.assets.cache and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.csproj.AssemblyReference.cache b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.csproj.AssemblyReference.cache deleted file mode 100644 index 46f8117..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.csproj.CoreCompileInputs.cache b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.csproj.CoreCompileInputs.cache deleted file mode 100644 index 9e740e8..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -e53de26089f394dfe6bb9c1d3679176f6c14d41451be2bd975b0b5b9c8a2babd diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.csproj.FileListAbsolute.txt b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.csproj.FileListAbsolute.txt deleted file mode 100644 index bf3b4f1..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,298 +0,0 @@ -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\appsettings.Development.json -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\appsettings.json -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Vpassbackend.exe -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Vpassbackend.deps.json -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Vpassbackend.runtimeconfig.json -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Vpassbackend.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Vpassbackend.pdb -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Azure.Core.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Azure.Identity.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\BCrypt.Net-Next.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Humanizer.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.SqlServer.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.Options.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Identity.Client.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.OpenApi.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Mono.TextTemplating.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.ClientModel.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.CodeDom.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Composition.AttributedModel.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Composition.Convention.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Composition.Hosting.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Composition.Runtime.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Composition.TypedParts.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Drawing.Common.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Memory.Data.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Runtime.Caching.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Security.Permissions.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Windows.Extensions.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\unix\lib\net6.0\Microsoft.Data.SqlClient.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Data.SqlClient.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.csproj.AssemblyReference.cache -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.GeneratedMSBuildEditorConfig.editorconfig -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.AssemblyInfoInputs.cache -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.AssemblyInfo.cs -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.csproj.CoreCompileInputs.cache -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.MvcApplicationPartsAssemblyInfo.cs -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.MvcApplicationPartsAssemblyInfo.cache -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.sourcelink.json -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets.build.json -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets.development.json -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets\msbuild.Vpassbackend.Microsoft.AspNetCore.StaticWebAssets.props -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets\msbuild.build.Vpassbackend.props -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.Vpassbackend.props -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.Vpassbackend.props -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets.pack.json -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\scopedcss\bundle\Vpassbackend.styles.css -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbac.3B05EFF0.Up2Date -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\refint\Vpassbackend.dll -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.pdb -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.genruntimeconfig.cache -D:\sprint588\Github\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\ref\Vpassbackend.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.csproj.AssemblyReference.cache -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.GeneratedMSBuildEditorConfig.editorconfig -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.AssemblyInfoInputs.cache -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.AssemblyInfo.cs -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.csproj.CoreCompileInputs.cache -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.MvcApplicationPartsAssemblyInfo.cs -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.MvcApplicationPartsAssemblyInfo.cache -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.sourcelink.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\appsettings.Development.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\appsettings.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Examples\add-service-history.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Examples\add-unverified-service-history.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Examples\add-verified-service-history.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Vpassbackend.exe -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Vpassbackend.deps.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Vpassbackend.runtimeconfig.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Vpassbackend.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Vpassbackend.pdb -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Azure.Core.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Azure.Identity.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\BCrypt.Net-Next.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Humanizer.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.SqlServer.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Extensions.Options.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Identity.Client.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.OpenApi.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Mono.TextTemplating.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.ClientModel.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.CodeDom.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Composition.AttributedModel.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Composition.Convention.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Composition.Hosting.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Composition.Runtime.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Composition.TypedParts.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Drawing.Common.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Formats.Asn1.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Memory.Data.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Runtime.Caching.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Security.Permissions.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\System.Windows.Extensions.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\unix\lib\net6.0\Microsoft.Data.SqlClient.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Data.SqlClient.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets.build.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets.development.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets\msbuild.Vpassbackend.Microsoft.AspNetCore.StaticWebAssets.props -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets\msbuild.build.Vpassbackend.props -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.Vpassbackend.props -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.Vpassbackend.props -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\staticwebassets.pack.json -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\scopedcss\bundle\Vpassbackend.styles.css -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbac.3B05EFF0.Up2Date -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\refint\Vpassbackend.dll -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.pdb -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\Vpassbackend.genruntimeconfig.cache -D:\NeonCoders\VehicleAppBackend\VehicleAppBackend\Vpassbackend\obj\Debug\net8.0\ref\Vpassbackend.dll diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.dll b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.dll deleted file mode 100644 index 41ab911..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.dll and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.genruntimeconfig.cache b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.genruntimeconfig.cache deleted file mode 100644 index c531511..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -837a49c71dd9f92b72ed68c7f740ddcdfc9ca22a8bd7a0260659d499e632179e diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.pdb b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.pdb deleted file mode 100644 index 8e9caa4..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.pdb and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.sourcelink.json b/Vpassbackend/obj/Debug/net8.0/Vpassbackend.sourcelink.json deleted file mode 100644 index 60bf474..0000000 --- a/Vpassbackend/obj/Debug/net8.0/Vpassbackend.sourcelink.json +++ /dev/null @@ -1 +0,0 @@ -{"documents":{"D:\\NeonCoders\\VehicleAppBackend\\VehicleAppBackend\\*":"https://raw.githubusercontent.com/NeonCoders-UoM/VehicleAppBackend/9c6c061b38bb9ec8b170e872e36e360d60a970c1/*"}} \ No newline at end of file diff --git a/Vpassbackend/obj/Debug/net8.0/apphost.exe b/Vpassbackend/obj/Debug/net8.0/apphost.exe deleted file mode 100644 index 2e4d36c..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/apphost.exe and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/ref/Backend.dll b/Vpassbackend/obj/Debug/net8.0/ref/Backend.dll deleted file mode 100644 index b085d9c..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/ref/Backend.dll and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/ref/Vpassbackend.dll b/Vpassbackend/obj/Debug/net8.0/ref/Vpassbackend.dll deleted file mode 100644 index 58a2f5d..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/ref/Vpassbackend.dll and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/refint/Backend.dll b/Vpassbackend/obj/Debug/net8.0/refint/Backend.dll deleted file mode 100644 index b085d9c..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/refint/Backend.dll and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/refint/Vpassbackend.dll b/Vpassbackend/obj/Debug/net8.0/refint/Vpassbackend.dll deleted file mode 100644 index 58a2f5d..0000000 Binary files a/Vpassbackend/obj/Debug/net8.0/refint/Vpassbackend.dll and /dev/null differ diff --git a/Vpassbackend/obj/Debug/net8.0/staticwebassets.build.json b/Vpassbackend/obj/Debug/net8.0/staticwebassets.build.json deleted file mode 100644 index ef9360c..0000000 --- a/Vpassbackend/obj/Debug/net8.0/staticwebassets.build.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "Version": 1, - "Hash": "RdLvrNdG4nso0HRaLWAWJ7ZTvrSw0aDGukFs/8eD9Tc=", - "Source": "Vpassbackend", - "BasePath": "_content/Vpassbackend", - "Mode": "Default", - "ManifestType": "Build", - "ReferencedProjectsConfiguration": [], - "DiscoveryPatterns": [], - "Assets": [] -} \ No newline at end of file diff --git a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.build.Backend.props b/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.build.Backend.props deleted file mode 100644 index 5a6032a..0000000 --- a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.build.Backend.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.build.Vpassbackend.props b/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.build.Vpassbackend.props deleted file mode 100644 index 5a6032a..0000000 --- a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.build.Vpassbackend.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Backend.props b/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Backend.props deleted file mode 100644 index afa2e43..0000000 --- a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Backend.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Vpassbackend.props b/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Vpassbackend.props deleted file mode 100644 index 7015652..0000000 --- a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.Vpassbackend.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Backend.props b/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Backend.props deleted file mode 100644 index 025eb7f..0000000 --- a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Backend.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Vpassbackend.props b/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Vpassbackend.props deleted file mode 100644 index a1e0a10..0000000 --- a/Vpassbackend/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.Vpassbackend.props +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/Vpassbackend/obj/Vpassbackend.csproj.EntityFrameworkCore.targets b/Vpassbackend/obj/Vpassbackend.csproj.EntityFrameworkCore.targets deleted file mode 100644 index 7d6485d..0000000 --- a/Vpassbackend/obj/Vpassbackend.csproj.EntityFrameworkCore.targets +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Vpassbackend/obj/Vpassbackend.csproj.nuget.dgspec.json b/Vpassbackend/obj/Vpassbackend.csproj.nuget.dgspec.json deleted file mode 100644 index 4e7dc82..0000000 --- a/Vpassbackend/obj/Vpassbackend.csproj.nuget.dgspec.json +++ /dev/null @@ -1,110 +0,0 @@ -{ - "format": 1, - "restore": { - "D:\\NeonCoders\\VehicleAppBackend\\VehicleAppBackend\\Vpassbackend\\Vpassbackend.csproj": {} - }, - "projects": { - "D:\\NeonCoders\\VehicleAppBackend\\VehicleAppBackend\\Vpassbackend\\Vpassbackend.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\NeonCoders\\VehicleAppBackend\\VehicleAppBackend\\Vpassbackend\\Vpassbackend.csproj", - "projectName": "Vpassbackend", - "projectPath": "D:\\NeonCoders\\VehicleAppBackend\\VehicleAppBackend\\Vpassbackend\\Vpassbackend.csproj", - "packagesPath": "C:\\Users\\Hello\\.nuget\\packages\\", - "outputPath": "D:\\NeonCoders\\VehicleAppBackend\\VehicleAppBackend\\Vpassbackend\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Hello\\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": [ - "net8.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - } - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "dependencies": { - "BCrypt.Net-Next": { - "target": "Package", - "version": "[4.0.3, )" - }, - "Microsoft.AspNetCore.Authentication.JwtBearer": { - "target": "Package", - "version": "[8.*, )" - }, - "Microsoft.AspNetCore.OpenApi": { - "target": "Package", - "version": "[8.0.8, )" - }, - "Microsoft.EntityFrameworkCore.Design": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[8.0.18, )" - }, - "Microsoft.EntityFrameworkCore.SqlServer": { - "target": "Package", - "version": "[8.0.17, )" - }, - "Microsoft.EntityFrameworkCore.Tools": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[8.*, )" - }, - "Swashbuckle.AspNetCore": { - "target": "Package", - "version": "[8.*, )" - } - }, - "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\\8.0.401/PortableRuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Vpassbackend/obj/Vpassbackend.csproj.nuget.g.props b/Vpassbackend/obj/Vpassbackend.csproj.nuget.g.props deleted file mode 100644 index fde0135..0000000 --- a/Vpassbackend/obj/Vpassbackend.csproj.nuget.g.props +++ /dev/null @@ -1,27 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\Hello\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages - PackageReference - 6.11.0 - - - - - - - - - - - - - C:\Users\Hello\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 - C:\Users\Hello\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3 - C:\Users\Hello\.nuget\packages\microsoft.entityframeworkcore.tools\8.0.18 - - \ No newline at end of file diff --git a/Vpassbackend/obj/Vpassbackend.csproj.nuget.g.targets b/Vpassbackend/obj/Vpassbackend.csproj.nuget.g.targets deleted file mode 100644 index 448aa12..0000000 --- a/Vpassbackend/obj/Vpassbackend.csproj.nuget.g.targets +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/Vpassbackend/obj/project.assets.json b/Vpassbackend/obj/project.assets.json deleted file mode 100644 index 097308f..0000000 --- a/Vpassbackend/obj/project.assets.json +++ /dev/null @@ -1,4328 +0,0 @@ -{ - "version": 3, - "targets": { - "net8.0": { - "Azure.Core/1.38.0": { - "type": "package", - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "1.1.1", - "System.ClientModel": "1.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.1", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "4.7.2", - "System.Text.Json": "4.7.2", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/net6.0/Azure.Core.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Azure.Core.dll": { - "related": ".xml" - } - } - }, - "Azure.Identity/1.11.4": { - "type": "package", - "dependencies": { - "Azure.Core": "1.38.0", - "Microsoft.Identity.Client": "4.61.3", - "Microsoft.Identity.Client.Extensions.Msal": "4.61.3", - "System.Memory": "4.5.4", - "System.Security.Cryptography.ProtectedData": "4.7.0", - "System.Text.Json": "4.7.2", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netstandard2.0/Azure.Identity.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "related": ".xml" - } - } - }, - "BCrypt.Net-Next/4.0.3": { - "type": "package", - "compile": { - "lib/net6.0/BCrypt.Net-Next.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/BCrypt.Net-Next.dll": { - "related": ".xml" - } - } - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Humanizer.dll": { - "related": ".xml" - } - } - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.18": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2" - }, - "compile": { - "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Microsoft.AspNetCore.OpenApi/8.0.8": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "compile": { - "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": { - "related": ".xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "related": ".xml" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "type": "package", - "build": { - "build/_._": {} - } - }, - "Microsoft.CodeAnalysis.Common/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.3.3", - "System.Collections.Immutable": "6.0.0", - "System.Reflection.Metadata": "6.0.1", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0" - }, - "compile": { - "lib/netcoreapp3.1/_._": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.5.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.5.0]" - }, - "compile": { - "lib/netcoreapp3.1/_._": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp": "[4.5.0]", - "Microsoft.CodeAnalysis.Common": "[4.5.0]", - "Microsoft.CodeAnalysis.Workspaces.Common": "[4.5.0]" - }, - "compile": { - "lib/netcoreapp3.1/_._": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.Bcl.AsyncInterfaces": "6.0.0", - "Microsoft.CodeAnalysis.Common": "[4.5.0]", - "System.Composition": "6.0.0", - "System.IO.Pipelines": "6.0.3", - "System.Threading.Channels": "6.0.0" - }, - "compile": { - "lib/netcoreapp3.1/_._": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { - "related": ".pdb;.xml" - } - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Data.SqlClient/5.1.6": { - "type": "package", - "dependencies": { - "Azure.Identity": "1.11.4", - "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1", - "Microsoft.Identity.Client": "4.61.3", - "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", - "Microsoft.SqlServer.Server": "1.0.0", - "System.Configuration.ConfigurationManager": "6.0.1", - "System.Diagnostics.DiagnosticSource": "6.0.1", - "System.Runtime.Caching": "6.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Text.Encodings.Web": "6.0.0" - }, - "compile": { - "ref/net6.0/Microsoft.Data.SqlClient.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Data.SqlClient.dll": { - "related": ".pdb;.xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { - "type": "package", - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "assetType": "native", - "rid": "win-arm" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "assetType": "native", - "rid": "win-x86" - } - } - }, - "Microsoft.EntityFrameworkCore/8.0.18": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "8.0.18", - "Microsoft.EntityFrameworkCore.Analyzers": "8.0.18", - "Microsoft.Extensions.Caching.Memory": "8.0.1", - "Microsoft.Extensions.Logging": "8.0.1" - }, - "compile": { - "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/8.0.18": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/8.0.18": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore.Design/8.0.18": { - "type": "package", - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", - "Microsoft.EntityFrameworkCore.Relational": "8.0.18", - "Microsoft.Extensions.DependencyModel": "8.0.2", - "Mono.TextTemplating": "2.2.1" - }, - "compile": { - "lib/net8.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { - "related": ".xml" - } - }, - "build": { - "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/8.0.18": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "8.0.18", - "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" - }, - "compile": { - "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/8.0.17": { - "type": "package", - "dependencies": { - "Microsoft.Data.SqlClient": "5.1.6", - "Microsoft.EntityFrameworkCore.Relational": "8.0.17", - "System.Formats.Asn1": "8.0.2" - }, - "compile": { - "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "related": ".xml" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/8.0.18": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "8.0.18" - }, - "compile": { - "lib/net8.0/_._": {} - }, - "runtime": { - "lib/net8.0/_._": {} - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "type": "package", - "build": { - "build/Microsoft.Extensions.ApiDescription.Server.props": {}, - "build/Microsoft.Extensions.ApiDescription.Server.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, - "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/8.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "8.0.0" - }, - "compile": { - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Caching.Memory/8.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "8.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", - "Microsoft.Extensions.Logging.Abstractions": "8.0.2", - "Microsoft.Extensions.Options": "8.0.2", - "Microsoft.Extensions.Primitives": "8.0.0" - }, - "compile": { - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "8.0.0" - }, - "compile": { - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection/8.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" - }, - "compile": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyModel/8.0.2": { - "type": "package", - "compile": { - "lib/net8.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Logging/8.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "8.0.1", - "Microsoft.Extensions.Logging.Abstractions": "8.0.2", - "Microsoft.Extensions.Options": "8.0.2" - }, - "compile": { - "lib/net8.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.2": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" - }, - "compile": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} - } - }, - "Microsoft.Extensions.Options/8.0.2": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", - "Microsoft.Extensions.Primitives": "8.0.0" - }, - "compile": { - "lib/net8.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Options.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} - } - }, - "Microsoft.Extensions.Primitives/8.0.0": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.Extensions.Primitives.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "Microsoft.Identity.Client/4.61.3": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.35.0", - "System.Diagnostics.DiagnosticSource": "6.0.1" - }, - "compile": { - "lib/net6.0/Microsoft.Identity.Client.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Identity.Client.dll": { - "related": ".xml" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { - "type": "package", - "dependencies": { - "Microsoft.Identity.Client": "4.61.3", - "System.Security.Cryptography.ProtectedData": "4.5.0" - }, - "compile": { - "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Abstractions/7.1.2": { - "type": "package", - "compile": { - "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/7.1.2": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Tokens": "7.1.2" - }, - "compile": { - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Logging/7.1.2": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "7.1.2" - }, - "compile": { - "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Protocols/7.1.2": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Logging": "7.1.2", - "Microsoft.IdentityModel.Tokens": "7.1.2" - }, - "compile": { - "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Protocols": "7.1.2", - "System.IdentityModel.Tokens.Jwt": "7.1.2" - }, - "compile": { - "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "related": ".xml" - } - } - }, - "Microsoft.IdentityModel.Tokens/7.1.2": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.Logging": "7.1.2" - }, - "compile": { - "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { - "related": ".xml" - } - } - }, - "Microsoft.OpenApi/1.6.23": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "related": ".pdb;.xml" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "dependencies": { - "System.CodeDom": "4.4.0" - }, - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Mono.TextTemplating.dll": {} - } - }, - "Swashbuckle.AspNetCore/8.1.4": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "8.1.4", - "Swashbuckle.AspNetCore.SwaggerGen": "8.1.4", - "Swashbuckle.AspNetCore.SwaggerUI": "8.1.4" - }, - "build": { - "build/Swashbuckle.AspNetCore.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Swashbuckle.AspNetCore.props": {} - } - }, - "Swashbuckle.AspNetCore.Swagger/8.1.4": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "1.6.23" - }, - "compile": { - "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/8.1.4": { - "type": "package", - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "8.1.4" - }, - "compile": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "related": ".pdb;.xml" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/8.1.4": { - "type": "package", - "compile": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "related": ".pdb;.xml" - } - }, - "runtime": { - "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "related": ".pdb;.xml" - } - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "System.ClientModel/1.0.0": { - "type": "package", - "dependencies": { - "System.Memory.Data": "1.0.2", - "System.Text.Json": "4.7.2" - }, - "compile": { - "lib/net6.0/System.ClientModel.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.ClientModel.dll": { - "related": ".xml" - } - } - }, - "System.CodeDom/4.4.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.CodeDom.dll": {} - } - }, - "System.Collections.Immutable/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Collections.Immutable.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Convention": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0", - "System.Composition.TypedParts": "6.0.0" - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.AttributedModel/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.AttributedModel.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.Convention/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.Convention.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.Hosting/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.Runtime": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.Hosting.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.Runtime/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.Runtime.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Composition.TypedParts/6.0.0": { - "type": "package", - "dependencies": { - "System.Composition.AttributedModel": "6.0.0", - "System.Composition.Hosting": "6.0.0", - "System.Composition.Runtime": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Composition.TypedParts.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Configuration.ConfigurationManager/6.0.1": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/6.0.1": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Formats.Asn1/8.0.2": { - "type": "package", - "compile": { - "lib/net8.0/System.Formats.Asn1.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.Formats.Asn1.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/net6.0/_._": {} - } - }, - "System.IdentityModel.Tokens.Jwt/7.1.2": { - "type": "package", - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "7.1.2", - "Microsoft.IdentityModel.Tokens": "7.1.2" - }, - "compile": { - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { - "related": ".xml" - } - } - }, - "System.IO.Pipelines/6.0.3": { - "type": "package", - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.IO.Pipelines.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Memory/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "4.7.2", - "System.Text.Json": "4.6.0" - }, - "compile": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "related": ".xml" - } - } - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Reflection.Metadata/6.0.1": { - "type": "package", - "dependencies": { - "System.Collections.Immutable": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Reflection.Metadata.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Security.AccessControl.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "dependencies": { - "System.Formats.Asn1": "5.0.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Text.Encodings.Web.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { - "assetType": "runtime", - "rid": "browser" - } - } - }, - "System.Text.Json/4.7.2": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/System.Text.Json.dll": { - "related": ".xml" - } - }, - "runtime": { - "lib/netcoreapp3.0/System.Text.Json.dll": { - "related": ".xml" - } - } - }, - "System.Threading.Channels/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Threading.Channels.dll": { - "related": ".xml" - } - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "compile": { - "lib/net6.0/_._": { - "related": ".xml" - } - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "related": ".xml" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - } - } - }, - "libraries": { - "Azure.Core/1.38.0": { - "sha512": "IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", - "type": "package", - "path": "azure.core/1.38.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "README.md", - "azure.core.1.38.0.nupkg.sha512", - "azure.core.nuspec", - "azureicon.png", - "lib/net461/Azure.Core.dll", - "lib/net461/Azure.Core.xml", - "lib/net472/Azure.Core.dll", - "lib/net472/Azure.Core.xml", - "lib/net6.0/Azure.Core.dll", - "lib/net6.0/Azure.Core.xml", - "lib/netstandard2.0/Azure.Core.dll", - "lib/netstandard2.0/Azure.Core.xml" - ] - }, - "Azure.Identity/1.11.4": { - "sha512": "Sf4BoE6Q3jTgFkgBkx7qztYOFELBCo+wQgpYDwal/qJ1unBH73ywPztIJKXBXORRzAeNijsuxhk94h0TIMvfYg==", - "type": "package", - "path": "azure.identity/1.11.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "README.md", - "azure.identity.1.11.4.nupkg.sha512", - "azure.identity.nuspec", - "azureicon.png", - "lib/netstandard2.0/Azure.Identity.dll", - "lib/netstandard2.0/Azure.Identity.xml" - ] - }, - "BCrypt.Net-Next/4.0.3": { - "sha512": "W+U9WvmZQgi5cX6FS5GDtDoPzUCV4LkBLkywq/kRZhuDwcbavOzcDAr3LXJFqHUi952Yj3LEYoWW0jbEUQChsA==", - "type": "package", - "path": "bcrypt.net-next/4.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bcrypt.net-next.4.0.3.nupkg.sha512", - "bcrypt.net-next.nuspec", - "ico.png", - "lib/net20/BCrypt.Net-Next.dll", - "lib/net20/BCrypt.Net-Next.xml", - "lib/net35/BCrypt.Net-Next.dll", - "lib/net35/BCrypt.Net-Next.xml", - "lib/net462/BCrypt.Net-Next.dll", - "lib/net462/BCrypt.Net-Next.xml", - "lib/net472/BCrypt.Net-Next.dll", - "lib/net472/BCrypt.Net-Next.xml", - "lib/net48/BCrypt.Net-Next.dll", - "lib/net48/BCrypt.Net-Next.xml", - "lib/net5.0/BCrypt.Net-Next.dll", - "lib/net5.0/BCrypt.Net-Next.xml", - "lib/net6.0/BCrypt.Net-Next.dll", - "lib/net6.0/BCrypt.Net-Next.xml", - "lib/netstandard2.0/BCrypt.Net-Next.dll", - "lib/netstandard2.0/BCrypt.Net-Next.xml", - "lib/netstandard2.1/BCrypt.Net-Next.dll", - "lib/netstandard2.1/BCrypt.Net-Next.xml", - "readme.md" - ] - }, - "Humanizer.Core/2.14.1": { - "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "type": "package", - "path": "humanizer.core/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "humanizer.core.2.14.1.nupkg.sha512", - "humanizer.core.nuspec", - "lib/net6.0/Humanizer.dll", - "lib/net6.0/Humanizer.xml", - "lib/netstandard1.0/Humanizer.dll", - "lib/netstandard1.0/Humanizer.xml", - "lib/netstandard2.0/Humanizer.dll", - "lib/netstandard2.0/Humanizer.xml", - "logo.png" - ] - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.18": { - "sha512": "Ty49uva5oIFa7nOkeL+6TGRU7DQohBaEGs+QcGoGSXq4d7MZnNueLte0HFa9WHvjZUDfJSQ1PVmWkFeIYS1w4Q==", - "type": "package", - "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.18", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", - "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", - "microsoft.aspnetcore.authentication.jwtbearer.8.0.18.nupkg.sha512", - "microsoft.aspnetcore.authentication.jwtbearer.nuspec" - ] - }, - "Microsoft.AspNetCore.OpenApi/8.0.8": { - "sha512": "wNHhohqP8rmsQ4UhKbd6jZMD6l+2Q/+DvRBT0Cgqeuglr13aF6sSJWicZKCIhZAUXzuhkdwtHVc95MlPlFk0dA==", - "type": "package", - "path": "microsoft.aspnetcore.openapi/8.0.8", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll", - "lib/net8.0/Microsoft.AspNetCore.OpenApi.xml", - "microsoft.aspnetcore.openapi.8.0.8.nupkg.sha512", - "microsoft.aspnetcore.openapi.nuspec" - ] - }, - "Microsoft.Bcl.AsyncInterfaces/6.0.0": { - "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", - "type": "package", - "path": "microsoft.bcl.asyncinterfaces/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", - "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", - "microsoft.bcl.asyncinterfaces.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.3": { - "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", - "type": "package", - "path": "microsoft.codeanalysis.analyzers/3.3.3", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", - "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", - "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", - "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", - "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "build/Microsoft.CodeAnalysis.Analyzers.props", - "build/Microsoft.CodeAnalysis.Analyzers.targets", - "build/config/analysislevel_2_9_8_all.editorconfig", - "build/config/analysislevel_2_9_8_default.editorconfig", - "build/config/analysislevel_2_9_8_minimum.editorconfig", - "build/config/analysislevel_2_9_8_none.editorconfig", - "build/config/analysislevel_2_9_8_recommended.editorconfig", - "build/config/analysislevel_3_3_all.editorconfig", - "build/config/analysislevel_3_3_default.editorconfig", - "build/config/analysislevel_3_3_minimum.editorconfig", - "build/config/analysislevel_3_3_none.editorconfig", - "build/config/analysislevel_3_3_recommended.editorconfig", - "build/config/analysislevel_3_all.editorconfig", - "build/config/analysislevel_3_default.editorconfig", - "build/config/analysislevel_3_minimum.editorconfig", - "build/config/analysislevel_3_none.editorconfig", - "build/config/analysislevel_3_recommended.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_all.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_default.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_none.editorconfig", - "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig", - "build/config/analysislevelcorrectness_3_3_all.editorconfig", - "build/config/analysislevelcorrectness_3_3_default.editorconfig", - "build/config/analysislevelcorrectness_3_3_minimum.editorconfig", - "build/config/analysislevelcorrectness_3_3_none.editorconfig", - "build/config/analysislevelcorrectness_3_3_recommended.editorconfig", - "build/config/analysislevelcorrectness_3_all.editorconfig", - "build/config/analysislevelcorrectness_3_default.editorconfig", - "build/config/analysislevelcorrectness_3_minimum.editorconfig", - "build/config/analysislevelcorrectness_3_none.editorconfig", - "build/config/analysislevelcorrectness_3_recommended.editorconfig", - "build/config/analysislevellibrary_2_9_8_all.editorconfig", - "build/config/analysislevellibrary_2_9_8_default.editorconfig", - "build/config/analysislevellibrary_2_9_8_minimum.editorconfig", - "build/config/analysislevellibrary_2_9_8_none.editorconfig", - "build/config/analysislevellibrary_2_9_8_recommended.editorconfig", - "build/config/analysislevellibrary_3_3_all.editorconfig", - "build/config/analysislevellibrary_3_3_default.editorconfig", - "build/config/analysislevellibrary_3_3_minimum.editorconfig", - "build/config/analysislevellibrary_3_3_none.editorconfig", - "build/config/analysislevellibrary_3_3_recommended.editorconfig", - "build/config/analysislevellibrary_3_all.editorconfig", - "build/config/analysislevellibrary_3_default.editorconfig", - "build/config/analysislevellibrary_3_minimum.editorconfig", - "build/config/analysislevellibrary_3_none.editorconfig", - "build/config/analysislevellibrary_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig", - "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig", - "documentation/Analyzer Configuration.md", - "documentation/Microsoft.CodeAnalysis.Analyzers.md", - "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", - "editorconfig/AllRulesDefault/.editorconfig", - "editorconfig/AllRulesDisabled/.editorconfig", - "editorconfig/AllRulesEnabled/.editorconfig", - "editorconfig/CorrectnessRulesDefault/.editorconfig", - "editorconfig/CorrectnessRulesEnabled/.editorconfig", - "editorconfig/DataflowRulesDefault/.editorconfig", - "editorconfig/DataflowRulesEnabled/.editorconfig", - "editorconfig/LibraryRulesDefault/.editorconfig", - "editorconfig/LibraryRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", - "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", - "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", - "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512", - "microsoft.codeanalysis.analyzers.nuspec", - "rulesets/AllRulesDefault.ruleset", - "rulesets/AllRulesDisabled.ruleset", - "rulesets/AllRulesEnabled.ruleset", - "rulesets/CorrectnessRulesDefault.ruleset", - "rulesets/CorrectnessRulesEnabled.ruleset", - "rulesets/DataflowRulesDefault.ruleset", - "rulesets/DataflowRulesEnabled.ruleset", - "rulesets/LibraryRulesDefault.ruleset", - "rulesets/LibraryRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", - "rulesets/PortedFromFxCopRulesDefault.ruleset", - "rulesets/PortedFromFxCopRulesEnabled.ruleset", - "tools/install.ps1", - "tools/uninstall.ps1" - ] - }, - "Microsoft.CodeAnalysis.Common/4.5.0": { - "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==", - "type": "package", - "path": "microsoft.codeanalysis.common/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", - "microsoft.codeanalysis.common.4.5.0.nupkg.sha512", - "microsoft.codeanalysis.common.nuspec" - ] - }, - "Microsoft.CodeAnalysis.CSharp/4.5.0": { - "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==", - "type": "package", - "path": "microsoft.codeanalysis.csharp/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", - "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.nuspec" - ] - }, - "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": { - "sha512": "h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==", - "type": "package", - "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", - "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.workspaces.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { - "sha512": "l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==", - "type": "package", - "path": "microsoft.codeanalysis.workspaces.common/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", - "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512", - "microsoft.codeanalysis.workspaces.common.nuspec" - ] - }, - "Microsoft.Data.SqlClient/5.1.6": { - "sha512": "+pz7gIPh5ydsBcQvivt4R98PwJXer86fyQBBToIBLxZ5kuhW4N13Ijz87s9WpuPtF1vh4JesYCgpDPAOgkMhdg==", - "type": "package", - "path": "microsoft.data.sqlclient/5.1.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dotnet.png", - "lib/net462/Microsoft.Data.SqlClient.dll", - "lib/net462/Microsoft.Data.SqlClient.pdb", - "lib/net462/Microsoft.Data.SqlClient.xml", - "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", - "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", - "lib/net6.0/Microsoft.Data.SqlClient.dll", - "lib/net6.0/Microsoft.Data.SqlClient.pdb", - "lib/net6.0/Microsoft.Data.SqlClient.xml", - "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", - "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", - "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", - "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", - "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", - "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", - "microsoft.data.sqlclient.5.1.6.nupkg.sha512", - "microsoft.data.sqlclient.nuspec", - "ref/net462/Microsoft.Data.SqlClient.dll", - "ref/net462/Microsoft.Data.SqlClient.pdb", - "ref/net462/Microsoft.Data.SqlClient.xml", - "ref/net6.0/Microsoft.Data.SqlClient.dll", - "ref/net6.0/Microsoft.Data.SqlClient.pdb", - "ref/net6.0/Microsoft.Data.SqlClient.xml", - "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", - "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", - "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", - "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", - "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", - "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", - "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", - "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb", - "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", - "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", - "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", - "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb", - "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", - "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb", - "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", - "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" - ] - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { - "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==", - "type": "package", - "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "dotnet.png", - "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", - "microsoft.data.sqlclient.sni.runtime.nuspec", - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" - ] - }, - "Microsoft.EntityFrameworkCore/8.0.18": { - "sha512": "LBc07vlgPxEXmjF0Kgn1S0mip3KLDPVD1OQOFu+4Mfpg1Z8OPMJ82MVCkqek1Ex2WeCzVGbNI9nRXcepHB+48g==", - "type": "package", - "path": "microsoft.entityframeworkcore/8.0.18", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", - "lib/net8.0/Microsoft.EntityFrameworkCore.dll", - "lib/net8.0/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.8.0.18.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/8.0.18": { - "sha512": "aQGpxj0/RKXhSqDFbWENQgOg6WQH3z5Dezu3VBXaTCBHE6hAWQIZmmqdpO1k+lkANsoCSwPJZ4iFRqPPZXBXzg==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/8.0.18", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.8.0.18.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/8.0.18": { - "sha512": "aYkyWRkb+o9++mtIWn5XSYPVND5N9mFFfvdmBX1s6kCss6XTaZsFXf8QjvaiXAcGblp/HoYzS5lusx0ZqeFxzQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/8.0.18", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "docs/PACKAGE.md", - "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.analyzers.8.0.18.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Design/8.0.18": { - "sha512": "ONya9HGDtULSfoxld0ir12lxOxX2zp4TRYp6pO3wwXtWSYK3bU1kUSZMIJdeewznYcOfpCJVuSJVch6Y5xtIIQ==", - "type": "package", - "path": "microsoft.entityframeworkcore.design/8.0.18", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "build/net8.0/Microsoft.EntityFrameworkCore.Design.props", - "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll", - "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml", - "microsoft.entityframeworkcore.design.8.0.18.nupkg.sha512", - "microsoft.entityframeworkcore.design.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/8.0.18": { - "sha512": "SL067ITd6QfDF9wNsNtGm3fROpnv3SNrOY3Fjb+efEUnKn5NI0sUitrtpUim+t1DtCJIs7qgmyCPdD3zjSt4Xw==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/8.0.18", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.8.0.18.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.SqlServer/8.0.17": { - "sha512": "082YhxI+KZFhl1AFLOxasYjQGQsiFJKxqcUPWobBpoDjE/XCueJs0Kz+XengUGQZSLrCcCCnwlOG3kiBXsTJcw==", - "type": "package", - "path": "microsoft.entityframeworkcore.sqlserver/8.0.17", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "PACKAGE.md", - "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll", - "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml", - "microsoft.entityframeworkcore.sqlserver.8.0.17.nupkg.sha512", - "microsoft.entityframeworkcore.sqlserver.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Tools/8.0.18": { - "sha512": "NjAp3CYIbaH6esFt2knQdib+it1mL17v6wtKGuhNpj2x5LqHCEIa53zcH3HTq+jzOBsUWu2chxsBXHo5d2ff0g==", - "type": "package", - "path": "microsoft.entityframeworkcore.tools/8.0.18", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "docs/PACKAGE.md", - "lib/net8.0/_._", - "microsoft.entityframeworkcore.tools.8.0.18.nupkg.sha512", - "microsoft.entityframeworkcore.tools.nuspec", - "tools/EntityFrameworkCore.PS2.psd1", - "tools/EntityFrameworkCore.PS2.psm1", - "tools/EntityFrameworkCore.psd1", - "tools/EntityFrameworkCore.psm1", - "tools/about_EntityFrameworkCore.help.txt", - "tools/init.ps1", - "tools/net461/any/ef.exe", - "tools/net461/win-arm64/ef.exe", - "tools/net461/win-x86/ef.exe", - "tools/netcoreapp2.0/any/ef.dll", - "tools/netcoreapp2.0/any/ef.runtimeconfig.json" - ] - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": { - "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", - "type": "package", - "path": "microsoft.extensions.apidescription.server/6.0.5", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "build/Microsoft.Extensions.ApiDescription.Server.props", - "build/Microsoft.Extensions.ApiDescription.Server.targets", - "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", - "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", - "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", - "microsoft.extensions.apidescription.server.nuspec", - "tools/Newtonsoft.Json.dll", - "tools/dotnet-getdocument.deps.json", - "tools/dotnet-getdocument.dll", - "tools/dotnet-getdocument.runtimeconfig.json", - "tools/net461-x86/GetDocument.Insider.exe", - "tools/net461-x86/GetDocument.Insider.exe.config", - "tools/net461-x86/Microsoft.Win32.Primitives.dll", - "tools/net461-x86/System.AppContext.dll", - "tools/net461-x86/System.Buffers.dll", - "tools/net461-x86/System.Collections.Concurrent.dll", - "tools/net461-x86/System.Collections.NonGeneric.dll", - "tools/net461-x86/System.Collections.Specialized.dll", - "tools/net461-x86/System.Collections.dll", - "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll", - "tools/net461-x86/System.ComponentModel.Primitives.dll", - "tools/net461-x86/System.ComponentModel.TypeConverter.dll", - "tools/net461-x86/System.ComponentModel.dll", - "tools/net461-x86/System.Console.dll", - "tools/net461-x86/System.Data.Common.dll", - "tools/net461-x86/System.Diagnostics.Contracts.dll", - "tools/net461-x86/System.Diagnostics.Debug.dll", - "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll", - "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll", - "tools/net461-x86/System.Diagnostics.Process.dll", - "tools/net461-x86/System.Diagnostics.StackTrace.dll", - "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll", - "tools/net461-x86/System.Diagnostics.Tools.dll", - "tools/net461-x86/System.Diagnostics.TraceSource.dll", - "tools/net461-x86/System.Diagnostics.Tracing.dll", - "tools/net461-x86/System.Drawing.Primitives.dll", - "tools/net461-x86/System.Dynamic.Runtime.dll", - "tools/net461-x86/System.Globalization.Calendars.dll", - "tools/net461-x86/System.Globalization.Extensions.dll", - "tools/net461-x86/System.Globalization.dll", - "tools/net461-x86/System.IO.Compression.ZipFile.dll", - "tools/net461-x86/System.IO.Compression.dll", - "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll", - "tools/net461-x86/System.IO.FileSystem.Primitives.dll", - "tools/net461-x86/System.IO.FileSystem.Watcher.dll", - "tools/net461-x86/System.IO.FileSystem.dll", - "tools/net461-x86/System.IO.IsolatedStorage.dll", - "tools/net461-x86/System.IO.MemoryMappedFiles.dll", - "tools/net461-x86/System.IO.Pipes.dll", - "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll", - "tools/net461-x86/System.IO.dll", - "tools/net461-x86/System.Linq.Expressions.dll", - "tools/net461-x86/System.Linq.Parallel.dll", - "tools/net461-x86/System.Linq.Queryable.dll", - "tools/net461-x86/System.Linq.dll", - "tools/net461-x86/System.Memory.dll", - "tools/net461-x86/System.Net.Http.dll", - "tools/net461-x86/System.Net.NameResolution.dll", - "tools/net461-x86/System.Net.NetworkInformation.dll", - "tools/net461-x86/System.Net.Ping.dll", - "tools/net461-x86/System.Net.Primitives.dll", - "tools/net461-x86/System.Net.Requests.dll", - "tools/net461-x86/System.Net.Security.dll", - "tools/net461-x86/System.Net.Sockets.dll", - "tools/net461-x86/System.Net.WebHeaderCollection.dll", - "tools/net461-x86/System.Net.WebSockets.Client.dll", - "tools/net461-x86/System.Net.WebSockets.dll", - "tools/net461-x86/System.Numerics.Vectors.dll", - "tools/net461-x86/System.ObjectModel.dll", - "tools/net461-x86/System.Reflection.Extensions.dll", - "tools/net461-x86/System.Reflection.Primitives.dll", - "tools/net461-x86/System.Reflection.dll", - "tools/net461-x86/System.Resources.Reader.dll", - "tools/net461-x86/System.Resources.ResourceManager.dll", - "tools/net461-x86/System.Resources.Writer.dll", - "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll", - "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll", - "tools/net461-x86/System.Runtime.Extensions.dll", - "tools/net461-x86/System.Runtime.Handles.dll", - "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll", - "tools/net461-x86/System.Runtime.InteropServices.dll", - "tools/net461-x86/System.Runtime.Numerics.dll", - "tools/net461-x86/System.Runtime.Serialization.Formatters.dll", - "tools/net461-x86/System.Runtime.Serialization.Json.dll", - "tools/net461-x86/System.Runtime.Serialization.Primitives.dll", - "tools/net461-x86/System.Runtime.Serialization.Xml.dll", - "tools/net461-x86/System.Runtime.dll", - "tools/net461-x86/System.Security.Claims.dll", - "tools/net461-x86/System.Security.Cryptography.Algorithms.dll", - "tools/net461-x86/System.Security.Cryptography.Csp.dll", - "tools/net461-x86/System.Security.Cryptography.Encoding.dll", - "tools/net461-x86/System.Security.Cryptography.Primitives.dll", - "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll", - "tools/net461-x86/System.Security.Principal.dll", - "tools/net461-x86/System.Security.SecureString.dll", - "tools/net461-x86/System.Text.Encoding.Extensions.dll", - "tools/net461-x86/System.Text.Encoding.dll", - "tools/net461-x86/System.Text.RegularExpressions.dll", - "tools/net461-x86/System.Threading.Overlapped.dll", - "tools/net461-x86/System.Threading.Tasks.Parallel.dll", - "tools/net461-x86/System.Threading.Tasks.dll", - "tools/net461-x86/System.Threading.Thread.dll", - "tools/net461-x86/System.Threading.ThreadPool.dll", - "tools/net461-x86/System.Threading.Timer.dll", - "tools/net461-x86/System.Threading.dll", - "tools/net461-x86/System.ValueTuple.dll", - "tools/net461-x86/System.Xml.ReaderWriter.dll", - "tools/net461-x86/System.Xml.XDocument.dll", - "tools/net461-x86/System.Xml.XPath.XDocument.dll", - "tools/net461-x86/System.Xml.XPath.dll", - "tools/net461-x86/System.Xml.XmlDocument.dll", - "tools/net461-x86/System.Xml.XmlSerializer.dll", - "tools/net461-x86/netstandard.dll", - "tools/net461/GetDocument.Insider.exe", - "tools/net461/GetDocument.Insider.exe.config", - "tools/net461/Microsoft.Win32.Primitives.dll", - "tools/net461/System.AppContext.dll", - "tools/net461/System.Buffers.dll", - "tools/net461/System.Collections.Concurrent.dll", - "tools/net461/System.Collections.NonGeneric.dll", - "tools/net461/System.Collections.Specialized.dll", - "tools/net461/System.Collections.dll", - "tools/net461/System.ComponentModel.EventBasedAsync.dll", - "tools/net461/System.ComponentModel.Primitives.dll", - "tools/net461/System.ComponentModel.TypeConverter.dll", - "tools/net461/System.ComponentModel.dll", - "tools/net461/System.Console.dll", - "tools/net461/System.Data.Common.dll", - "tools/net461/System.Diagnostics.Contracts.dll", - "tools/net461/System.Diagnostics.Debug.dll", - "tools/net461/System.Diagnostics.DiagnosticSource.dll", - "tools/net461/System.Diagnostics.FileVersionInfo.dll", - "tools/net461/System.Diagnostics.Process.dll", - "tools/net461/System.Diagnostics.StackTrace.dll", - "tools/net461/System.Diagnostics.TextWriterTraceListener.dll", - "tools/net461/System.Diagnostics.Tools.dll", - "tools/net461/System.Diagnostics.TraceSource.dll", - "tools/net461/System.Diagnostics.Tracing.dll", - "tools/net461/System.Drawing.Primitives.dll", - "tools/net461/System.Dynamic.Runtime.dll", - "tools/net461/System.Globalization.Calendars.dll", - "tools/net461/System.Globalization.Extensions.dll", - "tools/net461/System.Globalization.dll", - "tools/net461/System.IO.Compression.ZipFile.dll", - "tools/net461/System.IO.Compression.dll", - "tools/net461/System.IO.FileSystem.DriveInfo.dll", - "tools/net461/System.IO.FileSystem.Primitives.dll", - "tools/net461/System.IO.FileSystem.Watcher.dll", - "tools/net461/System.IO.FileSystem.dll", - "tools/net461/System.IO.IsolatedStorage.dll", - "tools/net461/System.IO.MemoryMappedFiles.dll", - "tools/net461/System.IO.Pipes.dll", - "tools/net461/System.IO.UnmanagedMemoryStream.dll", - "tools/net461/System.IO.dll", - "tools/net461/System.Linq.Expressions.dll", - "tools/net461/System.Linq.Parallel.dll", - "tools/net461/System.Linq.Queryable.dll", - "tools/net461/System.Linq.dll", - "tools/net461/System.Memory.dll", - "tools/net461/System.Net.Http.dll", - "tools/net461/System.Net.NameResolution.dll", - "tools/net461/System.Net.NetworkInformation.dll", - "tools/net461/System.Net.Ping.dll", - "tools/net461/System.Net.Primitives.dll", - "tools/net461/System.Net.Requests.dll", - "tools/net461/System.Net.Security.dll", - "tools/net461/System.Net.Sockets.dll", - "tools/net461/System.Net.WebHeaderCollection.dll", - "tools/net461/System.Net.WebSockets.Client.dll", - "tools/net461/System.Net.WebSockets.dll", - "tools/net461/System.Numerics.Vectors.dll", - "tools/net461/System.ObjectModel.dll", - "tools/net461/System.Reflection.Extensions.dll", - "tools/net461/System.Reflection.Primitives.dll", - "tools/net461/System.Reflection.dll", - "tools/net461/System.Resources.Reader.dll", - "tools/net461/System.Resources.ResourceManager.dll", - "tools/net461/System.Resources.Writer.dll", - "tools/net461/System.Runtime.CompilerServices.Unsafe.dll", - "tools/net461/System.Runtime.CompilerServices.VisualC.dll", - "tools/net461/System.Runtime.Extensions.dll", - "tools/net461/System.Runtime.Handles.dll", - "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll", - "tools/net461/System.Runtime.InteropServices.dll", - "tools/net461/System.Runtime.Numerics.dll", - "tools/net461/System.Runtime.Serialization.Formatters.dll", - "tools/net461/System.Runtime.Serialization.Json.dll", - "tools/net461/System.Runtime.Serialization.Primitives.dll", - "tools/net461/System.Runtime.Serialization.Xml.dll", - "tools/net461/System.Runtime.dll", - "tools/net461/System.Security.Claims.dll", - "tools/net461/System.Security.Cryptography.Algorithms.dll", - "tools/net461/System.Security.Cryptography.Csp.dll", - "tools/net461/System.Security.Cryptography.Encoding.dll", - "tools/net461/System.Security.Cryptography.Primitives.dll", - "tools/net461/System.Security.Cryptography.X509Certificates.dll", - "tools/net461/System.Security.Principal.dll", - "tools/net461/System.Security.SecureString.dll", - "tools/net461/System.Text.Encoding.Extensions.dll", - "tools/net461/System.Text.Encoding.dll", - "tools/net461/System.Text.RegularExpressions.dll", - "tools/net461/System.Threading.Overlapped.dll", - "tools/net461/System.Threading.Tasks.Parallel.dll", - "tools/net461/System.Threading.Tasks.dll", - "tools/net461/System.Threading.Thread.dll", - "tools/net461/System.Threading.ThreadPool.dll", - "tools/net461/System.Threading.Timer.dll", - "tools/net461/System.Threading.dll", - "tools/net461/System.ValueTuple.dll", - "tools/net461/System.Xml.ReaderWriter.dll", - "tools/net461/System.Xml.XDocument.dll", - "tools/net461/System.Xml.XPath.XDocument.dll", - "tools/net461/System.Xml.XPath.dll", - "tools/net461/System.Xml.XmlDocument.dll", - "tools/net461/System.Xml.XmlSerializer.dll", - "tools/net461/netstandard.dll", - "tools/netcoreapp2.1/GetDocument.Insider.deps.json", - "tools/netcoreapp2.1/GetDocument.Insider.dll", - "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", - "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/8.0.0": { - "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net8.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.8.0.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/8.0.1": { - "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/8.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", - "lib/net462/Microsoft.Extensions.Caching.Memory.dll", - "lib/net462/Microsoft.Extensions.Caching.Memory.xml", - "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", - "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/net8.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.8.0.1.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { - "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net8.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.8.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/8.0.1": { - "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/8.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "lib/net462/Microsoft.Extensions.DependencyInjection.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net8.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.8.0.1.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { - "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net8.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.8.0.2.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyModel/8.0.2": { - "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", - "type": "package", - "path": "microsoft.extensions.dependencymodel/8.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", - "lib/net462/Microsoft.Extensions.DependencyModel.dll", - "lib/net462/Microsoft.Extensions.DependencyModel.xml", - "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", - "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", - "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", - "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", - "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", - "microsoft.extensions.dependencymodel.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/8.0.1": { - "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", - "type": "package", - "path": "microsoft.extensions.logging/8.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Logging.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", - "lib/net462/Microsoft.Extensions.Logging.dll", - "lib/net462/Microsoft.Extensions.Logging.xml", - "lib/net6.0/Microsoft.Extensions.Logging.dll", - "lib/net6.0/Microsoft.Extensions.Logging.xml", - "lib/net7.0/Microsoft.Extensions.Logging.dll", - "lib/net7.0/Microsoft.Extensions.Logging.xml", - "lib/net8.0/Microsoft.Extensions.Logging.dll", - "lib/net8.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.8.0.1.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/8.0.2": { - "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/8.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "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/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net8.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.8.0.2.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Options/8.0.2": { - "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", - "type": "package", - "path": "microsoft.extensions.options/8.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "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/net6.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", - "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", - "lib/net462/Microsoft.Extensions.Options.dll", - "lib/net462/Microsoft.Extensions.Options.xml", - "lib/net6.0/Microsoft.Extensions.Options.dll", - "lib/net6.0/Microsoft.Extensions.Options.xml", - "lib/net7.0/Microsoft.Extensions.Options.dll", - "lib/net7.0/Microsoft.Extensions.Options.xml", - "lib/net8.0/Microsoft.Extensions.Options.dll", - "lib/net8.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.8.0.2.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/8.0.0": { - "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", - "type": "package", - "path": "microsoft.extensions.primitives/8.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "PACKAGE.md", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "lib/net462/Microsoft.Extensions.Primitives.dll", - "lib/net462/Microsoft.Extensions.Primitives.xml", - "lib/net6.0/Microsoft.Extensions.Primitives.dll", - "lib/net6.0/Microsoft.Extensions.Primitives.xml", - "lib/net7.0/Microsoft.Extensions.Primitives.dll", - "lib/net7.0/Microsoft.Extensions.Primitives.xml", - "lib/net8.0/Microsoft.Extensions.Primitives.dll", - "lib/net8.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.8.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Identity.Client/4.61.3": { - "sha512": "naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==", - "type": "package", - "path": "microsoft.identity.client/4.61.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/net462/Microsoft.Identity.Client.dll", - "lib/net462/Microsoft.Identity.Client.xml", - "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", - "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", - "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", - "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", - "lib/net6.0/Microsoft.Identity.Client.dll", - "lib/net6.0/Microsoft.Identity.Client.xml", - "lib/netstandard2.0/Microsoft.Identity.Client.dll", - "lib/netstandard2.0/Microsoft.Identity.Client.xml", - "microsoft.identity.client.4.61.3.nupkg.sha512", - "microsoft.identity.client.nuspec" - ] - }, - "Microsoft.Identity.Client.Extensions.Msal/4.61.3": { - "sha512": "PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==", - "type": "package", - "path": "microsoft.identity.client.extensions.msal/4.61.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll", - "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml", - "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", - "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", - "microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", - "microsoft.identity.client.extensions.msal.nuspec" - ] - }, - "Microsoft.IdentityModel.Abstractions/7.1.2": { - "sha512": "33eTIA2uO/L9utJjZWbKsMSVsQf7F8vtd6q5mQX7ZJzNvCpci5fleD6AeANGlbbb7WX7XKxq9+Dkb5e3GNDrmQ==", - "type": "package", - "path": "microsoft.identitymodel.abstractions/7.1.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Microsoft.IdentityModel.Abstractions.dll", - "lib/net461/Microsoft.IdentityModel.Abstractions.xml", - "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/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", - "microsoft.identitymodel.abstractions.7.1.2.nupkg.sha512", - "microsoft.identitymodel.abstractions.nuspec" - ] - }, - "Microsoft.IdentityModel.JsonWebTokens/7.1.2": { - "sha512": "cloLGeZolXbCJhJBc5OC05uhrdhdPL6MWHuVUnkkUvPDeK7HkwThBaLZ1XjBQVk9YhxXE2OvHXnKi0PLleXxDg==", - "type": "package", - "path": "microsoft.identitymodel.jsonwebtokens/7.1.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", - "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/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", - "microsoft.identitymodel.jsonwebtokens.7.1.2.nupkg.sha512", - "microsoft.identitymodel.jsonwebtokens.nuspec" - ] - }, - "Microsoft.IdentityModel.Logging/7.1.2": { - "sha512": "YCxBt2EeJP8fcXk9desChkWI+0vFqFLvBwrz5hBMsoh0KJE6BC66DnzkdzkJNqMltLromc52dkdT206jJ38cTw==", - "type": "package", - "path": "microsoft.identitymodel.logging/7.1.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Microsoft.IdentityModel.Logging.dll", - "lib/net461/Microsoft.IdentityModel.Logging.xml", - "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/netstandard2.0/Microsoft.IdentityModel.Logging.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", - "microsoft.identitymodel.logging.7.1.2.nupkg.sha512", - "microsoft.identitymodel.logging.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols/7.1.2": { - "sha512": "SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==", - "type": "package", - "path": "microsoft.identitymodel.protocols/7.1.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Microsoft.IdentityModel.Protocols.dll", - "lib/net461/Microsoft.IdentityModel.Protocols.xml", - "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/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", - "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512", - "microsoft.identitymodel.protocols.nuspec" - ] - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": { - "sha512": "6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==", - "type": "package", - "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "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/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", - "microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512", - "microsoft.identitymodel.protocols.openidconnect.nuspec" - ] - }, - "Microsoft.IdentityModel.Tokens/7.1.2": { - "sha512": "oICJMqr3aNEDZOwnH5SK49bR6Z4aX0zEAnOLuhloumOSuqnNq+GWBdQyrgILnlcT5xj09xKCP/7Y7gJYB+ls/g==", - "type": "package", - "path": "microsoft.identitymodel.tokens/7.1.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Microsoft.IdentityModel.Tokens.dll", - "lib/net461/Microsoft.IdentityModel.Tokens.xml", - "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/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", - "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", - "microsoft.identitymodel.tokens.7.1.2.nupkg.sha512", - "microsoft.identitymodel.tokens.nuspec" - ] - }, - "Microsoft.OpenApi/1.6.23": { - "sha512": "tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==", - "type": "package", - "path": "microsoft.openapi/1.6.23", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "lib/netstandard2.0/Microsoft.OpenApi.dll", - "lib/netstandard2.0/Microsoft.OpenApi.pdb", - "lib/netstandard2.0/Microsoft.OpenApi.xml", - "microsoft.openapi.1.6.23.nupkg.sha512", - "microsoft.openapi.nuspec" - ] - }, - "Microsoft.SqlServer.Server/1.0.0": { - "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "type": "package", - "path": "microsoft.sqlserver.server/1.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dotnet.png", - "lib/net46/Microsoft.SqlServer.Server.dll", - "lib/net46/Microsoft.SqlServer.Server.pdb", - "lib/net46/Microsoft.SqlServer.Server.xml", - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", - "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", - "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", - "microsoft.sqlserver.server.1.0.0.nupkg.sha512", - "microsoft.sqlserver.server.nuspec" - ] - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "type": "package", - "path": "microsoft.win32.systemevents/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Win32.SystemEvents.dll", - "lib/net461/Microsoft.Win32.SystemEvents.xml", - "lib/net6.0/Microsoft.Win32.SystemEvents.dll", - "lib/net6.0/Microsoft.Win32.SystemEvents.xml", - "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", - "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "microsoft.win32.systemevents.nuspec", - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", - "useSharedDesignerContext.txt" - ] - }, - "Mono.TextTemplating/2.2.1": { - "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "type": "package", - "path": "mono.texttemplating/2.2.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net472/Mono.TextTemplating.dll", - "lib/netstandard2.0/Mono.TextTemplating.dll", - "mono.texttemplating.2.2.1.nupkg.sha512", - "mono.texttemplating.nuspec" - ] - }, - "Swashbuckle.AspNetCore/8.1.4": { - "sha512": "qYk8VHyvs6wML+KXtjyCgS9Aj18mcm0ZtnJeNCTlj/DYQ7A3pfLIztQgLuZS/LEMYsrTo1lSKR3IIZ5/HzVCWA==", - "type": "package", - "path": "swashbuckle.aspnetcore/8.1.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/Swashbuckle.AspNetCore.props", - "buildMultiTargeting/Swashbuckle.AspNetCore.props", - "docs/package-readme.md", - "swashbuckle.aspnetcore.8.1.4.nupkg.sha512", - "swashbuckle.aspnetcore.nuspec" - ] - }, - "Swashbuckle.AspNetCore.Swagger/8.1.4": { - "sha512": "w83aYEBJYNa6ZYomziwZWwXhqQPLKhZH0n8MzqqNhF1ElCGBKm71kd7W6pgIr/yu0i6ymQzrZUFSZLdvH1kY5w==", - "type": "package", - "path": "swashbuckle.aspnetcore.swagger/8.1.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", - "package-readme.md", - "swashbuckle.aspnetcore.swagger.8.1.4.nupkg.sha512", - "swashbuckle.aspnetcore.swagger.nuspec" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/8.1.4": { - "sha512": "aBwO2MF1HHAaWgdBwX8tlSqxycOKTKmCT6pEpb0oSY1pn7mUdmzJvHZA0HxWx9nfmKP0eOGQcLC9ZnN/MuehRQ==", - "type": "package", - "path": "swashbuckle.aspnetcore.swaggergen/8.1.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "package-readme.md", - "swashbuckle.aspnetcore.swaggergen.8.1.4.nupkg.sha512", - "swashbuckle.aspnetcore.swaggergen.nuspec" - ] - }, - "Swashbuckle.AspNetCore.SwaggerUI/8.1.4": { - "sha512": "mTn6OwB43ETrN6IgAZd7ojWGhTwBZ98LT3QwbAn6Gg3wJStQV4znU0mWiHaKFlD/+Qhj1uhAUOa52rmd6xmbzg==", - "type": "package", - "path": "swashbuckle.aspnetcore.swaggerui/8.1.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "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", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "package-readme.md", - "swashbuckle.aspnetcore.swaggerui.8.1.4.nupkg.sha512", - "swashbuckle.aspnetcore.swaggerui.nuspec" - ] - }, - "System.ClientModel/1.0.0": { - "sha512": "I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", - "type": "package", - "path": "system.clientmodel/1.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "DotNetPackageIcon.png", - "README.md", - "lib/net6.0/System.ClientModel.dll", - "lib/net6.0/System.ClientModel.xml", - "lib/netstandard2.0/System.ClientModel.dll", - "lib/netstandard2.0/System.ClientModel.xml", - "system.clientmodel.1.0.0.nupkg.sha512", - "system.clientmodel.nuspec" - ] - }, - "System.CodeDom/4.4.0": { - "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "type": "package", - "path": "system.codedom/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.CodeDom.dll", - "lib/netstandard2.0/System.CodeDom.dll", - "ref/net461/System.CodeDom.dll", - "ref/net461/System.CodeDom.xml", - "ref/netstandard2.0/System.CodeDom.dll", - "ref/netstandard2.0/System.CodeDom.xml", - "system.codedom.4.4.0.nupkg.sha512", - "system.codedom.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections.Immutable/6.0.0": { - "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", - "type": "package", - "path": "system.collections.immutable/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/net6.0/System.Collections.Immutable.dll", - "lib/net6.0/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "system.collections.immutable.6.0.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition/6.0.0": { - "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", - "type": "package", - "path": "system.composition/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.targets", - "buildTransitive/netcoreapp3.1/_._", - "system.composition.6.0.0.nupkg.sha512", - "system.composition.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition.AttributedModel/6.0.0": { - "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", - "type": "package", - "path": "system.composition.attributedmodel/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Composition.AttributedModel.dll", - "lib/net461/System.Composition.AttributedModel.xml", - "lib/net6.0/System.Composition.AttributedModel.dll", - "lib/net6.0/System.Composition.AttributedModel.xml", - "lib/netstandard2.0/System.Composition.AttributedModel.dll", - "lib/netstandard2.0/System.Composition.AttributedModel.xml", - "system.composition.attributedmodel.6.0.0.nupkg.sha512", - "system.composition.attributedmodel.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition.Convention/6.0.0": { - "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", - "type": "package", - "path": "system.composition.convention/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Composition.Convention.dll", - "lib/net461/System.Composition.Convention.xml", - "lib/net6.0/System.Composition.Convention.dll", - "lib/net6.0/System.Composition.Convention.xml", - "lib/netstandard2.0/System.Composition.Convention.dll", - "lib/netstandard2.0/System.Composition.Convention.xml", - "system.composition.convention.6.0.0.nupkg.sha512", - "system.composition.convention.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition.Hosting/6.0.0": { - "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", - "type": "package", - "path": "system.composition.hosting/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Composition.Hosting.dll", - "lib/net461/System.Composition.Hosting.xml", - "lib/net6.0/System.Composition.Hosting.dll", - "lib/net6.0/System.Composition.Hosting.xml", - "lib/netstandard2.0/System.Composition.Hosting.dll", - "lib/netstandard2.0/System.Composition.Hosting.xml", - "system.composition.hosting.6.0.0.nupkg.sha512", - "system.composition.hosting.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition.Runtime/6.0.0": { - "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", - "type": "package", - "path": "system.composition.runtime/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Composition.Runtime.dll", - "lib/net461/System.Composition.Runtime.xml", - "lib/net6.0/System.Composition.Runtime.dll", - "lib/net6.0/System.Composition.Runtime.xml", - "lib/netstandard2.0/System.Composition.Runtime.dll", - "lib/netstandard2.0/System.Composition.Runtime.xml", - "system.composition.runtime.6.0.0.nupkg.sha512", - "system.composition.runtime.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Composition.TypedParts/6.0.0": { - "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", - "type": "package", - "path": "system.composition.typedparts/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Composition.TypedParts.dll", - "lib/net461/System.Composition.TypedParts.xml", - "lib/net6.0/System.Composition.TypedParts.dll", - "lib/net6.0/System.Composition.TypedParts.xml", - "lib/netstandard2.0/System.Composition.TypedParts.dll", - "lib/netstandard2.0/System.Composition.TypedParts.xml", - "system.composition.typedparts.6.0.0.nupkg.sha512", - "system.composition.typedparts.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Configuration.ConfigurationManager/6.0.1": { - "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==", - "type": "package", - "path": "system.configuration.configurationmanager/6.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Configuration.ConfigurationManager.dll", - "lib/net461/System.Configuration.ConfigurationManager.xml", - "lib/net6.0/System.Configuration.ConfigurationManager.dll", - "lib/net6.0/System.Configuration.ConfigurationManager.xml", - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", - "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", - "system.configuration.configurationmanager.6.0.1.nupkg.sha512", - "system.configuration.configurationmanager.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Diagnostics.DiagnosticSource/6.0.1": { - "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/6.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Diagnostics.DiagnosticSource.dll", - "lib/net461/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Drawing.Common/6.0.0": { - "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "type": "package", - "path": "system.drawing.common/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Drawing.Common.dll", - "lib/net461/System.Drawing.Common.xml", - "lib/net6.0/System.Drawing.Common.dll", - "lib/net6.0/System.Drawing.Common.xml", - "lib/netcoreapp3.1/System.Drawing.Common.dll", - "lib/netcoreapp3.1/System.Drawing.Common.xml", - "lib/netstandard2.0/System.Drawing.Common.dll", - "lib/netstandard2.0/System.Drawing.Common.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", - "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", - "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", - "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", - "runtimes/win/lib/net6.0/System.Drawing.Common.dll", - "runtimes/win/lib/net6.0/System.Drawing.Common.xml", - "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", - "system.drawing.common.6.0.0.nupkg.sha512", - "system.drawing.common.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Formats.Asn1/8.0.2": { - "sha512": "yUsFqNGa7tbwm5QOOnOR3VSoh8a0Yki39mTbhOnErdbg8hVSFtrK0EXerj286PXcegiF1LkE7lL++qqMZW5jIQ==", - "type": "package", - "path": "system.formats.asn1/8.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net461/System.Formats.Asn1.targets", - "buildTransitive/net462/_._", - "buildTransitive/net6.0/_._", - "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", - "lib/net462/System.Formats.Asn1.dll", - "lib/net462/System.Formats.Asn1.xml", - "lib/net6.0/System.Formats.Asn1.dll", - "lib/net6.0/System.Formats.Asn1.xml", - "lib/net7.0/System.Formats.Asn1.dll", - "lib/net7.0/System.Formats.Asn1.xml", - "lib/net8.0/System.Formats.Asn1.dll", - "lib/net8.0/System.Formats.Asn1.xml", - "lib/netstandard2.0/System.Formats.Asn1.dll", - "lib/netstandard2.0/System.Formats.Asn1.xml", - "system.formats.asn1.8.0.2.nupkg.sha512", - "system.formats.asn1.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.IdentityModel.Tokens.Jwt/7.1.2": { - "sha512": "Thhbe1peAmtSBFaV/ohtykXiZSOkx59Da44hvtWfIMFofDA3M3LaVyjstACf2rKGn4dEDR2cUpRAZ0Xs/zB+7Q==", - "type": "package", - "path": "system.identitymodel.tokens.jwt/7.1.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/System.IdentityModel.Tokens.Jwt.dll", - "lib/net461/System.IdentityModel.Tokens.Jwt.xml", - "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/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", - "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", - "system.identitymodel.tokens.jwt.7.1.2.nupkg.sha512", - "system.identitymodel.tokens.jwt.nuspec" - ] - }, - "System.IO.Pipelines/6.0.3": { - "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==", - "type": "package", - "path": "system.io.pipelines/6.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.IO.Pipelines.dll", - "lib/net461/System.IO.Pipelines.xml", - "lib/net6.0/System.IO.Pipelines.dll", - "lib/net6.0/System.IO.Pipelines.xml", - "lib/netcoreapp3.1/System.IO.Pipelines.dll", - "lib/netcoreapp3.1/System.IO.Pipelines.xml", - "lib/netstandard2.0/System.IO.Pipelines.dll", - "lib/netstandard2.0/System.IO.Pipelines.xml", - "system.io.pipelines.6.0.3.nupkg.sha512", - "system.io.pipelines.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Memory/4.5.4": { - "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "type": "package", - "path": "system.memory/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.4.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Memory.Data/1.0.2": { - "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "type": "package", - "path": "system.memory.data/1.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "DotNetPackageIcon.png", - "README.md", - "lib/net461/System.Memory.Data.dll", - "lib/net461/System.Memory.Data.xml", - "lib/netstandard2.0/System.Memory.Data.dll", - "lib/netstandard2.0/System.Memory.Data.xml", - "system.memory.data.1.0.2.nupkg.sha512", - "system.memory.data.nuspec" - ] - }, - "System.Numerics.Vectors/4.5.0": { - "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "type": "package", - "path": "system.numerics.vectors/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.Numerics.Vectors.dll", - "lib/netstandard1.0/System.Numerics.Vectors.xml", - "lib/netstandard2.0/System.Numerics.Vectors.dll", - "lib/netstandard2.0/System.Numerics.Vectors.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.Numerics.Vectors.dll", - "ref/net45/System.Numerics.Vectors.xml", - "ref/net46/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/System.Numerics.Vectors.dll", - "ref/netstandard1.0/System.Numerics.Vectors.xml", - "ref/netstandard2.0/System.Numerics.Vectors.dll", - "ref/netstandard2.0/System.Numerics.Vectors.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.numerics.vectors.4.5.0.nupkg.sha512", - "system.numerics.vectors.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Reflection.Metadata/6.0.1": { - "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==", - "type": "package", - "path": "system.reflection.metadata/6.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Reflection.Metadata.dll", - "lib/net461/System.Reflection.Metadata.xml", - "lib/net6.0/System.Reflection.Metadata.dll", - "lib/net6.0/System.Reflection.Metadata.xml", - "lib/netstandard2.0/System.Reflection.Metadata.dll", - "lib/netstandard2.0/System.Reflection.Metadata.xml", - "system.reflection.metadata.6.0.1.nupkg.sha512", - "system.reflection.metadata.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Runtime.Caching/6.0.0": { - "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", - "type": "package", - "path": "system.runtime.caching/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/_._", - "lib/net6.0/System.Runtime.Caching.dll", - "lib/net6.0/System.Runtime.Caching.xml", - "lib/netcoreapp3.1/System.Runtime.Caching.dll", - "lib/netcoreapp3.1/System.Runtime.Caching.xml", - "lib/netstandard2.0/System.Runtime.Caching.dll", - "lib/netstandard2.0/System.Runtime.Caching.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "runtimes/win/lib/net461/_._", - "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", - "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", - "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll", - "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml", - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", - "system.runtime.caching.6.0.0.nupkg.sha512", - "system.runtime.caching.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Security.AccessControl/6.0.0": { - "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "type": "package", - "path": "system.security.accesscontrol/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.xml", - "lib/net6.0/System.Security.AccessControl.dll", - "lib/net6.0/System.Security.AccessControl.xml", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/net461/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", - "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", - "system.security.accesscontrol.6.0.0.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Security.Cryptography.Cng/5.0.0": { - "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "type": "package", - "path": "system.security.cryptography.cng/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.xml", - "lib/net462/System.Security.Cryptography.Cng.dll", - "lib/net462/System.Security.Cryptography.Cng.xml", - "lib/net47/System.Security.Cryptography.Cng.dll", - "lib/net47/System.Security.Cryptography.Cng.xml", - "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", - "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", - "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.0/System.Security.Cryptography.Cng.xml", - "lib/netstandard2.1/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.1/System.Security.Cryptography.Cng.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.xml", - "ref/net462/System.Security.Cryptography.Cng.dll", - "ref/net462/System.Security.Cryptography.Cng.xml", - "ref/net47/System.Security.Cryptography.Cng.dll", - "ref/net47/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", - "ref/netstandard2.1/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.1/System.Security.Cryptography.Cng.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.cryptography.cng.5.0.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "type": "package", - "path": "system.security.cryptography.protecteddata/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Security.Cryptography.ProtectedData.dll", - "lib/net461/System.Security.Cryptography.ProtectedData.xml", - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", - "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "system.security.cryptography.protecteddata.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Security.Permissions/6.0.0": { - "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "type": "package", - "path": "system.security.permissions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Security.Permissions.dll", - "lib/net461/System.Security.Permissions.xml", - "lib/net5.0/System.Security.Permissions.dll", - "lib/net5.0/System.Security.Permissions.xml", - "lib/net6.0/System.Security.Permissions.dll", - "lib/net6.0/System.Security.Permissions.xml", - "lib/netcoreapp3.1/System.Security.Permissions.dll", - "lib/netcoreapp3.1/System.Security.Permissions.xml", - "lib/netstandard2.0/System.Security.Permissions.dll", - "lib/netstandard2.0/System.Security.Permissions.xml", - "runtimes/win/lib/net461/System.Security.Permissions.dll", - "runtimes/win/lib/net461/System.Security.Permissions.xml", - "system.security.permissions.6.0.0.nupkg.sha512", - "system.security.permissions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Security.Principal.Windows/5.0.0": { - "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "type": "package", - "path": "system.security.principal.windows/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.xml", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.xml", - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", - "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/System.Security.Principal.Windows.dll", - "ref/netstandard1.3/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", - "ref/netstandard2.0/System.Security.Principal.Windows.dll", - "ref/netstandard2.0/System.Security.Principal.Windows.xml", - "ref/uap10.0.16299/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.5.0.0.nupkg.sha512", - "system.security.principal.windows.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Text.Encoding.CodePages/6.0.0": { - "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "type": "package", - "path": "system.text.encoding.codepages/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Text.Encoding.CodePages.dll", - "lib/net461/System.Text.Encoding.CodePages.xml", - "lib/net6.0/System.Text.Encoding.CodePages.dll", - "lib/net6.0/System.Text.Encoding.CodePages.xml", - "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", - "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "system.text.encoding.codepages.6.0.0.nupkg.sha512", - "system.text.encoding.codepages.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Text.Encodings.Web/6.0.0": { - "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "type": "package", - "path": "system.text.encodings.web/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Text.Encodings.Web.dll", - "lib/net461/System.Text.Encodings.Web.xml", - "lib/net6.0/System.Text.Encodings.Web.dll", - "lib/net6.0/System.Text.Encodings.Web.xml", - "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", - "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", - "lib/netstandard2.0/System.Text.Encodings.Web.dll", - "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", - "system.text.encodings.web.6.0.0.nupkg.sha512", - "system.text.encodings.web.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Text.Json/4.7.2": { - "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==", - "type": "package", - "path": "system.text.json/4.7.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Text.Json.dll", - "lib/net461/System.Text.Json.xml", - "lib/netcoreapp3.0/System.Text.Json.dll", - "lib/netcoreapp3.0/System.Text.Json.xml", - "lib/netstandard2.0/System.Text.Json.dll", - "lib/netstandard2.0/System.Text.Json.xml", - "system.text.json.4.7.2.nupkg.sha512", - "system.text.json.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Channels/6.0.0": { - "sha512": "TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==", - "type": "package", - "path": "system.threading.channels/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Threading.Channels.dll", - "lib/net461/System.Threading.Channels.xml", - "lib/net6.0/System.Threading.Channels.dll", - "lib/net6.0/System.Threading.Channels.xml", - "lib/netcoreapp3.1/System.Threading.Channels.dll", - "lib/netcoreapp3.1/System.Threading.Channels.xml", - "lib/netstandard2.0/System.Threading.Channels.dll", - "lib/netstandard2.0/System.Threading.Channels.xml", - "lib/netstandard2.1/System.Threading.Channels.dll", - "lib/netstandard2.1/System.Threading.Channels.xml", - "system.threading.channels.6.0.0.nupkg.sha512", - "system.threading.channels.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Threading.Tasks.Extensions.dll", - "lib/net461/System.Threading.Tasks.Extensions.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netcoreapp2.1/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "system.threading.tasks.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Windows.Extensions/6.0.0": { - "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "type": "package", - "path": "system.windows.extensions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net6.0/System.Windows.Extensions.dll", - "lib/net6.0/System.Windows.Extensions.xml", - "lib/netcoreapp3.1/System.Windows.Extensions.dll", - "lib/netcoreapp3.1/System.Windows.Extensions.xml", - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", - "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", - "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", - "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", - "system.windows.extensions.6.0.0.nupkg.sha512", - "system.windows.extensions.nuspec", - "useSharedDesignerContext.txt" - ] - } - }, - "projectFileDependencyGroups": { - "net8.0": [ - "BCrypt.Net-Next >= 4.0.3", - "Microsoft.AspNetCore.Authentication.JwtBearer >= 8.*", - "Microsoft.AspNetCore.OpenApi >= 8.0.8", - "Microsoft.EntityFrameworkCore.Design >= 8.0.18", - "Microsoft.EntityFrameworkCore.SqlServer >= 8.0.17", - "Microsoft.EntityFrameworkCore.Tools >= 8.*", - "Swashbuckle.AspNetCore >= 8.*" - ] - }, - "packageFolders": { - "C:\\Users\\Hello\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "D:\\NeonCoders\\VehicleAppBackend\\VehicleAppBackend\\Vpassbackend\\Vpassbackend.csproj", - "projectName": "Vpassbackend", - "projectPath": "D:\\NeonCoders\\VehicleAppBackend\\VehicleAppBackend\\Vpassbackend\\Vpassbackend.csproj", - "packagesPath": "C:\\Users\\Hello\\.nuget\\packages\\", - "outputPath": "D:\\NeonCoders\\VehicleAppBackend\\VehicleAppBackend\\Vpassbackend\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" - ], - "configFilePaths": [ - "C:\\Users\\Hello\\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": [ - "net8.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Program Files\\dotnet\\library-packs": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - }, - "restoreAuditProperties": { - "enableAudit": "true", - "auditLevel": "low", - "auditMode": "direct" - } - }, - "frameworks": { - "net8.0": { - "targetAlias": "net8.0", - "dependencies": { - "BCrypt.Net-Next": { - "target": "Package", - "version": "[4.0.3, )" - }, - "Microsoft.AspNetCore.Authentication.JwtBearer": { - "target": "Package", - "version": "[8.*, )" - }, - "Microsoft.AspNetCore.OpenApi": { - "target": "Package", - "version": "[8.0.8, )" - }, - "Microsoft.EntityFrameworkCore.Design": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[8.0.18, )" - }, - "Microsoft.EntityFrameworkCore.SqlServer": { - "target": "Package", - "version": "[8.0.17, )" - }, - "Microsoft.EntityFrameworkCore.Tools": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[8.*, )" - }, - "Swashbuckle.AspNetCore": { - "target": "Package", - "version": "[8.*, )" - } - }, - "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\\8.0.401/PortableRuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Vpassbackend/obj/project.nuget.cache b/Vpassbackend/obj/project.nuget.cache deleted file mode 100644 index b82dfa1..0000000 --- a/Vpassbackend/obj/project.nuget.cache +++ /dev/null @@ -1,89 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "0LvAG9jld34=", - "success": true, - "projectFilePath": "D:\\NeonCoders\\VehicleAppBackend\\VehicleAppBackend\\Vpassbackend\\Vpassbackend.csproj", - "expectedPackageFiles": [ - "C:\\Users\\Hello\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\bcrypt.net-next\\4.0.3\\bcrypt.net-next.4.0.3.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\8.0.18\\microsoft.aspnetcore.authentication.jwtbearer.8.0.18.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.8\\microsoft.aspnetcore.openapi.8.0.8.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.codeanalysis.common\\4.5.0\\microsoft.codeanalysis.common.4.5.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.5.0\\microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.5.0\\microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.5.0\\microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.6\\microsoft.data.sqlclient.5.1.6.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.1\\microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.18\\microsoft.entityframeworkcore.8.0.18.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.18\\microsoft.entityframeworkcore.abstractions.8.0.18.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.18\\microsoft.entityframeworkcore.analyzers.8.0.18.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.18\\microsoft.entityframeworkcore.design.8.0.18.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.18\\microsoft.entityframeworkcore.relational.8.0.18.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\8.0.17\\microsoft.entityframeworkcore.sqlserver.8.0.17.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\8.0.18\\microsoft.entityframeworkcore.tools.8.0.18.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.identitymodel.abstractions\\7.1.2\\microsoft.identitymodel.abstractions.7.1.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\7.1.2\\microsoft.identitymodel.jsonwebtokens.7.1.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.identitymodel.logging\\7.1.2\\microsoft.identitymodel.logging.7.1.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.identitymodel.protocols\\7.1.2\\microsoft.identitymodel.protocols.7.1.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\7.1.2\\microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.identitymodel.tokens\\7.1.2\\microsoft.identitymodel.tokens.7.1.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.openapi\\1.6.23\\microsoft.openapi.1.6.23.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\swashbuckle.aspnetcore\\8.1.4\\swashbuckle.aspnetcore.8.1.4.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\8.1.4\\swashbuckle.aspnetcore.swagger.8.1.4.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\8.1.4\\swashbuckle.aspnetcore.swaggergen.8.1.4.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\8.1.4\\swashbuckle.aspnetcore.swaggerui.8.1.4.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.composition.attributedmodel\\6.0.0\\system.composition.attributedmodel.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.composition.convention\\6.0.0\\system.composition.convention.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.composition.hosting\\6.0.0\\system.composition.hosting.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.composition.runtime\\6.0.0\\system.composition.runtime.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.composition.typedparts\\6.0.0\\system.composition.typedparts.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.1\\system.configuration.configurationmanager.6.0.1.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.1\\system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.formats.asn1\\8.0.2\\system.formats.asn1.8.0.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.identitymodel.tokens.jwt\\7.1.2\\system.identitymodel.tokens.jwt.7.1.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.reflection.metadata\\6.0.1\\system.reflection.metadata.6.0.1.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.threading.channels\\6.0.0\\system.threading.channels.6.0.0.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\Hello\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file