diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..d75c14a
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,27 @@
+name: Run tests
+
+on:
+ push:
+ branches: [develop]
+ pull_request:
+ branches: [develop]
+
+jobs:
+ format-check:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repo
+ uses: actions/checkout@v3
+
+ - name: Setup .NET
+ uses: actions/setup-dotnet@v4
+ with:
+ dotnet-version: '9.0.x'
+
+ - name: Restore dependencies
+ run: dotnet restore
+ working-directory: ./CrowdedBackend
+
+ - name: Run dotnet test
+ run: dotnet test
+ working-directory: ./CrowdedBackend/CrowdedBackend.Tests
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj b/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj
index c5d2778..a3ddaa2 100644
--- a/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj
+++ b/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj
@@ -8,18 +8,21 @@
-
+
+
-
+
-
-
+
+
+ PreserveNewest
+
diff --git a/CrowdedBackend/CrowdedBackend.Tests/CustomWebApplicationFactory.cs b/CrowdedBackend/CrowdedBackend.Tests/CustomWebApplicationFactory.cs
new file mode 100644
index 0000000..22f0fb2
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/CustomWebApplicationFactory.cs
@@ -0,0 +1,43 @@
+using CrowdedBackend;
+using CrowdedBackend.Models;
+using CrowdedBackend.Services.CalculatePositions;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.AspNetCore.Mvc.Testing;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.Extensions.DependencyInjection;
+
+namespace CrowdedBackend.Tests;
+
+public class CustomWebApplicationFactory : WebApplicationFactory
+{
+ protected override void ConfigureWebHost(IWebHostBuilder builder)
+ {
+ builder.UseEnvironment("Testing");
+ builder.ConfigureServices(services =>
+ {
+ // Remove the existing DbContext registration
+ var descriptor = services.SingleOrDefault(
+ d => d.ServiceType == typeof(DbContextOptions));
+ if (descriptor != null)
+ {
+ services.Remove(descriptor);
+ }
+
+ // Register CircleUtils in the DI container
+ services.AddScoped();
+
+ // Unique DB name per test class
+ var dbName = $"TestDb_{GetType().Name}";
+
+ services.AddDbContext(options =>
+ options.UseInMemoryDatabase(dbName));
+
+ // Build and initialize DB
+ var sp = services.BuildServiceProvider();
+ using var scope = sp.CreateScope();
+ var db = scope.ServiceProvider.GetRequiredService();
+ db.Database.EnsureDeleted(); // Clean slate
+ db.Database.EnsureCreated();
+ });
+ }
+}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/Data/raspOutputData.json b/CrowdedBackend/CrowdedBackend.Tests/Data/raspOutputData.json
new file mode 100644
index 0000000..0b652dc
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/Data/raspOutputData.json
@@ -0,0 +1,1155 @@
+{
+ "MachineID": 1,
+ "Events": [
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Event (0x3e) plen 31 #1 [hci0] 2025-04-14 10:29:57.404711",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: 47:C1:75:A8:6E:FB (Resolvable)",
+ " Data length: 19",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 7 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 7d1f75b9392258",
+ " RSSI: -79 dBm (0xb1)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "47:C1:75:A8:6E:FB",
+ "Rssi": -79,
+ "TxPower": 7,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 29 {0x0001} [hci0] 2025-04-14 10:29:57.404766",
+ "RawDetails": [
+ " LE Address: 70:56:81:EE:F1:04 (Apple, Inc.)",
+ " RSSI: -71 dBm (0xb9)",
+ " Flags: 0x00000000",
+ " Data length: 15",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " Company: Apple, Inc. (76)",
+ " Type: Apple TV (9)",
+ " Data: 023bc0a801f4"
+ ],
+ "EventType": null,
+ "Address": "70:56:81:EE:F1:04",
+ "Rssi": -71,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Event (0x3e) plen 31 #2 [hci0] 2025-04-14 10:29:57.422163",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: 5B:83:24:DE:80:6F (Resolvable)",
+ " Data length: 19",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 8 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 7f1feaf80cbbf8",
+ " RSSI: -82 dBm (0xae)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "5B:83:24:DE:80:6F",
+ "Rssi": -82,
+ "TxPower": 8,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 33 {0x0001} [hci0] 2025-04-14 10:29:57.422224",
+ "RawDetails": [
+ " LE Address: 47:C1:75:A8:6E:FB (Resolvable)",
+ " RSSI: -79 dBm (0xb1)",
+ " Flags: 0x00000000",
+ " Data length: 19",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 7 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 7d1f75b9392258"
+ ],
+ "EventType": null,
+ "Address": "47:C1:75:A8:6E:FB",
+ "Rssi": -79,
+ "TxPower": 7,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Event (0x3e) plen 43 #3 [hci0] 2025-04-14 10:29:57.443339",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Scannable undirected - ADV_SCAN_IND (0x02)",
+ " Address type: Random (0x01)",
+ " Address: 49:74:29:01:90:82 (Resolvable)",
+ " Data length: 31",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (7)",
+ " Data: 01142021118f100004c9c2422ab8c014bcca61ff9f9d780958",
+ " RSSI: -75 dBm (0xb5)"
+ ],
+ "EventType": "Scannable undirected - ADV_SCAN_IND (0x02)",
+ "Address": "49:74:29:01:90:82",
+ "Rssi": -75,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 33 {0x0001} [hci0] 2025-04-14 10:29:57.443439",
+ "RawDetails": [
+ " LE Address: 5B:83:24:DE:80:6F (Resolvable)",
+ " RSSI: -82 dBm (0xae)",
+ " Flags: 0x00000000",
+ " Data length: 19",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 8 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 7f1feaf80cbbf8"
+ ],
+ "EventType": null,
+ "Address": "5B:83:24:DE:80:6F",
+ "Rssi": -82,
+ "TxPower": 8,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Event (0x3e) plen 39 #4 [hci0] 2025-04-14 10:29:57.451657",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: 61:9B:E8:D9:6A:6E (Resolvable)",
+ " Data length: 27",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " Company: Apple, Inc. (76)",
+ " Type: Apple TV (9)",
+ " Data: 1329c0a801681b58",
+ " Type: Unknown (22)",
+ " Data: 00cf3843e45617d5",
+ " RSSI: -66 dBm (0xbe)"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "61:9B:E8:D9:6A:6E",
+ "Rssi": -66,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 45 {0x0001} [hci0] 2025-04-14 10:29:57.451723",
+ "RawDetails": [
+ " LE Address: 49:74:29:01:90:82 (Resolvable)",
+ " RSSI: -75 dBm (0xb5)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 31",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (7)",
+ " Data: 01142021118f100004c9c2422ab8c014bcca61ff9f9d780958"
+ ],
+ "EventType": null,
+ "Address": "49:74:29:01:90:82",
+ "Rssi": -75,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 41 {0x0001} [hci0] 2025-04-14 10:29:57.451730",
+ "RawDetails": [
+ " LE Address: 61:9B:E8:D9:6A:6E (Resolvable)",
+ " RSSI: -66 dBm (0xbe)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 27",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " Company: Apple, Inc. (76)",
+ " Type: Apple TV (9)",
+ " Data: 1329c0a801681b58",
+ " Type: Unknown (22)",
+ " Data: 00cf3843e45617d5"
+ ],
+ "EventType": null,
+ "Address": "61:9B:E8:D9:6A:6E",
+ "Rssi": -66,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Event (0x3e) plen 43 #5 [hci0] 2025-04-14 10:29:57.471661",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: 1D:B8:DB:4C:4F:98 (Non-Resolvable)",
+ " Data length: 31",
+ " Company: Microsoft (6)",
+ " Data: 010f2022021fc20194564f0fe516417675c682704dc5a7a1de2b13",
+ " RSSI: -81 dBm (0xaf)"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "1D:B8:DB:4C:4F:98",
+ "Rssi": -81,
+ "TxPower": null,
+ "Company": "Microsoft (6)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 45 {0x0001} [hci0] 2025-04-14 10:29:57.471713",
+ "RawDetails": [
+ " LE Address: 1D:B8:DB:4C:4F:98 (Non-Resolvable)",
+ " RSSI: -81 dBm (0xaf)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 31",
+ " Company: Microsoft (6)",
+ " Data: 010f2022021fc20194564f0fe516417675c682704dc5a7a1de2b13"
+ ],
+ "EventType": null,
+ "Address": "1D:B8:DB:4C:4F:98",
+ "Rssi": -81,
+ "TxPower": null,
+ "Company": "Microsoft (6)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Event (0x3e) plen 20 #6 [hci0] 2025-04-14 10:29:57.474521",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: DF:A9:3F:FA:01:CE (Static)",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: ac00",
+ " RSSI: -75 dBm (0xb5)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "DF:A9:3F:FA:01:CE",
+ "Rssi": -75,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Event (0x3e) plen 29 #7 [hci0] 2025-04-14 10:29:57.501029",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: 54:DC:E4:7E:A4:B4 (Resolvable)",
+ " Data length: 17",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 12 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 001cf8ad9b",
+ " RSSI: -71 dBm (0xb9)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "54:DC:E4:7E:A4:B4",
+ "Rssi": -71,
+ "TxPower": 12,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 22 {0x0001} [hci0] 2025-04-14 10:29:57.501099",
+ "RawDetails": [
+ " LE Address: DF:A9:3F:FA:01:CE (Static)",
+ " RSSI: -75 dBm (0xb5)",
+ " Flags: 0x00000000",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: ac00"
+ ],
+ "EventType": null,
+ "Address": "DF:A9:3F:FA:01:CE",
+ "Rssi": -75,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Event (0x3e) plen 30 #8 [hci0] 2025-04-14 10:29:57.537838",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: 53:EC:6A:9F:F0:84 (Resolvable)",
+ " Data length: 18",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 12 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 0819fe05b228",
+ " RSSI: -59 dBm (0xc5)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "53:EC:6A:9F:F0:84",
+ "Rssi": -59,
+ "TxPower": 12,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 31 {0x0001} [hci0] 2025-04-14 10:29:57.537897",
+ "RawDetails": [
+ " LE Address: 54:DC:E4:7E:A4:B4 (Resolvable)",
+ " RSSI: -71 dBm (0xb9)",
+ " Flags: 0x00000000",
+ " Data length: 17",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 12 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 001cf8ad9b"
+ ],
+ "EventType": null,
+ "Address": "54:DC:E4:7E:A4:B4",
+ "Rssi": -71,
+ "TxPower": 12,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Event (0x3e) plen 20 #9 [hci0] 2025-04-14 10:29:57.575224",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: F7:0C:2E:F0:6E:57 (Static)",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: e502",
+ " RSSI: -75 dBm (0xb5)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "F7:0C:2E:F0:6E:57",
+ "Rssi": -75,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 32 {0x0001} [hci0] 2025-04-14 10:29:57.575336",
+ "RawDetails": [
+ " LE Address: 53:EC:6A:9F:F0:84 (Resolvable)",
+ " RSSI: -59 dBm (0xc5)",
+ " Flags: 0x00000000",
+ " Data length: 18",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 12 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 0819fe05b228"
+ ],
+ "EventType": null,
+ "Address": "53:EC:6A:9F:F0:84",
+ "Rssi": -59,
+ "TxPower": 12,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 40 #10 [hci0] 2025-04-14 10:29:57.643311",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Scannable undirected - ADV_SCAN_IND (0x02)",
+ " Address type: Random (0x01)",
+ " Address: 5A:DA:DA:73:DF:F0 (Resolvable)",
+ " Data length: 28",
+ " 16-bit Service UUIDs (complete): 1 entry",
+ " Google (0xfe9f)",
+ " Service Data: Google (0xfe9f)",
+ " Data: 0000000000000000000000000000000000000000",
+ " RSSI: -68 dBm (0xbc)"
+ ],
+ "EventType": "Scannable undirected - ADV_SCAN_IND (0x02)",
+ "Address": "5A:DA:DA:73:DF:F0",
+ "Rssi": -68,
+ "TxPower": null,
+ "Company": null,
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 22 {0x0001} [hci0] 2025-04-14 10:29:57.643371",
+ "RawDetails": [
+ " LE Address: F7:0C:2E:F0:6E:57 (Static)",
+ " RSSI: -75 dBm (0xb5)",
+ " Flags: 0x00000000",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: e502"
+ ],
+ "EventType": null,
+ "Address": "F7:0C:2E:F0:6E:57",
+ "Rssi": -75,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 29 #11 [hci0] 2025-04-14 10:29:57.659775",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Public (0x00)",
+ " Address: 1C:B3:C9:3C:09:43 (Apple, Inc.)",
+ " Data length: 17",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 12 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 0514204052",
+ " RSSI: -62 dBm (0xc2)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "1C:B3:C9:3C:09:43",
+ "Rssi": -62,
+ "TxPower": 12,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 42 {0x0001} [hci0] 2025-04-14 10:29:57.659824",
+ "RawDetails": [
+ " LE Address: 5A:DA:DA:73:DF:F0 (Resolvable)",
+ " RSSI: -68 dBm (0xbc)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 28",
+ " 16-bit Service UUIDs (complete): 1 entry",
+ " Google (0xfe9f)",
+ " Service Data: Google (0xfe9f)",
+ " Data: 0000000000000000000000000000000000000000"
+ ],
+ "EventType": null,
+ "Address": "5A:DA:DA:73:DF:F0",
+ "Rssi": -68,
+ "TxPower": null,
+ "Company": null,
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 29 #12 [hci0] 2025-04-14 10:29:57.677232",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Public (0x00)",
+ " Address: DC:56:E7:53:44:2D (Apple, Inc.)",
+ " Data length: 17",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 12 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 0714085f30",
+ " RSSI: -82 dBm (0xae)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "DC:56:E7:53:44:2D",
+ "Rssi": -82,
+ "TxPower": 12,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 31 {0x0001} [hci0] 2025-04-14 10:29:57.677271",
+ "RawDetails": [
+ " LE Address: 1C:B3:C9:3C:09:43 (Apple, Inc.)",
+ " RSSI: -62 dBm (0xc2)",
+ " Flags: 0x00000000",
+ " Data length: 17",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 12 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 0514204052"
+ ],
+ "EventType": null,
+ "Address": "1C:B3:C9:3C:09:43",
+ "Rssi": -62,
+ "TxPower": 12,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 30 #13 [hci0] 2025-04-14 10:29:57.840416",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: 56:D1:1B:B0:29:F5 (Resolvable)",
+ " Data length: 18",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 12 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 0819fe05b228",
+ " RSSI: -59 dBm (0xc5)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "56:D1:1B:B0:29:F5",
+ "Rssi": -59,
+ "TxPower": 12,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 31 {0x0001} [hci0] 2025-04-14 10:29:57.840476",
+ "RawDetails": [
+ " LE Address: DC:56:E7:53:44:2D (Apple, Inc.)",
+ " RSSI: -82 dBm (0xae)",
+ " Flags: 0x00000000",
+ " Data length: 17",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 12 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 0714085f30"
+ ],
+ "EventType": null,
+ "Address": "DC:56:E7:53:44:2D",
+ "Rssi": -82,
+ "TxPower": 12,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 20 #14 [hci0] 2025-04-14 10:29:57.983301",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: FA:25:2B:9D:16:59 (Static)",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0003",
+ " RSSI: -66 dBm (0xbe)"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "FA:25:2B:9D:16:59",
+ "Rssi": -66,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 32 {0x0001} [hci0] 2025-04-14 10:29:57.983357",
+ "RawDetails": [
+ " LE Address: 56:D1:1B:B0:29:F5 (Resolvable)",
+ " RSSI: -59 dBm (0xc5)",
+ " Flags: 0x00000000",
+ " Data length: 18",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " TX power: 12 dBm",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 0819fe05b228"
+ ],
+ "EventType": null,
+ "Address": "56:D1:1B:B0:29:F5",
+ "Rssi": -59,
+ "TxPower": 12,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 22 {0x0001} [hci0] 2025-04-14 10:29:57.983364",
+ "RawDetails": [
+ " LE Address: FA:25:2B:9D:16:59 (Static)",
+ " RSSI: -66 dBm (0xbe)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0003"
+ ],
+ "EventType": null,
+ "Address": "FA:25:2B:9D:16:59",
+ "Rssi": -66,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622997
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 36 #15 [hci0] 2025-04-14 10:29:58.383915",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: 51:1B:BE:2B:A7:22 (Resolvable)",
+ " Data length: 24",
+ " Flags: 0x02",
+ " LE General Discoverable Mode",
+ " 16-bit Service UUIDs (complete): 1 entry",
+ " Google (0xfea0)",
+ " Service Data: Google (0xfea0)",
+ " Data: 03fa8fca97816a796e6d209eff",
+ " RSSI: -82 dBm (0xae)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "51:1B:BE:2B:A7:22",
+ "Rssi": -82,
+ "TxPower": null,
+ "Company": null,
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 20 #16 [hci0] 2025-04-14 10:29:58.427600",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: FD:24:19:13:D9:39 (Static)",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0002",
+ " RSSI: -76 dBm (0xb4)"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "FD:24:19:13:D9:39",
+ "Rssi": -76,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 38 {0x0001} [hci0] 2025-04-14 10:29:58.427644",
+ "RawDetails": [
+ " LE Address: 51:1B:BE:2B:A7:22 (Resolvable)",
+ " RSSI: -82 dBm (0xae)",
+ " Flags: 0x00000000",
+ " Data length: 24",
+ " Flags: 0x02",
+ " LE General Discoverable Mode",
+ " 16-bit Service UUIDs (complete): 1 entry",
+ " Google (0xfea0)",
+ " Service Data: Google (0xfea0)",
+ " Data: 03fa8fca97816a796e6d209eff"
+ ],
+ "EventType": null,
+ "Address": "51:1B:BE:2B:A7:22",
+ "Rssi": -82,
+ "TxPower": null,
+ "Company": null,
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 22 {0x0001} [hci0] 2025-04-14 10:29:58.427651",
+ "RawDetails": [
+ " LE Address: FD:24:19:13:D9:39 (Static)",
+ " RSSI: -76 dBm (0xb4)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0002"
+ ],
+ "EventType": null,
+ "Address": "FD:24:19:13:D9:39",
+ "Rssi": -76,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 43 #17 [hci0] 2025-04-14 10:29:58.448132",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: E0:51:C7:6B:96:D4 (Static)",
+ " Data length: 31",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 1075c7113d2a5f3d8c113d6e634bf779a51b80d6e6f5e402d1",
+ " RSSI: -58 dBm (0xc6)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "E0:51:C7:6B:96:D4",
+ "Rssi": -58,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 39 #18 [hci0] 2025-04-14 10:29:58.653572",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: 51:36:36:67:A1:64 (Resolvable)",
+ " Data length: 27",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " Company: Apple, Inc. (76)",
+ " Type: Apple TV (9)",
+ " Data: 1371c0a801d41b58",
+ " Type: Unknown (22)",
+ " Data: 005e6b0e5504dba0",
+ " RSSI: -80 dBm (0xb0)"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "51:36:36:67:A1:64",
+ "Rssi": -80,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 45 {0x0001} [hci0] 2025-04-14 10:29:58.653620",
+ "RawDetails": [
+ " LE Address: E0:51:C7:6B:96:D4 (Static)",
+ " RSSI: -58 dBm (0xc6)",
+ " Flags: 0x00000000",
+ " Data length: 31",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 1075c7113d2a5f3d8c113d6e634bf779a51b80d6e6f5e402d1"
+ ],
+ "EventType": null,
+ "Address": "E0:51:C7:6B:96:D4",
+ "Rssi": -58,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 41 {0x0001} [hci0] 2025-04-14 10:29:58.653627",
+ "RawDetails": [
+ " LE Address: 51:36:36:67:A1:64 (Resolvable)",
+ " RSSI: -80 dBm (0xb0)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 27",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " Company: Apple, Inc. (76)",
+ " Type: Apple TV (9)",
+ " Data: 1371c0a801d41b58",
+ " Type: Unknown (22)",
+ " Data: 005e6b0e5504dba0"
+ ],
+ "EventType": null,
+ "Address": "51:36:36:67:A1:64",
+ "Rssi": -80,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 43 #19 [hci0] 2025-04-14 10:29:58.786414",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: CD:6A:BF:3A:7E:90 (Static)",
+ " Data length: 31",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 102159bea6296828dfa2c398cc19a540ae8d68ba8792a2016c",
+ " RSSI: -78 dBm (0xb2)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "CD:6A:BF:3A:7E:90",
+ "Rssi": -78,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 20 #20 [hci0] 2025-04-14 10:29:58.808813",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: DC:C1:20:75:FB:E2 (Static)",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0000",
+ " RSSI: -83 dBm (0xad)"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "DC:C1:20:75:FB:E2",
+ "Rssi": -83,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 45 {0x0001} [hci0] 2025-04-14 10:29:58.808853",
+ "RawDetails": [
+ " LE Address: CD:6A:BF:3A:7E:90 (Static)",
+ " RSSI: -78 dBm (0xb2)",
+ " Flags: 0x00000000",
+ " Data length: 31",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 102159bea6296828dfa2c398cc19a540ae8d68ba8792a2016c"
+ ],
+ "EventType": null,
+ "Address": "CD:6A:BF:3A:7E:90",
+ "Rssi": -78,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 22 {0x0001} [hci0] 2025-04-14 10:29:58.808860",
+ "RawDetails": [
+ " LE Address: DC:C1:20:75:FB:E2 (Static)",
+ " RSSI: -83 dBm (0xad)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0000"
+ ],
+ "EventType": null,
+ "Address": "DC:C1:20:75:FB:E2",
+ "Rssi": -83,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 29 #21 [hci0] 2025-04-14 10:29:58.886617",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Connectable undirected - ADV_IND (0x00)",
+ " Address type: Random (0x01)",
+ " Address: 56:A4:D8:FB:05:3F (Resolvable)",
+ " Data length: 17",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 27989faef8",
+ " TX power: 0 dBm",
+ " RSSI: -77 dBm (0xb3)"
+ ],
+ "EventType": "Connectable undirected - ADV_IND (0x00)",
+ "Address": "56:A4:D8:FB:05:3F",
+ "Rssi": -77,
+ "TxPower": 0,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622998
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 39 #22 [hci0] 2025-04-14 10:29:59.009440",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: 4D:B7:0A:BA:FC:DC (Resolvable)",
+ " Data length: 27",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " Company: Apple, Inc. (76)",
+ " Type: Apple TV (9)",
+ " Data: 1397c0a801921b58",
+ " Type: Unknown (22)",
+ " Data: 0046905cb60d1fbb",
+ " RSSI: -79 dBm (0xb1)"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "4D:B7:0A:BA:FC:DC",
+ "Rssi": -79,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622999
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 31 {0x0001} [hci0] 2025-04-14 10:29:59.009497",
+ "RawDetails": [
+ " LE Address: 56:A4:D8:FB:05:3F (Resolvable)",
+ " RSSI: -77 dBm (0xb3)",
+ " Flags: 0x00000000",
+ " Data length: 17",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (16)",
+ " Data: 27989faef8",
+ " TX power: 0 dBm"
+ ],
+ "EventType": null,
+ "Address": "56:A4:D8:FB:05:3F",
+ "Rssi": -77,
+ "TxPower": 0,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622999
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 41 {0x0001} [hci0] 2025-04-14 10:29:59.009504",
+ "RawDetails": [
+ " LE Address: 4D:B7:0A:BA:FC:DC (Resolvable)",
+ " RSSI: -79 dBm (0xb1)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 27",
+ " Flags: 0x1a",
+ " LE General Discoverable Mode",
+ " Simultaneous LE and BR/EDR (Controller)",
+ " Simultaneous LE and BR/EDR (Host)",
+ " Company: Apple, Inc. (76)",
+ " Type: Apple TV (9)",
+ " Data: 1397c0a801921b58",
+ " Type: Unknown (22)",
+ " Data: 0046905cb60d1fbb"
+ ],
+ "EventType": null,
+ "Address": "4D:B7:0A:BA:FC:DC",
+ "Rssi": -79,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744622999
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 20 #23 [hci0] 2025-04-14 10:30:00.064301",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: E9:A0:0A:09:3B:DE (Static)",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0003",
+ " RSSI: -81 dBm (0xaf)"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "E9:A0:0A:09:3B:DE",
+ "Rssi": -81,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744623000
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 22 {0x0001} [hci0] 2025-04-14 10:30:00.064399",
+ "RawDetails": [
+ " LE Address: E9:A0:0A:09:3B:DE (Static)",
+ " RSSI: -81 dBm (0xaf)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0003"
+ ],
+ "EventType": null,
+ "Address": "E9:A0:0A:09:3B:DE",
+ "Rssi": -81,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744623000
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 20 #24 [hci0] 2025-04-14 10:30:00.366309",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: F4:72:94:FB:BC:8D (Static)",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0002",
+ " RSSI: -56 dBm (0xc8)"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "F4:72:94:FB:BC:8D",
+ "Rssi": -56,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744623000
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 22 {0x0001} [hci0] 2025-04-14 10:30:00.366368",
+ "RawDetails": [
+ " LE Address: F4:72:94:FB:BC:8D (Static)",
+ " RSSI: -56 dBm (0xc8)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0002"
+ ],
+ "EventType": null,
+ "Address": "F4:72:94:FB:BC:8D",
+ "Rssi": -56,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744623000
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 20 #25 [hci0] 2025-04-14 10:30:00.733835",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: F5:2E:3D:06:36:5D (Static)",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0002",
+ " RSSI: -81 dBm (0xaf)"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "F5:2E:3D:06:36:5D",
+ "Rssi": -81,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744623000
+ },
+ {
+ "HeaderLine": "@ MGMT Event: De.. (0x0012) plen 22 {0x0001} [hci0] 2025-04-14 10:30:00.733936",
+ "RawDetails": [
+ " LE Address: F5:2E:3D:06:36:5D (Static)",
+ " RSSI: -81 dBm (0xaf)",
+ " Flags: 0x00000004",
+ " Not Connectable",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unknown (18)",
+ " Data: 0002"
+ ],
+ "EventType": null,
+ "Address": "F5:2E:3D:06:36:5D",
+ "Rssi": -81,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744623000
+ },
+ {
+ "HeaderLine": "\u003E HCI Event: LE Meta Ev.. (0x3e) plen 20 #26 [hci0] 2025-04-14 10:30:01.622020",
+ "RawDetails": [
+ " LE Advertising Report (0x02)",
+ " Num reports: 1",
+ " Event type: Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ " Address type: Random (0x01)",
+ " Address: C6:D9:33:1F:9B:C0 (Static)",
+ " Data length: 8",
+ " Company: Apple, Inc. (76)",
+ " Type: Unk"
+ ],
+ "EventType": "Non connectable undirected - ADV_NONCONN_IND (0x03)",
+ "Address": "C6:D9:33:1F:9B:C0",
+ "Rssi": -50,
+ "TxPower": null,
+ "Company": "Apple, Inc. (76)",
+ "UnixTimestamp": 1744623001
+ }
+ ]
+}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Controllers/DetectedDevicesIntegrationTests.cs b/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Controllers/DetectedDevicesIntegrationTests.cs
new file mode 100644
index 0000000..ed74ad3
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Controllers/DetectedDevicesIntegrationTests.cs
@@ -0,0 +1,106 @@
+using System.Net;
+using System.Net.Http.Json;
+using System.Text.Json;
+using CrowdedBackend.Models;
+using Xunit;
+using Xunit.Abstractions;
+
+
+namespace CrowdedBackend.Tests.IntegrationTests.Controllers
+{
+ [Collection("Non-Parallel Collection")]
+ public class DetectedDevicesIntegrationTests : IClassFixture
+ {
+ private readonly HttpClient _client;
+ private readonly CustomWebApplicationFactory _factory;
+ private readonly ITestOutputHelper _TestOutput;
+ private long timestamp = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
+
+
+ public DetectedDevicesIntegrationTests(CustomWebApplicationFactory factory, ITestOutputHelper TestOutput)
+ {
+ _TestOutput = TestOutput;
+ _factory = factory;
+ _client = _factory.CreateClient();
+ }
+
+
+ [Fact]
+ public async Task GetHeatmapAtSpecificTime_returnBitstring()
+ {
+ // Arrange: Create a Venue object to send to the API
+ var venue = new Venue { VenueName = "TestVenue" };
+
+ // Act: Send the POST request to the /api/Venue endpoint
+ await _client.PostAsJsonAsync("/api/Venue", venue);
+
+
+ // Arrange
+ timestamp -= (timestamp % 30000); // same TimeInterval used in controller
+ var detectedDevice = new DetectedDevice
+ {
+ DeviceX = 50,
+ DeviceY = 100,
+ Timestamp = timestamp,
+ VenueID = venue.VenueID,
+ };
+
+ await _client.PostAsJsonAsync("/api/DetectedDevices", detectedDevice);
+
+ var result = await _client.GetAsync($"/api/DetectedDevices/getHeatmapAtSpecificTime/{timestamp}");
+ var responseContent = await result.Content.ReadAsStringAsync();
+
+ // Assert
+ Assert.False(string.IsNullOrWhiteSpace(responseContent));
+ _TestOutput.WriteLine(responseContent);
+ }
+
+ [Fact]
+ public async Task HandleRaspPostRequest_test()
+ {
+ // Arrange
+ var filePath = Path.Combine(Directory.GetCurrentDirectory(), "Data", "raspOutputData.json");
+
+ var raspOutputData = JsonSerializer.Deserialize(
+ File.ReadAllText(filePath),
+ new JsonSerializerOptions { PropertyNameCaseInsensitive = true });
+
+ var response = await _client.PostAsJsonAsync("/api/detectedDevices/uploadMultiple", raspOutputData);
+ _TestOutput.WriteLine($"response : {response}");
+
+
+ // Assert
+ Assert.Equal(HttpStatusCode.Created, response.StatusCode);
+ }
+
+ [Fact]
+ public async Task CanGetDetectedDevices()
+ {
+ timestamp -= (timestamp % 30000); // same TimeInterval used in controller
+ var detectedDevice = new DetectedDevice
+ {
+ DeviceX = 50,
+ DeviceY = 70,
+ Timestamp = timestamp,
+ VenueID = 1
+ };
+
+ await _client.PostAsJsonAsync("/api/DetectedDevices", detectedDevice);
+
+ var response = await _client.GetAsync("/api/DetectedDevices");
+ response.EnsureSuccessStatusCode();
+
+ var responseString = await response.Content.ReadAsStringAsync();
+ var devices = JsonSerializer.Deserialize>(responseString, new JsonSerializerOptions
+ {
+ PropertyNameCaseInsensitive = true
+ });
+
+ Assert.NotNull(devices);
+ Assert.NotEmpty(devices);
+
+ _TestOutput.WriteLine($"Found {devices.Count} detected devices.");
+ }
+
+ }
+}
diff --git a/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Controllers/RaspDataIntegrationTests.cs b/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Controllers/RaspDataIntegrationTests.cs
new file mode 100644
index 0000000..aaf8914
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Controllers/RaspDataIntegrationTests.cs
@@ -0,0 +1,103 @@
+using System.Net;
+using System.Net.Http.Json;
+using CrowdedBackend.Models;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.AspNetCore.Mvc.Testing;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.Extensions.DependencyInjection;
+using Xunit;
+
+namespace CrowdedBackend.Tests.IntegrationTests.Controllers
+{
+ public class RaspDataIntegrationTests : IClassFixture
+ {
+ private readonly HttpClient _client;
+ private readonly CustomWebApplicationFactory _factory;
+
+ public RaspDataIntegrationTests(CustomWebApplicationFactory factory)
+ {
+ _factory = factory;
+ _client = _factory.CreateClient();
+
+ }
+
+ [Fact]
+ public async Task PostRaspData_SavesRaspData_ReturnsCreated()
+ {
+ // Arrange: Create a Venue object to send to the API
+ var RaspData = new RaspData { MacAddress = "24:58:46:97:75:3F", RaspId = 3, Rssi = -82, UnixTimestamp = 1746530400000 };
+
+ // Act: Send the POST request to the /api/Venue endpoint
+ var response = await _client.PostAsJsonAsync("/api/RaspData", RaspData);
+
+ // Assert: Ensure the response status code is 201 (Created)
+ response.EnsureSuccessStatusCode();
+
+ // Deserialize the returned content to check the saved venue
+ var returned = await response.Content.ReadFromJsonAsync();
+
+ // Assert: Check if the returned venue is as expected
+ Assert.Equal("24:58:46:97:75:3F", returned.MacAddress);
+ }
+
+ /*
+ [Fact]
+ public async Task GetVenue__ReturnsVenue()
+ {
+ // Arrange
+ const int id = 4;
+ var response = await _client.GetAsync($"/api/Venue/{id}");
+ response.EnsureSuccessStatusCode();
+ var returned = await response.Content.ReadFromJsonAsync();
+
+ // Assert
+ Assert.Equal(id, returned.VenueID);
+ Assert.Equal("TestVenue", returned.VenueName);
+ }
+
+ [Fact]
+ public async Task GetVenue_UpdateVenue_ReturnsUpdatedVenue()
+ {
+ // Arrange
+ const int id = 4;
+ var getResponse = await _client.GetAsync($"/api/Venue/{id}");
+ getResponse.EnsureSuccessStatusCode();
+ var originalVenue = await getResponse.Content.ReadFromJsonAsync();
+
+ Assert.NotNull(originalVenue);
+
+ // Act - Modify the venue
+ originalVenue.VenueName = "Updated Venue Name";
+
+ var putResponse = await _client.PutAsJsonAsync($"/api/Venue/{id}", originalVenue);
+ putResponse.EnsureSuccessStatusCode();
+
+ // Assert - Get again and verify the updated name
+ var confirmResponse = await _client.GetAsync($"/api/Venue/{id}");
+ confirmResponse.EnsureSuccessStatusCode();
+ var updatedVenue = await confirmResponse.Content.ReadFromJsonAsync();
+
+ Assert.Equal("Updated Venue Name", updatedVenue.VenueName);
+ }
+
+ [Fact]
+ public async Task DeleteVenue_ReturnsDeletedVenue_And_CannotBeFoundAfter()
+ {
+ // Arrange
+ var venue = new Venue { VenueID = 99, VenueName = "Venue to Delete" };
+ var postResponse = await _client.PostAsJsonAsync("/api/Venue", venue);
+ postResponse.EnsureSuccessStatusCode();
+
+ // Act
+ var deleteResponse = await _client.DeleteAsync($"/api/Venue/{venue.VenueID}");
+
+ // Assert
+ Assert.Equal(HttpStatusCode.NoContent, deleteResponse.StatusCode);
+
+ var getAfterDelete = await _client.GetAsync($"/api/Venue/{venue.VenueID}");
+ Assert.Equal(HttpStatusCode.NotFound, getAfterDelete.StatusCode);
+ }
+ */
+
+ }
+}
diff --git a/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Controllers/VenueIntegrationTests.cs b/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Controllers/VenueIntegrationTests.cs
new file mode 100644
index 0000000..e6379a6
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Controllers/VenueIntegrationTests.cs
@@ -0,0 +1,97 @@
+using System.Net;
+using System.Net.Http.Json;
+using CrowdedBackend.Models;
+using Microsoft.AspNetCore.Hosting;
+using Microsoft.AspNetCore.Mvc.Testing;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.Extensions.DependencyInjection;
+using Xunit;
+
+namespace CrowdedBackend.Tests.IntegrationTests.Controllers
+{
+ public class VenueIntegrationTests : IClassFixture
+ {
+ private readonly HttpClient _client;
+ private readonly CustomWebApplicationFactory _factory;
+
+ public VenueIntegrationTests(CustomWebApplicationFactory factory)
+ {
+ _factory = factory;
+ _client = _factory.CreateClient();
+ }
+
+ [Fact]
+ public async Task PostVenue_SavesVenue_ReturnsCreated()
+ {
+ // Arrange: Create a Venue object to send to the API
+ var venue = new Venue { VenueID = 4, VenueName = "TestVenue" };
+
+ // Act: Send the POST request to the /api/Venue endpoint
+ var response = await _client.PostAsJsonAsync("/api/Venue", venue);
+
+ // Deserialize the returned content to check the saved venue
+ var returned = await response.Content.ReadFromJsonAsync();
+
+ // Assert: Check if the returned venue is as expected
+ Assert.Equal("TestVenue", returned.VenueName);
+ }
+
+ [Fact]
+ public async Task GetVenue__ReturnsVenue()
+ {
+ // Arrange
+ const int id = 4;
+ var response = await _client.GetAsync($"/api/Venue/{id}");
+
+ var returned = await response.Content.ReadFromJsonAsync();
+
+ // Assert
+ Assert.Equal(id, returned.VenueID);
+ Assert.Equal("TestVenue", returned.VenueName);
+ }
+
+ [Fact]
+ public async Task GetVenue_UpdateVenue_ReturnsUpdatedVenue()
+ {
+ // Arrange
+ const int id = 4;
+ var getResponse = await _client.GetAsync($"/api/Venue/{id}");
+
+ var originalVenue = await getResponse.Content.ReadFromJsonAsync();
+
+ Assert.NotNull(originalVenue);
+
+ // Act - Modify the venue
+ originalVenue.VenueName = "Updated Venue Name";
+
+ var putResponse = await _client.PutAsJsonAsync($"/api/Venue/{id}", originalVenue);
+
+
+ // Assert - Get again and verify the updated name
+ var confirmResponse = await _client.GetAsync($"/api/Venue/{id}");
+
+ var updatedVenue = await confirmResponse.Content.ReadFromJsonAsync();
+
+ Assert.Equal("Updated Venue Name", updatedVenue.VenueName);
+ }
+
+ [Fact]
+ public async Task DeleteVenue_ReturnsDeletedVenue_And_CannotBeFoundAfter()
+ {
+ // Arrange
+ var venue = new Venue { VenueID = 99, VenueName = "Venue to Delete" };
+ var postResponse = await _client.PostAsJsonAsync("/api/Venue", venue);
+
+
+ // Act
+ var deleteResponse = await _client.DeleteAsync($"/api/Venue/{venue.VenueID}");
+
+ // Assert
+ Assert.Equal(HttpStatusCode.NoContent, deleteResponse.StatusCode);
+
+ var getAfterDelete = await _client.GetAsync($"/api/Venue/{venue.VenueID}");
+ Assert.Equal(HttpStatusCode.NotFound, getAfterDelete.StatusCode);
+ }
+
+ }
+}
diff --git a/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Helpers/DetectedDeviceHelperTest.cs b/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Helpers/DetectedDeviceHelperTest.cs
new file mode 100644
index 0000000..0f2a3b3
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/IntegrationTests/Helpers/DetectedDeviceHelperTest.cs
@@ -0,0 +1,58 @@
+
+using System.Text.Json;
+using CrowdedBackend.Models;
+using CrowdedBackend.Services.CalculatePositions;
+using CrowdedBackend.Helpers;
+using Microsoft.EntityFrameworkCore;
+using Microsoft.Extensions.DependencyInjection;
+using System.IO;
+using System.Linq;
+using Microsoft.AspNetCore.Mvc;
+using Xunit;
+using Xunit.Abstractions;
+
+namespace CrowdedBackend.Tests.IntegrationTests.Helpers
+{
+ public class DetectedDeviceHelperTest : IClassFixture
+ {
+ private readonly MyDbContext _context;
+ private readonly CircleUtils _circleUtils;
+ private readonly DetectedDeviceHelper _helper;
+
+
+ // Constructor to inject the dependencies
+ public DetectedDeviceHelperTest(CustomWebApplicationFactory factory)
+ {
+ // Use the factory to create a scope for the DB context
+ var scope = factory.Services.CreateScope();
+ _context = scope.ServiceProvider.GetRequiredService();
+ _circleUtils = scope.ServiceProvider.GetRequiredService(); // Ensure CircleUtils is injected
+ _helper = new DetectedDeviceHelper(_context, _circleUtils, null); // Ensure DetectedDeviceHelper is injected
+ }
+
+ [Fact]
+ public async Task HandleRaspPostRequest_test()
+ {
+
+ // Arrange
+ var now = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
+ // Adding Raspberry Pi devices to the database
+ _context.RaspberryPi.Add(new RaspberryPi { VenueID = 10, RaspX = 50, RaspY = 60 });
+ _context.RaspberryPi.Add(new RaspberryPi { VenueID = 10, RaspX = 90, RaspY = 100 });
+ _context.RaspberryPi.Add(new RaspberryPi { VenueID = 10, RaspX = 50, RaspY = 30 });
+ await _context.SaveChangesAsync(); // Don't forget to save changes!
+
+ // Read the raspOutputData from the JSON file
+ // Arrange
+ var filePath = Path.Combine(Directory.GetCurrentDirectory(), "Data", "raspOutputData.json");
+
+ var raspOutputData = JsonSerializer.Deserialize(
+ File.ReadAllText(filePath),
+ new JsonSerializerOptions { PropertyNameCaseInsensitive = true });
+ Assert.NotNull(raspOutputData);
+ var result = await _helper.HandleRaspPostRequest(raspOutputData, now);
+
+ Assert.NotNull(result);
+ }
+ }
+}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/UnitTest1.cs b/CrowdedBackend/CrowdedBackend.Tests/UnitTest1.cs
deleted file mode 100644
index 438a140..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/UnitTest1.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace CrowdedBackend.Tests
-{
- using Xunit;
-
- public class UnitTest1
- {
- [Fact] // <-- This mean it is a test method
- public void Add_TwoNumbers_ReturnsSum()
- {
- // Arrange
- int a = 2;
- int b = 3;
-
- // Act
- int result = a + b;
-
- // Assert
- Assert.Equal(5, result);
- }
- }
-}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/DetectedDevicesControllerTests.cs b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/DetectedDevicesControllerTests.cs
new file mode 100644
index 0000000..c35183b
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/DetectedDevicesControllerTests.cs
@@ -0,0 +1,51 @@
+using Xunit;
+using CrowdedBackend.Helpers;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.EntityFrameworkCore;
+using CrowdedBackend.Models;
+using CrowdedBackend.Services.CalculatePositions;
+using CrowdedBackend.Controllers;
+using Microsoft.IdentityModel.Tokens;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.AspNetCore.Mvc;
+
+namespace CrowdedBackend.Tests.UnitTests.Controllers
+{
+ public class DetectedDevicesControllerTests : IClassFixture
+ {
+
+ private readonly MyDbContext _context;
+ private readonly DetectedDevicesController _controller;
+
+ public DetectedDevicesControllerTests(CustomWebApplicationFactory factory)
+ {
+ // Use the factory to create a scope for the DB context
+ var scope = factory.Services.CreateScope();
+ _context = scope.ServiceProvider.GetRequiredService();
+ _controller = new DetectedDevicesController(_context, null);
+ }
+
+ [Fact]
+ public async Task PostDetectedDevices_ReturnsOkResult()
+ {
+ // Arrange
+ var detectedDevice = new DetectedDevice
+ {
+ DetectedDeviceId = 1,
+ VenueID = 1,
+ DeviceX = 3,
+ DeviceY = 4,
+ Timestamp = 1745562072611
+ };
+
+ // Act
+ var result = await _controller.PostDetectedDevice(detectedDevice);
+
+ // Assert
+ var createdAtActionResult = Assert.IsType(result.Result);
+ var returnedDetectedDevice = Assert.IsType(createdAtActionResult.Value);
+ Assert.Equal(detectedDevice.DetectedDeviceId, returnedDetectedDevice.DetectedDeviceId);
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/RaspDataControllerTests.cs b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/RaspDataControllerTests.cs
new file mode 100644
index 0000000..f012fa1
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/RaspDataControllerTests.cs
@@ -0,0 +1,105 @@
+using Xunit;
+using Moq;
+using Microsoft.EntityFrameworkCore;
+using System.Threading.Tasks;
+using CrowdedBackend.Controllers;
+using CrowdedBackend.Models;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.DependencyInjection;
+
+namespace CrowdedBackend.Tests.UnitTests.Controllers
+{
+ public class RaspDataControllerTests : IClassFixture
+ {
+ private readonly MyDbContext _context;
+ private readonly RaspDataController _controller;
+
+
+ public RaspDataControllerTests(CustomWebApplicationFactory factory)
+ {
+ // Use the factory to create a scope for the DB context
+ var scope = factory.Services.CreateScope();
+ _context = scope.ServiceProvider.GetRequiredService();
+ _controller = new RaspDataController(_context);
+ }
+
+ /*
+ * Post RaspData
+ */
+ [Fact]
+ public async Task CreateRaspData()
+ {
+ // Arrange
+ var raspData = new RaspData
+ {
+ MacAddress = "79:1C:89:6B:EC:C7",
+ RaspId = 1,
+ Rssi = -90,
+ UnixTimestamp = 1746033900000
+ };
+
+ // Act
+ var result = await _controller.PostRaspData(raspData);
+
+ // Assert
+ var createdAtActionResult = Assert.IsType(result.Result);
+ var returnedVenue = Assert.IsType(createdAtActionResult.Value);
+ Assert.Equal(raspData.Id, returnedVenue.Id);
+ Assert.Equal(raspData.MacAddress, returnedVenue.MacAddress);
+ }
+
+ /*
+ * Get RaspData by name
+ */
+ [Fact]
+ public async Task GetRaspData_ByName()
+ {
+
+ _context.RaspData.Add(new RaspData { Id = 998, MacAddress = "79:1C:89:6B:EC:C7", RaspId = 1, Rssi = -90, UnixTimestamp = 1746033900000 });
+ await _context.SaveChangesAsync();
+
+
+ // Act
+ var result = await _controller.GetRaspData(998);
+
+ // Assert
+ var actionResult = Assert.IsType>(result);
+ var raspData = Assert.IsType(actionResult.Value);
+ Assert.Equal("79:1C:89:6B:EC:C7", raspData.MacAddress);
+ }
+
+ /*
+ * Delete RaspData by Id
+ */
+ [Fact]
+ public async Task DeleteRaspData_ById()
+ {
+ _context.RaspData.Add(new RaspData { Id = 999, MacAddress = "79:1C:89:6B:EC:C7", RaspId = 1, Rssi = -90, UnixTimestamp = 1746033900000 });
+ await _context.SaveChangesAsync();
+
+ // Act
+ var result = await _controller.DeleteRaspData(999); // Pass the ID of the venue to delete
+
+ // Assert
+ Assert.IsType(result);
+
+ // Assert
+ var deletedRaspData = await _context.RaspData.FindAsync(3);
+ Assert.Null(deletedRaspData); // Ensure the venue is no longer in the database
+ }
+
+ /*
+ * Try to delete a non existing RaspData
+ */
+ [Fact]
+ public async Task DeleteRaspData_RaspDataNotFound_ReturnsNotFound()
+ {
+
+ // Act: Try deleting a non-existing venue
+ var result = await _controller.DeleteRaspData(999);
+
+ // Assert: Verify the result is NotFound (404)
+ Assert.IsType(result);
+ }
+ }
+}
diff --git a/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/RaspberryPiControllerTests.cs b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/RaspberryPiControllerTests.cs
new file mode 100644
index 0000000..9f68916
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/RaspberryPiControllerTests.cs
@@ -0,0 +1,46 @@
+using Xunit;
+using Moq;
+using Microsoft.EntityFrameworkCore;
+using System.Threading.Tasks;
+using CrowdedBackend.Controllers;
+using CrowdedBackend.Models;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.DependencyInjection;
+
+namespace CrowdedBackend.Tests.UnitTests.Controllers
+{
+ public class RaspberryPiControllerTests : IClassFixture
+ {
+ private readonly MyDbContext _context;
+ private readonly RaspberryPiController _controller;
+
+ public RaspberryPiControllerTests(CustomWebApplicationFactory factory)
+ {
+ // Use the factory to create a scope for the DB context
+ var scope = factory.Services.CreateScope();
+ _context = scope.ServiceProvider.GetRequiredService();
+ _controller = new RaspberryPiController(_context);
+ }
+
+ /*
+ * Post RaspberryPi
+ */
+ [Fact]
+ public async Task PostRaspberryPi()
+ {
+ var raspberryPi = new RaspberryPi
+ {
+ VenueID = 2,
+ RaspX = 40,
+ RaspY = 70,
+ };
+
+ var result = await _controller.PostRaspberryPi(raspberryPi);
+
+ var createdAtActionResult = Assert.IsType(result.Result);
+ var returnedVenue = Assert.IsType(createdAtActionResult.Value);
+ Assert.Equal(raspberryPi.RaspberryPiID, returnedVenue.RaspberryPiID);
+ Assert.Equal(raspberryPi.RaspX, returnedVenue.RaspX);
+ }
+ }
+}
diff --git a/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/VenueControllerTests.cs b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/VenueControllerTests.cs
new file mode 100644
index 0000000..a209992
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Controllers/VenueControllerTests.cs
@@ -0,0 +1,102 @@
+using Xunit;
+using Moq;
+using Microsoft.EntityFrameworkCore;
+using System.Threading.Tasks;
+using CrowdedBackend.Controllers;
+using CrowdedBackend.Models;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.DependencyInjection;
+
+namespace CrowdedBackend.Tests.UnitTests.Controllers
+{
+ public class VenueControllerTests : IClassFixture
+ {
+
+ private readonly MyDbContext _context;
+ private readonly VenueController _controller;
+ public VenueControllerTests(CustomWebApplicationFactory factory)
+ {
+ // Use the factory to create a scope for the DB context
+ var scope = factory.Services.CreateScope();
+ _context = scope.ServiceProvider.GetRequiredService();
+ _controller = new VenueController(_context);
+
+ }
+
+ /*
+ * Post venue
+ */
+
+ [Fact]
+ public async Task CreateVenue()
+ {
+ // Arrange
+ var venue = new Venue
+ {
+ VenueID = 1, // Assuming VenueID is the primary key
+ VenueName = "Test Venue"
+ };
+
+ // Act
+ var result = await _controller.PostVenue(venue);
+
+ // Assert
+ var createdAtActionResult = Assert.IsType(result.Result); // Assert it returns CreatedAtActionResult
+ var returnedVenue = Assert.IsType(createdAtActionResult.Value); // Assert the value is a Venue object
+
+ Assert.Equal(venue.VenueID, returnedVenue.VenueID); // Check if the ID matches
+ Assert.Equal(venue.VenueName, returnedVenue.VenueName); // Check if the name matches
+ }
+
+ /*
+ * Get Venue by name
+ */
+ [Fact]
+ public async Task GetVenue_ByName()
+ {
+ _context.Venue.Add(new Venue { VenueID = 2, VenueName = "Test Venue" });
+ await _context.SaveChangesAsync();
+
+
+ // Act
+ var result = await _controller.GetVenue(2);
+
+ // Assert
+ var actionResult = Assert.IsType>(result);
+ var venue = Assert.IsType(actionResult.Value);
+ Assert.Equal("Test Venue", venue.VenueName);
+ }
+
+ /*
+ * Delete Venue by Id
+ */
+ [Fact]
+ public async Task DeleteVenue_ById()
+ {
+ // Arrange: Add a venue to the in-memory database
+ var venue = new Venue { VenueID = 3, VenueName = "Delete Venue" };
+ _context.Venue.Add(venue);
+ await _context.SaveChangesAsync(); // Save changes to the database
+
+ // Act: Call DeleteVenue method
+ var result = await _controller.DeleteVenue(3); // Pass the ID of the venue to delete
+
+ // Assert: Verify the result is NoContent (204)
+ Assert.IsType(result);
+
+ // Assert: Check that the venue was removed from the database
+ var deletedVenue = await _context.Venue.FindAsync(3);
+ Assert.Null(deletedVenue); // Ensure the venue is no longer in the database
+ }
+
+ [Fact]
+ public async Task DeleteVenue_VenueNotFound_ReturnsNotFound()
+ {
+ // Act: Try deleting a non-existing venue
+ var result = await _controller.DeleteVenue(999); // Use a non-existing ID
+
+ // Assert: Verify the result is NotFound (404)
+ Assert.IsType(result);
+ }
+ }
+}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Services/CircleUtilsTests.cs b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Services/CircleUtilsTests.cs
new file mode 100644
index 0000000..67c91bd
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Services/CircleUtilsTests.cs
@@ -0,0 +1,123 @@
+using Xunit;
+using CrowdedBackend.Services.CalculatePositions;
+using CrowdedBackend.Models;
+using System.Collections.Generic;
+using System.Linq;
+using System;
+
+namespace CrowdedBackend.Tests.UnitTests.Services
+{
+ public class CircleUtilsTests
+ {
+ /*
+ * Test that ensure three RSSI readings and their geometric logic produce a usable position
+ */
+ [Fact]
+ public void CalculatePosition_WithValidData_ReturnsPosition()
+ {
+ // Arrange
+ var circleUtils = new CircleUtils();
+
+ var point1 = new Point(0, 0);
+ var point2 = new Point(10, 0);
+ var point3 = new Point(5, 10);
+
+ var mac = "AA:BB:CC:DD";
+
+ var data1 = new RaspOutputData
+ {
+ Events = new List { new RaspEvent { MacAddress = mac, Rssi = -50, UnixTimestamp = 1746088680 } }
+ };
+
+ var data2 = new RaspOutputData
+ {
+ Events = new List { new RaspEvent { MacAddress = mac, Rssi = -50, UnixTimestamp = 1746088680 } }
+ };
+
+ var data3 = new RaspOutputData
+ {
+ Events = new List { new RaspEvent { MacAddress = mac, Rssi = -50, UnixTimestamp = 1746088680 } }
+ };
+
+ circleUtils.AddData(data1, point1);
+ circleUtils.AddData(data2, point2);
+ circleUtils.AddData(data3, point3);
+
+ // Act
+ var result = circleUtils.CalculatePosition();
+
+ // Assert
+ Assert.NotNull(result);
+ Assert.Single(result);
+ Assert.IsType(result[0]);
+
+ // Optionally print or validate X/Y ranges
+ Assert.InRange(result[0].X, 3.0, 10.0);
+ Assert.InRange(result[0].Y, 3.0, 10.0);
+ }
+
+ /*
+ * Test if 3 overlapping circles has points that exists in 2 circles
+ */
+ [Fact]
+ public void GetIntersectionPoints_WithThreeIntersectingCircles_ReturnsCorrectPoints()
+ {
+ // Arrange
+ var circleUtils = new CircleUtils();
+ var circles = new List
+ {
+ new (0, 0, 5),
+ new (4, 0, 5),
+ new (2, 4, 5)
+ };
+
+ // Act
+ var result = circleUtils.GetIntersectionPoints(circles);
+
+ // Assert
+ Assert.NotNull(result);
+ Assert.True(result.Count > 0); // Should have some intersection points
+ Assert.All(result, p => Assert.True(p.ParentIndex.Count == 2)); // Ensure each point has parent indices
+ }
+
+ /*
+ * Test if CricleCirle intersection has two intersections points
+ */
+ [Fact]
+ public void CircleCircleIntersection_IntersectingCircles_ReturnsTwoPoints()
+ {
+ // Arrange
+ var circle1 = new Circle(0, 0, 5);
+ var circle2 = new Circle(6, 0, 5);
+ var utils = new CircleUtils();
+
+ // Act
+ var result = utils.CircleCircleIntersection(circle1, circle2);
+
+ // Assert
+ Assert.Equal(2, result.Count);
+ Assert.All(result, point =>
+ {
+ // Check that points are roughly between the two centers
+ Assert.InRange(point.X, 0, 6);
+ Assert.InRange(point.Y, -5, 5);
+ });
+ }
+
+ /*
+ * Test if CircleCircle intersection has no intersection circles.
+ * Should return empty list
+ */
+ [Fact]
+ public void CircleCircleIntersection_NonIntersectingCircles_ReturnsEmptyList()
+ {
+ var circle1 = new Circle(0, 0, 2);
+ var circle2 = new Circle(10, 0, 2);
+ var utils = new CircleUtils();
+
+ var result = utils.CircleCircleIntersection(circle1, circle2);
+
+ Assert.Empty(result);
+ }
+ }
+}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Services/HeatmapGeneratorTests.cs b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Services/HeatmapGeneratorTests.cs
new file mode 100644
index 0000000..c242a59
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend.Tests/UnitTests/Services/HeatmapGeneratorTests.cs
@@ -0,0 +1,67 @@
+using Xunit;
+using SkiaSharp;
+
+namespace CrowdedBackend.Tests.UnitTests.Services
+{
+ public class HeatmapGeneratorTests
+ {
+ /*
+ * This test checks if the Generate method produces a valid Base64 string that represents an image.
+ * We want to ensure that the method outputs something meaningful
+ */
+ [Fact]
+ public void Generate_ReturnsValidBase64String()
+ {
+ // Arrange
+ var venueName = "testVenue";
+ var people = new List<(float x, float y)> { (1, 1), (5, 5), (10, 10) };
+ var raspberries = new List<(float x, float y)> { (0, 0), (6, 6) };
+
+ // Create dummy background file
+ var testImagePath = Path.Combine(Directory.GetCurrentDirectory(), "Services/HeatmapScript", venueName + ".png");
+ Directory.CreateDirectory(Path.GetDirectoryName(testImagePath));
+ using (var bmp = new SKBitmap(800, 800))
+ using (var fs = File.OpenWrite(testImagePath))
+ {
+ bmp.Encode(fs, SKEncodedImageFormat.Png, 100);
+ }
+
+ // Act
+ var base64 = HeatmapGenerator.Generate(venueName, raspberries, people);
+
+ // Assert
+ Assert.False(string.IsNullOrWhiteSpace(base64));
+ var imageBytes = Convert.FromBase64String(base64);
+ Assert.True(imageBytes.Length > 100); // Arbitrary sanity check
+ }
+ /*
+ * This test checks if the Generate method produces a valid Base64 string that represents an image
+ */
+ [Fact]
+ public void Compute2DKDE_ReturnsNonZeroDensity()
+ {
+ var points = new List<(float x, float y)> { (6, 6) };
+
+ var density = typeof(HeatmapGenerator)
+ .GetMethod("Compute2DKDE", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Static)
+ .Invoke(null, new object[] { points }) as double[,];
+
+ Assert.NotNull(density);
+ Assert.Contains(
+ density.Cast(),
+ val => val > 0
+ );
+ }
+
+ /*
+ * This test ensures that even if the background image doesn't exist
+ * (i.e., a file is missing), the Generate method still returns a valid image
+ */
+ [Fact]
+ public void Generate_WithMissingBackground_StillReturnsImage()
+ {
+ var base64 = HeatmapGenerator.Generate("nonexistentVenue", new(), new());
+ Assert.False(string.IsNullOrWhiteSpace(base64));
+ }
+ }
+}
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/.msCoverageSourceRootsMapping_CrowdedBackend.Tests b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/.msCoverageSourceRootsMapping_CrowdedBackend.Tests
deleted file mode 100644
index 9087788..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/.msCoverageSourceRootsMapping_CrowdedBackend.Tests and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Azure.Core.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Azure.Core.dll
deleted file mode 100755
index d3fa20b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Azure.Core.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Azure.Identity.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Azure.Identity.dll
deleted file mode 100755
index aab6832..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Azure.Identity.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CoverletSourceRootsMapping_CrowdedBackend.Tests b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CoverletSourceRootsMapping_CrowdedBackend.Tests
deleted file mode 100644
index 9087788..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CoverletSourceRootsMapping_CrowdedBackend.Tests and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend
deleted file mode 100755
index 81ce7f6..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.deps.json b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.deps.json
deleted file mode 100644
index b5c9943..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.deps.json
+++ /dev/null
@@ -1,4061 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v9.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v9.0": {
- "CrowdedBackend.Tests/1.0.0": {
- "dependencies": {
- "CrowdedBackend": "1.0.0",
- "Microsoft.NET.Test.Sdk": "17.11.1",
- "coverlet.collector": "6.0.2",
- "xunit": "2.9.2",
- "xunit.runner.visualstudio": "2.8.2"
- },
- "runtime": {
- "CrowdedBackend.Tests.dll": {}
- }
- },
- "Azure.Core/1.38.0": {
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "7.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": "9.0.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": "8.0.0",
- "System.Text.Json": "9.0.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"
- }
- }
- },
- "coverlet.collector/6.0.2": {},
- "Humanizer/2.14.1": {
- "dependencies": {
- "Humanizer.Core.af": "2.14.1",
- "Humanizer.Core.ar": "2.14.1",
- "Humanizer.Core.az": "2.14.1",
- "Humanizer.Core.bg": "2.14.1",
- "Humanizer.Core.bn-BD": "2.14.1",
- "Humanizer.Core.cs": "2.14.1",
- "Humanizer.Core.da": "2.14.1",
- "Humanizer.Core.de": "2.14.1",
- "Humanizer.Core.el": "2.14.1",
- "Humanizer.Core.es": "2.14.1",
- "Humanizer.Core.fa": "2.14.1",
- "Humanizer.Core.fi-FI": "2.14.1",
- "Humanizer.Core.fr": "2.14.1",
- "Humanizer.Core.fr-BE": "2.14.1",
- "Humanizer.Core.he": "2.14.1",
- "Humanizer.Core.hr": "2.14.1",
- "Humanizer.Core.hu": "2.14.1",
- "Humanizer.Core.hy": "2.14.1",
- "Humanizer.Core.id": "2.14.1",
- "Humanizer.Core.is": "2.14.1",
- "Humanizer.Core.it": "2.14.1",
- "Humanizer.Core.ja": "2.14.1",
- "Humanizer.Core.ko-KR": "2.14.1",
- "Humanizer.Core.ku": "2.14.1",
- "Humanizer.Core.lv": "2.14.1",
- "Humanizer.Core.ms-MY": "2.14.1",
- "Humanizer.Core.mt": "2.14.1",
- "Humanizer.Core.nb": "2.14.1",
- "Humanizer.Core.nb-NO": "2.14.1",
- "Humanizer.Core.nl": "2.14.1",
- "Humanizer.Core.pl": "2.14.1",
- "Humanizer.Core.pt": "2.14.1",
- "Humanizer.Core.ro": "2.14.1",
- "Humanizer.Core.ru": "2.14.1",
- "Humanizer.Core.sk": "2.14.1",
- "Humanizer.Core.sl": "2.14.1",
- "Humanizer.Core.sr": "2.14.1",
- "Humanizer.Core.sr-Latn": "2.14.1",
- "Humanizer.Core.sv": "2.14.1",
- "Humanizer.Core.th-TH": "2.14.1",
- "Humanizer.Core.tr": "2.14.1",
- "Humanizer.Core.uk": "2.14.1",
- "Humanizer.Core.uz-Cyrl-UZ": "2.14.1",
- "Humanizer.Core.uz-Latn-UZ": "2.14.1",
- "Humanizer.Core.vi": "2.14.1",
- "Humanizer.Core.zh-CN": "2.14.1",
- "Humanizer.Core.zh-Hans": "2.14.1",
- "Humanizer.Core.zh-Hant": "2.14.1"
- }
- },
- "Humanizer.Core/2.14.1": {
- "runtime": {
- "lib/net6.0/Humanizer.dll": {
- "assemblyVersion": "2.14.0.0",
- "fileVersion": "2.14.1.48190"
- }
- }
- },
- "Humanizer.Core.af/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/af/Humanizer.resources.dll": {
- "locale": "af"
- }
- }
- },
- "Humanizer.Core.ar/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/ar/Humanizer.resources.dll": {
- "locale": "ar"
- }
- }
- },
- "Humanizer.Core.az/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/az/Humanizer.resources.dll": {
- "locale": "az"
- }
- }
- },
- "Humanizer.Core.bg/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/bg/Humanizer.resources.dll": {
- "locale": "bg"
- }
- }
- },
- "Humanizer.Core.bn-BD/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/bn-BD/Humanizer.resources.dll": {
- "locale": "bn-BD"
- }
- }
- },
- "Humanizer.Core.cs/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/cs/Humanizer.resources.dll": {
- "locale": "cs"
- }
- }
- },
- "Humanizer.Core.da/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/da/Humanizer.resources.dll": {
- "locale": "da"
- }
- }
- },
- "Humanizer.Core.de/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/de/Humanizer.resources.dll": {
- "locale": "de"
- }
- }
- },
- "Humanizer.Core.el/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/el/Humanizer.resources.dll": {
- "locale": "el"
- }
- }
- },
- "Humanizer.Core.es/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/es/Humanizer.resources.dll": {
- "locale": "es"
- }
- }
- },
- "Humanizer.Core.fa/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/fa/Humanizer.resources.dll": {
- "locale": "fa"
- }
- }
- },
- "Humanizer.Core.fi-FI/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/fi-FI/Humanizer.resources.dll": {
- "locale": "fi-FI"
- }
- }
- },
- "Humanizer.Core.fr/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/fr/Humanizer.resources.dll": {
- "locale": "fr"
- }
- }
- },
- "Humanizer.Core.fr-BE/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/fr-BE/Humanizer.resources.dll": {
- "locale": "fr-BE"
- }
- }
- },
- "Humanizer.Core.he/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/he/Humanizer.resources.dll": {
- "locale": "he"
- }
- }
- },
- "Humanizer.Core.hr/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/hr/Humanizer.resources.dll": {
- "locale": "hr"
- }
- }
- },
- "Humanizer.Core.hu/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/hu/Humanizer.resources.dll": {
- "locale": "hu"
- }
- }
- },
- "Humanizer.Core.hy/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/hy/Humanizer.resources.dll": {
- "locale": "hy"
- }
- }
- },
- "Humanizer.Core.id/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/id/Humanizer.resources.dll": {
- "locale": "id"
- }
- }
- },
- "Humanizer.Core.is/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/is/Humanizer.resources.dll": {
- "locale": "is"
- }
- }
- },
- "Humanizer.Core.it/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/it/Humanizer.resources.dll": {
- "locale": "it"
- }
- }
- },
- "Humanizer.Core.ja/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/ja/Humanizer.resources.dll": {
- "locale": "ja"
- }
- }
- },
- "Humanizer.Core.ko-KR/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": {
- "locale": "ko-KR"
- }
- }
- },
- "Humanizer.Core.ku/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/ku/Humanizer.resources.dll": {
- "locale": "ku"
- }
- }
- },
- "Humanizer.Core.lv/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/lv/Humanizer.resources.dll": {
- "locale": "lv"
- }
- }
- },
- "Humanizer.Core.ms-MY/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": {
- "locale": "ms-MY"
- }
- }
- },
- "Humanizer.Core.mt/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/netstandard2.0/mt/Humanizer.resources.dll": {
- "locale": "mt"
- }
- }
- },
- "Humanizer.Core.nb/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/nb/Humanizer.resources.dll": {
- "locale": "nb"
- }
- }
- },
- "Humanizer.Core.nb-NO/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/nb-NO/Humanizer.resources.dll": {
- "locale": "nb-NO"
- }
- }
- },
- "Humanizer.Core.nl/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/nl/Humanizer.resources.dll": {
- "locale": "nl"
- }
- }
- },
- "Humanizer.Core.pl/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/pl/Humanizer.resources.dll": {
- "locale": "pl"
- }
- }
- },
- "Humanizer.Core.pt/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/pt/Humanizer.resources.dll": {
- "locale": "pt"
- }
- }
- },
- "Humanizer.Core.ro/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/ro/Humanizer.resources.dll": {
- "locale": "ro"
- }
- }
- },
- "Humanizer.Core.ru/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/ru/Humanizer.resources.dll": {
- "locale": "ru"
- }
- }
- },
- "Humanizer.Core.sk/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/sk/Humanizer.resources.dll": {
- "locale": "sk"
- }
- }
- },
- "Humanizer.Core.sl/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/sl/Humanizer.resources.dll": {
- "locale": "sl"
- }
- }
- },
- "Humanizer.Core.sr/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/sr/Humanizer.resources.dll": {
- "locale": "sr"
- }
- }
- },
- "Humanizer.Core.sr-Latn/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/sr-Latn/Humanizer.resources.dll": {
- "locale": "sr-Latn"
- }
- }
- },
- "Humanizer.Core.sv/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/sv/Humanizer.resources.dll": {
- "locale": "sv"
- }
- }
- },
- "Humanizer.Core.th-TH/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/netstandard2.0/th-TH/Humanizer.resources.dll": {
- "locale": "th-TH"
- }
- }
- },
- "Humanizer.Core.tr/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/tr/Humanizer.resources.dll": {
- "locale": "tr"
- }
- }
- },
- "Humanizer.Core.uk/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/uk/Humanizer.resources.dll": {
- "locale": "uk"
- }
- }
- },
- "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": {
- "locale": "uz-Cyrl-UZ"
- }
- }
- },
- "Humanizer.Core.uz-Latn-UZ/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": {
- "locale": "uz-Latn-UZ"
- }
- }
- },
- "Humanizer.Core.vi/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/vi/Humanizer.resources.dll": {
- "locale": "vi"
- }
- }
- },
- "Humanizer.Core.zh-CN/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/zh-CN/Humanizer.resources.dll": {
- "locale": "zh-CN"
- }
- }
- },
- "Humanizer.Core.zh-Hans/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/zh-Hans/Humanizer.resources.dll": {
- "locale": "zh-Hans"
- }
- }
- },
- "Humanizer.Core.zh-Hant/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/zh-Hant/Humanizer.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "MathNet.Numerics/5.0.0": {
- "runtime": {
- "lib/net6.0/MathNet.Numerics.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.0.0"
- }
- }
- },
- "Microsoft.AspNetCore.OpenApi/9.0.2": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.17"
- },
- "runtime": {
- "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6704"
- }
- }
- },
- "Microsoft.AspNetCore.Razor.Language/6.0.24": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
- "assemblyVersion": "6.0.24.0",
- "fileVersion": "6.0.2423.51812"
- }
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Build/17.10.4": {
- "dependencies": {
- "Microsoft.Build.Framework": "17.10.4",
- "Microsoft.NET.StringTools": "17.10.4",
- "System.Collections.Immutable": "8.0.0",
- "System.Configuration.ConfigurationManager": "8.0.0",
- "System.Reflection.Metadata": "8.0.0",
- "System.Reflection.MetadataLoadContext": "8.0.0",
- "System.Security.Principal.Windows": "5.0.0",
- "System.Threading.Tasks.Dataflow": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Build.dll": {
- "assemblyVersion": "15.1.0.0",
- "fileVersion": "17.10.4.21802"
- }
- }
- },
- "Microsoft.Build.Framework/17.10.4": {
- "runtime": {
- "lib/net8.0/Microsoft.Build.Framework.dll": {
- "assemblyVersion": "15.1.0.0",
- "fileVersion": "17.10.4.21802"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.4": {},
- "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
- "assemblyVersion": "3.3.2.30504",
- "fileVersion": "3.3.2.30504"
- }
- }
- },
- "Microsoft.CodeAnalysis.Common/4.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
- "System.Collections.Immutable": "8.0.0",
- "System.Reflection.Metadata": "8.0.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.8.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Elfie/1.0.0": {
- "dependencies": {
- "System.Configuration.ConfigurationManager": "8.0.0",
- "System.Data.DataSetExtensions": "4.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.16"
- }
- }
- },
- "Microsoft.CodeAnalysis.Features/4.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Elfie": "1.0.0",
- "Microsoft.CodeAnalysis.Scripting.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DiaSymReader": "2.0.0",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Razor/6.0.24": {
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
- "assemblyVersion": "6.0.24.0",
- "fileVersion": "6.0.2423.51812"
- }
- }
- },
- "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.8.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "System.Composition": "7.0.0",
- "System.IO.Pipelines": "7.0.0",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeCoverage/17.11.1": {
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "17.1100.424.36701"
- }
- }
- },
- "Microsoft.CSharp/4.7.0": {},
- "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": "6.35.0",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
- "Microsoft.SqlServer.Server": "1.0.0",
- "System.Configuration.ConfigurationManager": "8.0.0",
- "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": "0.0.0.0"
- },
- "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "Microsoft.Data.Sqlite.Core/9.0.2": {
- "dependencies": {
- "SQLitePCLRaw.core": "2.1.10"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Data.Sqlite.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.DiaSymReader/2.0.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.DiaSymReader.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.23.22804"
- }
- }
- },
- "Microsoft.DotNet.Scaffolding.Shared/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/9.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "9.0.2",
- "Microsoft.EntityFrameworkCore.Analyzers": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/9.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/9.0.2": {},
- "Microsoft.EntityFrameworkCore.Relational/9.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite/9.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Sqlite.Core": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2",
- "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10",
- "SQLitePCLRaw.core": "2.1.10",
- "System.Text.Json": "9.0.2"
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.2": {
- "dependencies": {
- "Microsoft.Data.Sqlite.Core": "9.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2",
- "SQLitePCLRaw.core": "2.1.10",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.SqlServer/9.0.2": {
- "dependencies": {
- "Microsoft.Data.SqlClient": "5.1.6",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2",
- "System.Formats.Asn1": "9.0.2",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Caching.Memory/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "9.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.2",
- "Microsoft.Extensions.Options": "9.0.2",
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.2": {
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/9.0.2": {
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": {
- "assemblyVersion": "9.0.0.2",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Logging/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.2",
- "Microsoft.Extensions.Options": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Options/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2",
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Primitives/9.0.2": {
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Identity.Client/4.61.3": {
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.35.0",
- "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": "8.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/6.35.0": {
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "6.35.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encodings.Web": "6.0.0",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/6.35.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.35.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols/6.35.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "6.35.0",
- "Microsoft.IdentityModel.Tokens": "6.35.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Protocols": "6.35.0",
- "System.IdentityModel.Tokens.Jwt": "6.35.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/6.35.0": {
- "dependencies": {
- "Microsoft.CSharp": "4.7.0",
- "Microsoft.IdentityModel.Logging": "6.35.0",
- "System.Security.Cryptography.Cng": "5.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.NET.StringTools/17.10.4": {
- "runtime": {
- "lib/net8.0/Microsoft.NET.StringTools.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "17.10.4.21802"
- }
- }
- },
- "Microsoft.NET.Test.Sdk/17.11.1": {
- "dependencies": {
- "Microsoft.CodeCoverage": "17.11.1",
- "Microsoft.TestPlatform.TestHost": "17.11.1"
- }
- },
- "Microsoft.NETCore.Platforms/1.1.0": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.OpenApi/1.6.17": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "assemblyVersion": "1.6.17.0",
- "fileVersion": "1.6.17.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.TestPlatform.ObjectModel/17.11.1": {
- "dependencies": {
- "System.Reflection.Metadata": "8.0.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "17.1100.124.45402"
- },
- "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "17.1100.124.45402"
- },
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "17.1100.124.45402"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.TestPlatform.TestHost/17.11.1": {
- "dependencies": {
- "Microsoft.TestPlatform.ObjectModel": "17.11.1",
- "Newtonsoft.Json": "13.0.3"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "17.1100.124.45402"
- },
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "17.1100.124.45402"
- },
- "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "17.1100.124.45402"
- },
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "17.1100.124.45402"
- },
- "lib/netcoreapp3.1/testhost.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "17.1100.124.45402"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Core/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.Core": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Mono.TextTemplating/3.0.0": {
- "dependencies": {
- "System.CodeDom": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/Mono.TextTemplating.dll": {
- "assemblyVersion": "3.0.0.0",
- "fileVersion": "3.0.0.1"
- }
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "Npgsql/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.2.0"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.3": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "9.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.2",
- "Npgsql": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "assemblyVersion": "9.0.3.0",
- "fileVersion": "9.0.3.0"
- }
- }
- },
- "NuGet.Common/6.11.0": {
- "dependencies": {
- "NuGet.Frameworks": "6.11.0"
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Common.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.Configuration/6.11.0": {
- "dependencies": {
- "NuGet.Common": "6.11.0",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Configuration.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.DependencyResolver.Core/6.11.0": {
- "dependencies": {
- "NuGet.Configuration": "6.11.0",
- "NuGet.LibraryModel": "6.11.0",
- "NuGet.Protocol": "6.11.0"
- },
- "runtime": {
- "lib/net5.0/NuGet.DependencyResolver.Core.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.Frameworks/6.11.0": {
- "runtime": {
- "lib/netstandard2.0/NuGet.Frameworks.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.LibraryModel/6.11.0": {
- "dependencies": {
- "NuGet.Common": "6.11.0",
- "NuGet.Versioning": "6.11.0"
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.LibraryModel.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.Packaging/6.11.0": {
- "dependencies": {
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Configuration": "6.11.0",
- "NuGet.Versioning": "6.11.0",
- "System.Security.Cryptography.Pkcs": "6.0.4"
- },
- "runtime": {
- "lib/net5.0/NuGet.Packaging.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.ProjectModel/6.11.0": {
- "dependencies": {
- "NuGet.DependencyResolver.Core": "6.11.0"
- },
- "runtime": {
- "lib/net5.0/NuGet.ProjectModel.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.Protocol/6.11.0": {
- "dependencies": {
- "NuGet.Packaging": "6.11.0"
- },
- "runtime": {
- "lib/net5.0/NuGet.Protocol.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.Versioning/6.11.0": {
- "runtime": {
- "lib/netstandard2.0/NuGet.Versioning.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "pythonnet/3.0.5": {
- "dependencies": {
- "Microsoft.CSharp": "4.7.0",
- "System.Reflection.Emit": "4.3.0"
- },
- "runtime": {
- "lib/netstandard2.0/Python.Runtime.dll": {
- "assemblyVersion": "3.0.5.0",
- "fileVersion": "3.0.5.0"
- }
- }
- },
- "SkiaSharp/3.116.1": {
- "dependencies": {
- "SkiaSharp.NativeAssets.Win32": "3.116.1",
- "SkiaSharp.NativeAssets.macOS": "3.116.1"
- },
- "runtime": {
- "lib/net8.0/SkiaSharp.dll": {
- "assemblyVersion": "3.116.0.0",
- "fileVersion": "3.116.1.0"
- }
- }
- },
- "SkiaSharp.NativeAssets.macOS/3.116.1": {
- "runtimeTargets": {
- "runtimes/osx/native/libSkiaSharp.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SkiaSharp.NativeAssets.Win32/3.116.1": {
- "runtimeTargets": {
- "runtimes/win-arm64/native/libSkiaSharp.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x64/native/libSkiaSharp.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x86/native/libSkiaSharp.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": {
- "dependencies": {
- "SQLitePCLRaw.lib.e_sqlite3": "2.1.10",
- "SQLitePCLRaw.provider.e_sqlite3": "2.1.10"
- },
- "runtime": {
- "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {
- "assemblyVersion": "2.1.10.2445",
- "fileVersion": "2.1.10.2445"
- }
- }
- },
- "SQLitePCLRaw.core/2.1.10": {
- "dependencies": {
- "System.Memory": "4.5.4"
- },
- "runtime": {
- "lib/netstandard2.0/SQLitePCLRaw.core.dll": {
- "assemblyVersion": "2.1.10.2445",
- "fileVersion": "2.1.10.2445"
- }
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3/2.1.10": {
- "runtimeTargets": {
- "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": {
- "rid": "browser-wasm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-arm/native/libe_sqlite3.so": {
- "rid": "linux-arm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-arm64/native/libe_sqlite3.so": {
- "rid": "linux-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-armel/native/libe_sqlite3.so": {
- "rid": "linux-armel",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-mips64/native/libe_sqlite3.so": {
- "rid": "linux-mips64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-arm/native/libe_sqlite3.so": {
- "rid": "linux-musl-arm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-arm64/native/libe_sqlite3.so": {
- "rid": "linux-musl-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-s390x/native/libe_sqlite3.so": {
- "rid": "linux-musl-s390x",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
- "rid": "linux-musl-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-ppc64le/native/libe_sqlite3.so": {
- "rid": "linux-ppc64le",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-s390x/native/libe_sqlite3.so": {
- "rid": "linux-s390x",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x64/native/libe_sqlite3.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x86/native/libe_sqlite3.so": {
- "rid": "linux-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": {
- "rid": "maccatalyst-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": {
- "rid": "maccatalyst-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-arm64/native/libe_sqlite3.dylib": {
- "rid": "osx-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-x64/native/libe_sqlite3.dylib": {
- "rid": "osx-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm/native/e_sqlite3.dll": {
- "rid": "win-arm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm64/native/e_sqlite3.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x64/native/e_sqlite3.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x86/native/e_sqlite3.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.provider.e_sqlite3/2.1.10": {
- "dependencies": {
- "SQLitePCLRaw.core": "2.1.10"
- },
- "runtime": {
- "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {
- "assemblyVersion": "2.1.10.2445",
- "fileVersion": "2.1.10.2445"
- }
- }
- },
- "System.ClientModel/1.0.0": {
- "dependencies": {
- "System.Memory.Data": "1.0.2",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net6.0/System.ClientModel.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.24.5302"
- }
- }
- },
- "System.CodeDom/6.0.0": {
- "runtime": {
- "lib/net6.0/System.CodeDom.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Immutable/8.0.0": {},
- "System.Composition/7.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "7.0.0",
- "System.Composition.Convention": "7.0.0",
- "System.Composition.Hosting": "7.0.0",
- "System.Composition.Runtime": "7.0.0",
- "System.Composition.TypedParts": "7.0.0"
- }
- },
- "System.Composition.AttributedModel/7.0.0": {
- "runtime": {
- "lib/net7.0/System.Composition.AttributedModel.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "System.Composition.Convention/7.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/System.Composition.Convention.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "System.Composition.Hosting/7.0.0": {
- "dependencies": {
- "System.Composition.Runtime": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/System.Composition.Hosting.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "System.Composition.Runtime/7.0.0": {
- "runtime": {
- "lib/net7.0/System.Composition.Runtime.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "System.Composition.TypedParts/7.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "7.0.0",
- "System.Composition.Hosting": "7.0.0",
- "System.Composition.Runtime": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/System.Composition.TypedParts.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "dependencies": {
- "System.Diagnostics.EventLog": "8.0.0",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/System.Configuration.ConfigurationManager.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.Data.DataSetExtensions/4.5.0": {},
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Diagnostics.EventLog/8.0.0": {
- "runtimeTargets": {
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.Formats.Asn1/9.0.2": {
- "runtime": {
- "lib/net9.0/System.Formats.Asn1.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.IdentityModel.Tokens.Jwt/6.35.0": {
- "dependencies": {
- "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
- "Microsoft.IdentityModel.Tokens": "6.35.0"
- },
- "runtime": {
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.Pipelines/7.0.0": {},
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Memory/4.5.4": {},
- "System.Memory.Data/1.0.2": {
- "dependencies": {
- "System.Text.Encodings.Web": "6.0.0",
- "System.Text.Json": "9.0.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/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Metadata/8.0.0": {
- "dependencies": {
- "System.Collections.Immutable": "8.0.0"
- }
- },
- "System.Reflection.MetadataLoadContext/8.0.0": {
- "dependencies": {
- "System.Collections.Immutable": "8.0.0",
- "System.Reflection.Metadata": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/System.Reflection.MetadataLoadContext.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.Caching/6.0.0": {
- "dependencies": {
- "System.Configuration.ConfigurationManager": "8.0.0"
- },
- "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.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Security.Cryptography.Cng/5.0.0": {
- "dependencies": {
- "System.Formats.Asn1": "9.0.2"
- }
- },
- "System.Security.Cryptography.Pkcs/6.0.4": {
- "dependencies": {
- "System.Formats.Asn1": "9.0.2"
- }
- },
- "System.Security.Cryptography.ProtectedData/8.0.0": {
- "runtime": {
- "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.Security.Principal.Windows/5.0.0": {},
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Text.Encodings.Web/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Text.Json/9.0.2": {
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "System.Threading.Channels/7.0.0": {},
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Dataflow/8.0.0": {},
- "System.Threading.Tasks.Extensions/4.5.4": {},
- "xunit/2.9.2": {
- "dependencies": {
- "xunit.analyzers": "1.16.0",
- "xunit.assert": "2.9.2",
- "xunit.core": "2.9.2"
- }
- },
- "xunit.abstractions/2.0.3": {
- "runtime": {
- "lib/netstandard2.0/xunit.abstractions.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "xunit.analyzers/1.16.0": {},
- "xunit.assert/2.9.2": {
- "runtime": {
- "lib/net6.0/xunit.assert.dll": {
- "assemblyVersion": "2.9.2.0",
- "fileVersion": "2.9.2.0"
- }
- }
- },
- "xunit.core/2.9.2": {
- "dependencies": {
- "xunit.extensibility.core": "2.9.2",
- "xunit.extensibility.execution": "2.9.2"
- }
- },
- "xunit.extensibility.core/2.9.2": {
- "dependencies": {
- "xunit.abstractions": "2.0.3"
- },
- "runtime": {
- "lib/netstandard1.1/xunit.core.dll": {
- "assemblyVersion": "2.9.2.0",
- "fileVersion": "2.9.2.0"
- }
- }
- },
- "xunit.extensibility.execution/2.9.2": {
- "dependencies": {
- "xunit.extensibility.core": "2.9.2"
- },
- "runtime": {
- "lib/netstandard1.1/xunit.execution.dotnet.dll": {
- "assemblyVersion": "2.9.2.0",
- "fileVersion": "2.9.2.0"
- }
- }
- },
- "xunit.runner.visualstudio/2.8.2": {},
- "CrowdedBackend/1.0.0": {
- "dependencies": {
- "MathNet.Numerics": "5.0.0",
- "Microsoft.AspNetCore.OpenApi": "9.0.2",
- "Microsoft.EntityFrameworkCore": "9.0.2",
- "Microsoft.EntityFrameworkCore.SqlServer": "9.0.2",
- "Microsoft.EntityFrameworkCore.Sqlite": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.Design": "9.0.0",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.3",
- "SkiaSharp": "3.116.1",
- "System.Linq": "4.3.0",
- "pythonnet": "3.0.5"
- },
- "runtime": {
- "CrowdedBackend.dll": {
- "assemblyVersion": "1.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "CrowdedBackend.Tests/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"
- },
- "coverlet.collector/6.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==",
- "path": "coverlet.collector/6.0.2",
- "hashPath": "coverlet.collector.6.0.2.nupkg.sha512"
- },
- "Humanizer/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==",
- "path": "humanizer/2.14.1",
- "hashPath": "humanizer.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "path": "humanizer.core/2.14.1",
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.af/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==",
- "path": "humanizer.core.af/2.14.1",
- "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ar/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==",
- "path": "humanizer.core.ar/2.14.1",
- "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.az/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==",
- "path": "humanizer.core.az/2.14.1",
- "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.bg/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==",
- "path": "humanizer.core.bg/2.14.1",
- "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.bn-BD/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==",
- "path": "humanizer.core.bn-bd/2.14.1",
- "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.cs/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==",
- "path": "humanizer.core.cs/2.14.1",
- "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.da/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==",
- "path": "humanizer.core.da/2.14.1",
- "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.de/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==",
- "path": "humanizer.core.de/2.14.1",
- "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.el/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==",
- "path": "humanizer.core.el/2.14.1",
- "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.es/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==",
- "path": "humanizer.core.es/2.14.1",
- "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.fa/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==",
- "path": "humanizer.core.fa/2.14.1",
- "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.fi-FI/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==",
- "path": "humanizer.core.fi-fi/2.14.1",
- "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.fr/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==",
- "path": "humanizer.core.fr/2.14.1",
- "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.fr-BE/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==",
- "path": "humanizer.core.fr-be/2.14.1",
- "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.he/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==",
- "path": "humanizer.core.he/2.14.1",
- "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.hr/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==",
- "path": "humanizer.core.hr/2.14.1",
- "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.hu/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==",
- "path": "humanizer.core.hu/2.14.1",
- "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.hy/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==",
- "path": "humanizer.core.hy/2.14.1",
- "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.id/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==",
- "path": "humanizer.core.id/2.14.1",
- "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.is/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==",
- "path": "humanizer.core.is/2.14.1",
- "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.it/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==",
- "path": "humanizer.core.it/2.14.1",
- "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ja/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==",
- "path": "humanizer.core.ja/2.14.1",
- "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ko-KR/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==",
- "path": "humanizer.core.ko-kr/2.14.1",
- "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ku/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==",
- "path": "humanizer.core.ku/2.14.1",
- "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.lv/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==",
- "path": "humanizer.core.lv/2.14.1",
- "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ms-MY/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==",
- "path": "humanizer.core.ms-my/2.14.1",
- "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.mt/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==",
- "path": "humanizer.core.mt/2.14.1",
- "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.nb/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==",
- "path": "humanizer.core.nb/2.14.1",
- "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.nb-NO/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==",
- "path": "humanizer.core.nb-no/2.14.1",
- "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.nl/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==",
- "path": "humanizer.core.nl/2.14.1",
- "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.pl/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==",
- "path": "humanizer.core.pl/2.14.1",
- "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.pt/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==",
- "path": "humanizer.core.pt/2.14.1",
- "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ro/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==",
- "path": "humanizer.core.ro/2.14.1",
- "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ru/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==",
- "path": "humanizer.core.ru/2.14.1",
- "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.sk/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==",
- "path": "humanizer.core.sk/2.14.1",
- "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.sl/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==",
- "path": "humanizer.core.sl/2.14.1",
- "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.sr/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==",
- "path": "humanizer.core.sr/2.14.1",
- "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.sr-Latn/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==",
- "path": "humanizer.core.sr-latn/2.14.1",
- "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.sv/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==",
- "path": "humanizer.core.sv/2.14.1",
- "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.th-TH/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==",
- "path": "humanizer.core.th-th/2.14.1",
- "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.tr/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==",
- "path": "humanizer.core.tr/2.14.1",
- "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.uk/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==",
- "path": "humanizer.core.uk/2.14.1",
- "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==",
- "path": "humanizer.core.uz-cyrl-uz/2.14.1",
- "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.uz-Latn-UZ/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==",
- "path": "humanizer.core.uz-latn-uz/2.14.1",
- "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.vi/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==",
- "path": "humanizer.core.vi/2.14.1",
- "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.zh-CN/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==",
- "path": "humanizer.core.zh-cn/2.14.1",
- "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.zh-Hans/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==",
- "path": "humanizer.core.zh-hans/2.14.1",
- "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.zh-Hant/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==",
- "path": "humanizer.core.zh-hant/2.14.1",
- "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512"
- },
- "MathNet.Numerics/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pg1W2VwaEQMAiTpGK840hZgzavnqjlCMTVSbtVCXVyT+7AX4mc1o89SPv4TBlAjhgCOo9c1Y+jZ5m3ti2YgGgA==",
- "path": "mathnet.numerics/5.0.0",
- "hashPath": "mathnet.numerics.5.0.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.OpenApi/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JUndpjRNdG8GvzBLH/J4hen4ehWaPcshtiQ6+sUs1Bcj3a7dOsmWpDloDlpPeMOVSlhHwUJ3Xld0ClZjsFLgFQ==",
- "path": "microsoft.aspnetcore.openapi/9.0.2",
- "hashPath": "microsoft.aspnetcore.openapi.9.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Razor.Language/6.0.24": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kBL6ljTREp/3fk8EKN27mrPy3WTqWUjiqCkKFlCKHUKRO3/9rAasKizX3vPWy4ZTcNsIPmVWUHwjDFmiW4MyNA==",
- "path": "microsoft.aspnetcore.razor.language/6.0.24",
- "hashPath": "microsoft.aspnetcore.razor.language.6.0.24.nupkg.sha512"
- },
- "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==",
- "path": "microsoft.bcl.asyncinterfaces/7.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512"
- },
- "Microsoft.Build/17.10.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZmGA8vhVXFzC4oo48ybQKlEybVKd0Ntfdr+Enqrn5ES1R6e/krIK9hLk0W33xuT0/G6QYd3YdhJZh+Xle717Ag==",
- "path": "microsoft.build/17.10.4",
- "hashPath": "microsoft.build.17.10.4.nupkg.sha512"
- },
- "Microsoft.Build.Framework/17.10.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4qXCwNOXBR1dyCzuks9SwTwFJQO/xmf2wcMislotDWJu7MN/r3xDNoU8Ae5QmKIHPaLG1xmfDkYS7qBVzxmeKw==",
- "path": "microsoft.build.framework/17.10.4",
- "hashPath": "microsoft.build.framework.17.10.4.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
- "path": "microsoft.codeanalysis.analyzers/3.3.4",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==",
- "path": "microsoft.codeanalysis.analyzerutilities/3.3.0",
- "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==",
- "path": "microsoft.codeanalysis.common/4.8.0",
- "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==",
- "path": "microsoft.codeanalysis.csharp/4.8.0",
- "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Gpas3l8PE1xz1VDIJNMkYuoFPXtuALxybP04caXh9avC2a0elsoBdukndkJXVZgdKPwraf0a98s7tjqnEk5QIQ==",
- "path": "microsoft.codeanalysis.csharp.features/4.8.0",
- "hashPath": "microsoft.codeanalysis.csharp.features.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0",
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Elfie/1.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==",
- "path": "microsoft.codeanalysis.elfie/1.0.0",
- "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Features/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sCVzMtSETGE16KeScwwlVfxaKRbUMSf/cgRPRPMJuou37SLT7XkIBzJu4e7mlFTzpJbfalV5tOcKpUtLO3eJAg==",
- "path": "microsoft.codeanalysis.features/4.8.0",
- "hashPath": "microsoft.codeanalysis.features.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Razor/6.0.24": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xIAjR6l/1PO2ILT6/lOGYfe8OzMqfqxh1lxFuM4Exluwc2sQhJw0kS7pEyJ0DE/UMYu6Jcdc53DmjOxQUDT2Pg==",
- "path": "microsoft.codeanalysis.razor/6.0.24",
- "hashPath": "microsoft.codeanalysis.razor.6.0.24.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ysiNNbAASVhV9wEd5oY2x99EwaVYtB13XZRjHsgWT/R1mQkxZF8jWsf7JWaZxD1+jNoz1QCQ6nbe+vr+6QvlFA==",
- "path": "microsoft.codeanalysis.scripting.common/4.8.0",
- "hashPath": "microsoft.codeanalysis.scripting.common.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==",
- "path": "microsoft.codeanalysis.workspaces.common/4.8.0",
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeCoverage/17.11.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nPJqrcA5iX+Y0kqoT3a+pD/8lrW/V7ayqnEJQsTonSoPz59J8bmoQhcSN4G8+UJ64Hkuf0zuxnfuj2lkHOq4cA==",
- "path": "microsoft.codecoverage/17.11.1",
- "hashPath": "microsoft.codecoverage.17.11.1.nupkg.sha512"
- },
- "Microsoft.CSharp/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
- "path": "microsoft.csharp/4.7.0",
- "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
- },
- "Microsoft.Data.SqlClient/5.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.Data.Sqlite.Core/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lJbaLhjWnnPfLhZrQXPri5F0pmlJXg68yCSf5aRM3qFF8WD7dT1jnQUuBd3YvT5s1VDOH9t/6filPcTIOwZR7Q==",
- "path": "microsoft.data.sqlite.core/9.0.2",
- "hashPath": "microsoft.data.sqlite.core.9.0.2.nupkg.sha512"
- },
- "Microsoft.DiaSymReader/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QcZrCETsBJqy/vQpFtJc+jSXQ0K5sucQ6NUFbTNVHD4vfZZOwjZ/3sBzczkC4DityhD3AVO/+K/+9ioLs1AgRA==",
- "path": "microsoft.diasymreader/2.0.0",
- "hashPath": "microsoft.diasymreader.2.0.0.nupkg.sha512"
- },
- "Microsoft.DotNet.Scaffolding.Shared/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9pfRsTzUANgI6J7nFjYip50ifcvmORjMmFByXmdYa//x8toziydhbg0cMylP1S2mRf4/96VKSAfpayYrO3m4Ww==",
- "path": "microsoft.dotnet.scaffolding.shared/9.0.0",
- "hashPath": "microsoft.dotnet.scaffolding.shared.9.0.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P90ZuybgcpW32y985eOYxSoZ9IiL0UTYQlY0y1Pt1iHAnpZj/dQHREpSpry1RNvk8YjAeoAkWFdem5conqB9zQ==",
- "path": "microsoft.entityframeworkcore/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oVSjNSIYHsk0N66eqAWgDcyo9etEFbUswbz7SmlYR6nGp05byHrJAYM5N8U2aGWJWJI6WvIC2e4TXJgH6GZ6HQ==",
- "path": "microsoft.entityframeworkcore.abstractions/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w4jzX7XI+L3erVGzbHXpx64A3QaLXxqG3f1vPpGYYZGpxOIHkh7e4iLLD7cq4Ng1vjkwzWl5ZJp0Kj/nHsgFYg==",
- "path": "microsoft.entityframeworkcore.analyzers/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-r7O4N5uaM95InVSGUj7SMOQWN0f1PBF2Y30ow7Jg+pGX5GJCRVd/1fq83lQ50YMyq+EzyHac5o4CDQA2RsjKJQ==",
- "path": "microsoft.entityframeworkcore.relational/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.relational.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Sqlite/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6lz56eqIbhAfCiJ0s2XPKE2vPrC5h9nksXm90dKoSmoNs0alpCMqLRd4uz5D/83DVEcusyJ6Xb/2/81qZa71MA==",
- "path": "microsoft.entityframeworkcore.sqlite/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlite.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YKu/XEvhMTtCT1Fd9aQbyt4Pk+WxgAzpBkZZ5jHu2Owu4bswzj3wfk9dw6gxdAp0JHkdLDjFvmODrP2kDSES9w==",
- "path": "microsoft.entityframeworkcore.sqlite.core/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlite.core.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.SqlServer/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PN65soRvSajLqr1kVRvpUwqI/rmab4x/6TxcYzyUVvg52DMPxx4Y760EZ6OzFhJnilP/WFEEzdftHsTsHQ64IQ==",
- "path": "microsoft.entityframeworkcore.sqlserver/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlserver.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-a7QhA25n+BzSM5r5d7JznfyluMBGI7z3qyLlFviZ1Eiqv6DdiK27sLZdP/rpYirBM6UYAKxu5TbmfhIy13GN9A==",
- "path": "microsoft.extensions.caching.abstractions/9.0.2",
- "hashPath": "microsoft.extensions.caching.abstractions.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AlEfp0DMz8E1h1Exi8LBrUCNmCYcGDfSM4F/uK1D1cYx/R3w0LVvlmjICqxqXTsy7BEZaCf5leRZY2FuPEiFaw==",
- "path": "microsoft.extensions.caching.memory/9.0.2",
- "hashPath": "microsoft.extensions.caching.memory.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I0O/270E/lUNqbBxlRVjxKOMZyYjP88dpEgQTveml+h2lTzAP4vbawLVwjS9SC7lKaU893bwyyNz0IVJYsm9EA==",
- "path": "microsoft.extensions.configuration.abstractions/9.0.2",
- "hashPath": "microsoft.extensions.configuration.abstractions.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZffbJrskOZ40JTzcTyKwFHS5eACSWp2bUQBBApIgGV+es8RaTD4OxUG7XxFr3RIPLXtYQ1jQzF2DjKB5fZn7Qg==",
- "path": "microsoft.extensions.dependencyinjection/9.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MNe7GSTBf3jQx5vYrXF0NZvn6l7hUKF6J54ENfAgCO8y6xjN1XUmKKWG464LP2ye6QqDiA1dkaWEZBYnhoZzjg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3ImbcbS68jy9sKr9Z9ToRbEEX0bvIRdb8zyf5ebtL9Av2CUCGHvaO5wsSXfRfAjr60Vrq0tlmNji9IzAxW6EOw==",
- "path": "microsoft.extensions.dependencymodel/9.0.2",
- "hashPath": "microsoft.extensions.dependencymodel.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-loV/0UNpt2bD+6kCDzFALVE63CDtqzPeC0LAetkdhiEr/tTNbvOlQ7CBResH7BQBd3cikrwiBfaHdyHMFUlc2g==",
- "path": "microsoft.extensions.logging/9.0.2",
- "hashPath": "microsoft.extensions.logging.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dV9s2Lamc8jSaqhl2BQSPn/AryDIH2sSbQUyLitLXV0ROmsb+SROnn2cH939JFbsNrnf3mIM3GNRKT7P0ldwLg==",
- "path": "microsoft.extensions.logging.abstractions/9.0.2",
- "hashPath": "microsoft.extensions.logging.abstractions.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zr98z+AN8+isdmDmQRuEJ/DAKZGUTHmdv3t0ZzjHvNqvA44nAgkXE9kYtfoN6581iALChhVaSw2Owt+Z2lVbkQ==",
- "path": "microsoft.extensions.options/9.0.2",
- "hashPath": "microsoft.extensions.options.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-puBMtKe/wLuYa7H6docBkLlfec+h8L35DXqsDKKJgW0WY5oCwJ3cBJKcDaZchv6knAyqOMfsl6VUbaR++E5LXA==",
- "path": "microsoft.extensions.primitives/9.0.2",
- "hashPath": "microsoft.extensions.primitives.9.0.2.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/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
- "path": "microsoft.identitymodel.abstractions/6.35.0",
- "hashPath": "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==",
- "path": "microsoft.identitymodel.jsonwebtokens/6.35.0",
- "hashPath": "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Logging/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==",
- "path": "microsoft.identitymodel.logging/6.35.0",
- "hashPath": "microsoft.identitymodel.logging.6.35.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Protocols/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==",
- "path": "microsoft.identitymodel.protocols/6.35.0",
- "hashPath": "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==",
- "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0",
- "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Tokens/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==",
- "path": "microsoft.identitymodel.tokens/6.35.0",
- "hashPath": "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512"
- },
- "Microsoft.NET.StringTools/17.10.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-wyABaqY+IHCMMSTQmcc3Ca6vbmg5BaEPgicnEgpll+4xyWZWlkQqUwafweUd9VAhBb4jqplMl6voUHQ6yfdUcg==",
- "path": "microsoft.net.stringtools/17.10.4",
- "hashPath": "microsoft.net.stringtools.17.10.4.nupkg.sha512"
- },
- "Microsoft.NET.Test.Sdk/17.11.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-U3Ty4BaGoEu+T2bwSko9tWqWUOU16WzSFkq6U8zve75oRBMSLTBdMAZrVNNz1Tq12aCdDom9fcOcM9QZaFHqFg==",
- "path": "microsoft.net.test.sdk/17.11.1",
- "hashPath": "microsoft.net.test.sdk.17.11.1.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "path": "microsoft.netcore.platforms/1.1.0",
- "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.OpenApi/1.6.17": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==",
- "path": "microsoft.openapi/1.6.17",
- "hashPath": "microsoft.openapi.1.6.17.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.TestPlatform.ObjectModel/17.11.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-E2jZqAU6JeWEVsyOEOrSW1o1bpHLgb25ypvKNB/moBXPVsFYBPd/Jwi7OrYahG50J83LfHzezYI+GaEkpAotiA==",
- "path": "microsoft.testplatform.objectmodel/17.11.1",
- "hashPath": "microsoft.testplatform.objectmodel.17.11.1.nupkg.sha512"
- },
- "Microsoft.TestPlatform.TestHost/17.11.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DnG+GOqJXO/CkoqlJWeDFTgPhqD/V6VqUIL3vINizCWZ3X+HshCtbbyDdSHQQEjrc2Sl/K3yaxX6s+5LFEdYuw==",
- "path": "microsoft.testplatform.testhost/17.11.1",
- "hashPath": "microsoft.testplatform.testhost.17.11.1.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W9ho78o/92MUDz04r7Al4dMx7djaqtSJE1cR7fMjy+Mm0StL5pVKXF24qnAFWJlip7KEpAa1QP35davXvuis9w==",
- "path": "microsoft.visualstudio.web.codegeneration/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Core/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1VIEZs8DNnefMa0eVDZucz/dk28Sg0QRiNiRJj7SdU8E6UiNJxnkzA748aqA6Qqi8OMTHTBKhzx0Hj9ykIi6/Q==",
- "path": "microsoft.visualstudio.web.codegeneration.core/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.core.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nO5MUL3iC0WjtAVea5d4v6kVcoL9ae/PnkC6NeEJhWazHKdKj7xfv6D2QvBx8uCIj8FUu9QpvvdN6m/xMp//EQ==",
- "path": "microsoft.visualstudio.web.codegeneration.design/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.design.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-F4+A6CaXmof/QoeWpqaMMeoVinfUSIMKa5xLOrwsZxGfYl6Qryhb06bkJ8yJaF05WefMM/wnj73oI3Ms2bBh7g==",
- "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-euoX0M4JnbzSUcFXfDq+GSSdXNRbKGUBTK+8gcnzHmhY3sHgHn9bgeeZDp+LGuoUQaP+WrWA8Nq92gCTcZLWSA==",
- "path": "microsoft.visualstudio.web.codegeneration.templating/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.templating.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-O8uehWLzgQhq3H2f+dxEkuYF8wWoBrT7iKtQXnHAc96qlVdLSARSxt3hlxqFSzK3ZkHp2P6lHt76LRH6J0PDrw==",
- "path": "microsoft.visualstudio.web.codegeneration.utils/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.utils.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WJhdsFXkpA0XR6PCjoxe9pRIqT8NV8Ggojv2cwaeCwxApzTAbLnglwADteeF7WlgHnr1VmJ+xdgzzNAAcJ9+Rg==",
- "path": "microsoft.visualstudio.web.codegenerators.mvc/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.9.0.0.nupkg.sha512"
- },
- "Mono.TextTemplating/3.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==",
- "path": "mono.texttemplating/3.0.0",
- "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "Npgsql/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hCbO8box7i/XXiTFqCJ3GoowyLqx3JXxyrbOJ6om7dr+eAknvBNhhUHeJVGAQo44sySZTfdVffp4BrtPeLZOAA==",
- "path": "npgsql/9.0.2",
- "hashPath": "npgsql.9.0.2.nupkg.sha512"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1A6HpMPbzK+quxdtug1aDHI4BSRTgpi7OaDt8WQh7SFJd2sSQ0nNTZ7sYrwyxVf4AdKdN7XJL9tpiiJjRUaa4g==",
- "path": "npgsql.entityframeworkcore.postgresql/9.0.3",
- "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.3.nupkg.sha512"
- },
- "NuGet.Common/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-T3bCiKUSx8wdYpcqr6Dbx93zAqFp689ee/oa1tH22XI/xl7EUzQ7No/WlE1FUqvEX1+Mqar3wRNAn2O/yxo94g==",
- "path": "nuget.common/6.11.0",
- "hashPath": "nuget.common.6.11.0.nupkg.sha512"
- },
- "NuGet.Configuration/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-73QprQqmumFrv3Ooi4YWpRYeBj8jZy9gNdOaOCp4pPInpt41SJJAz/aP4je+StwIJvi5HsgPPecLKekDIQEwKg==",
- "path": "nuget.configuration/6.11.0",
- "hashPath": "nuget.configuration.6.11.0.nupkg.sha512"
- },
- "NuGet.DependencyResolver.Core/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SoiPKPooA+IF+iCsX1ykwi3M0e+yBL34QnwIP3ujhQEn1dhlP/N1XsYAnKkJPxV15EZCahuuS4HtnBsZx+CHKA==",
- "path": "nuget.dependencyresolver.core/6.11.0",
- "hashPath": "nuget.dependencyresolver.core.6.11.0.nupkg.sha512"
- },
- "NuGet.Frameworks/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ew/mrfmLF5phsprysHbph2+tdZ10HMHAURavsr/Kx1WhybDG4vmGuoNLbbZMZOqnPRdpyCTc42OKWLoedxpYtA==",
- "path": "nuget.frameworks/6.11.0",
- "hashPath": "nuget.frameworks.6.11.0.nupkg.sha512"
- },
- "NuGet.LibraryModel/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KUV2eeMICMb24OPcICn/wgncNzt6+W+lmFVO5eorTdo1qV4WXxYGyG1NTPiCY+Nrv5H/Ilnv9UaUM2ozqSmnjw==",
- "path": "nuget.librarymodel/6.11.0",
- "hashPath": "nuget.librarymodel.6.11.0.nupkg.sha512"
- },
- "NuGet.Packaging/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VmUv2LedVuPY1tfNybORO2I9IuqOzeV7I5JBD+PwNvJq2bAqovi4FCw2cYI0g+kjOJXBN2lAJfrfnqtUOlVJdQ==",
- "path": "nuget.packaging/6.11.0",
- "hashPath": "nuget.packaging.6.11.0.nupkg.sha512"
- },
- "NuGet.ProjectModel/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-g0KtmDH6fas97WsN73yV2h1F5JT9o6+Y0wlPK+ij9YLKaAXaF6+1HkSaQMMJ+xh9/jCJG9G6nau6InOlb1g48g==",
- "path": "nuget.projectmodel/6.11.0",
- "hashPath": "nuget.projectmodel.6.11.0.nupkg.sha512"
- },
- "NuGet.Protocol/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p5B8oNLLnGhUfMbcS16aRiegj11pD6k+LELyRBqvNFR/pE3yR1XT+g1XS33ME9wvoU+xbCGnl4Grztt1jHPinw==",
- "path": "nuget.protocol/6.11.0",
- "hashPath": "nuget.protocol.6.11.0.nupkg.sha512"
- },
- "NuGet.Versioning/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v/GGlIj2dd7svplFmASWEueu62veKW0MrMtBaZ7QG8aJTSGv2yE+pgUGhXRcQ4nxNOEq/wLBrz1vkth/1SND7A==",
- "path": "nuget.versioning/6.11.0",
- "hashPath": "nuget.versioning.6.11.0.nupkg.sha512"
- },
- "pythonnet/3.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-20UVeB1uDpvCHZi8yNv7VCSUKVRRaxPZWFYhkO+BjfBB9GgOh2vEeucy3U7zTY8xEVCHf2XHpRNfAU/3quxXZw==",
- "path": "pythonnet/3.0.5",
- "hashPath": "pythonnet.3.0.5.nupkg.sha512"
- },
- "SkiaSharp/3.116.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DNDwbRjP+aMo27dV2h/uHCVTcWubWWxHnPLiePNyl24f4Pv43mQ8AQQeseOrKR+J3AOCEs6t0sUjo0aa3j3RWQ==",
- "path": "skiasharp/3.116.1",
- "hashPath": "skiasharp.3.116.1.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.macOS/3.116.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KPvpKysDmEMt0NnAZPX5U6KFk0LmG/72/IjAIJemIksIZ0Tjs9pGpr3L+zboVCv1MLVoJLKl3nJDXUG6Jda6A==",
- "path": "skiasharp.nativeassets.macos/3.116.1",
- "hashPath": "skiasharp.nativeassets.macos.3.116.1.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.Win32/3.116.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dRQ75MCI8oz6zAs2Y1w6pq6ARs4MhdNG+gf3doOxOxdnueDXffQLGQIxON54GDoxc0WjKOoHMKBR4DhaduwwQw==",
- "path": "skiasharp.nativeassets.win32/3.116.1",
- "hashPath": "skiasharp.nativeassets.win32.3.116.1.nupkg.sha512"
- },
- "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==",
- "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10",
- "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512"
- },
- "SQLitePCLRaw.core/2.1.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==",
- "path": "sqlitepclraw.core/2.1.10",
- "hashPath": "sqlitepclraw.core.2.1.10.nupkg.sha512"
- },
- "SQLitePCLRaw.lib.e_sqlite3/2.1.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==",
- "path": "sqlitepclraw.lib.e_sqlite3/2.1.10",
- "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512"
- },
- "SQLitePCLRaw.provider.e_sqlite3/2.1.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==",
- "path": "sqlitepclraw.provider.e_sqlite3/2.1.10",
- "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.10.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/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
- "path": "system.codedom/6.0.0",
- "hashPath": "system.codedom.6.0.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Immutable/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==",
- "path": "system.collections.immutable/8.0.0",
- "hashPath": "system.collections.immutable.8.0.0.nupkg.sha512"
- },
- "System.Composition/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==",
- "path": "system.composition/7.0.0",
- "hashPath": "system.composition.7.0.0.nupkg.sha512"
- },
- "System.Composition.AttributedModel/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==",
- "path": "system.composition.attributedmodel/7.0.0",
- "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512"
- },
- "System.Composition.Convention/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==",
- "path": "system.composition.convention/7.0.0",
- "hashPath": "system.composition.convention.7.0.0.nupkg.sha512"
- },
- "System.Composition.Hosting/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==",
- "path": "system.composition.hosting/7.0.0",
- "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512"
- },
- "System.Composition.Runtime/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==",
- "path": "system.composition.runtime/7.0.0",
- "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512"
- },
- "System.Composition.TypedParts/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==",
- "path": "system.composition.typedparts/7.0.0",
- "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512"
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==",
- "path": "system.configuration.configurationmanager/8.0.0",
- "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512"
- },
- "System.Data.DataSetExtensions/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==",
- "path": "system.data.datasetextensions/4.5.0",
- "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/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.Diagnostics.EventLog/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
- "path": "system.diagnostics.eventlog/8.0.0",
- "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512"
- },
- "System.Formats.Asn1/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKWHCPYQr/+cIoO8EVjFn7yFyiT8Mnf1wif/5bYGsqxQV6PrwlX2HQ9brZNx57ViOvRe4ing1xgHCKl/5Ko8xg==",
- "path": "system.formats.asn1/9.0.2",
- "hashPath": "system.formats.asn1.9.0.2.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.IdentityModel.Tokens.Jwt/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==",
- "path": "system.identitymodel.tokens.jwt/6.35.0",
- "hashPath": "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.Pipelines/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==",
- "path": "system.io.pipelines/7.0.0",
- "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.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/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==",
- "path": "system.reflection.metadata/8.0.0",
- "hashPath": "system.reflection.metadata.8.0.0.nupkg.sha512"
- },
- "System.Reflection.MetadataLoadContext/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SZxrQ4sQYnIcdwiO3G/lHZopbPYQ2lW0ioT4JezgccWUrKaKbHLJbAGZaDfkYjWcta1pWssAo3MOXLsR0ie4tQ==",
- "path": "system.reflection.metadataloadcontext/8.0.0",
- "hashPath": "system.reflection.metadataloadcontext.8.0.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Caching/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.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.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.Pkcs/6.0.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LGbXi1oUJ9QgCNGXRO9ndzBL/GZgANcsURpMhNR8uO+rca47SZmciS3RSQUvlQRwK3QHZSHNOXzoMUASKA+Anw==",
- "path": "system.security.cryptography.pkcs/6.0.4",
- "hashPath": "system.security.cryptography.pkcs.6.0.4.nupkg.sha512"
- },
- "System.Security.Cryptography.ProtectedData/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==",
- "path": "system.security.cryptography.protecteddata/8.0.0",
- "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512"
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
- "path": "system.security.principal.windows/5.0.0",
- "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Text.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/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4TY2Yokh5Xp8XHFhsY9y84yokS7B0rhkaZCXuRiKppIiKwPVH4lVSFD9EEFzRpXdBM5ZeZXD43tc2vB6njEwwQ==",
- "path": "system.text.json/9.0.2",
- "hashPath": "system.text.json.9.0.2.nupkg.sha512"
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "path": "system.threading.channels/7.0.0",
- "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Dataflow/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7V0I8tPa9V7UxMx/+7DIwkhls5ouaEMQx6l/GwGm1Y8kJQ61On9B/PxCXFLbgu5/C47g0BP2CUYs+nMv1+Oaqw==",
- "path": "system.threading.tasks.dataflow/8.0.0",
- "hashPath": "system.threading.tasks.dataflow.8.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"
- },
- "xunit/2.9.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7LhFS2N9Z6Xgg8aE5lY95cneYivRMfRI8v+4PATa4S64D5Z/Plkg0qa8dTRHSiGRgVZ/CL2gEfJDE5AUhOX+2Q==",
- "path": "xunit/2.9.2",
- "hashPath": "xunit.2.9.2.nupkg.sha512"
- },
- "xunit.abstractions/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
- "path": "xunit.abstractions/2.0.3",
- "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512"
- },
- "xunit.analyzers/1.16.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hptYM7vGr46GUIgZt21YHO4rfuBAQS2eINbFo16CV/Dqq+24Tp+P5gDCACu1AbFfW4Sp/WRfDPSK8fmUUb8s0Q==",
- "path": "xunit.analyzers/1.16.0",
- "hashPath": "xunit.analyzers.1.16.0.nupkg.sha512"
- },
- "xunit.assert/2.9.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QkNBAQG4pa66cholm28AxijBjrmki98/vsEh4Sx5iplzotvPgpiotcxqJQMRC8d7RV7nIT8ozh97957hDnZwsQ==",
- "path": "xunit.assert/2.9.2",
- "hashPath": "xunit.assert.2.9.2.nupkg.sha512"
- },
- "xunit.core/2.9.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-O6RrNSdmZ0xgEn5kT927PNwog5vxTtKrWMihhhrT0Sg9jQ7iBDciYOwzBgP2krBEk5/GBXI18R1lKvmnxGcb4w==",
- "path": "xunit.core/2.9.2",
- "hashPath": "xunit.core.2.9.2.nupkg.sha512"
- },
- "xunit.extensibility.core/2.9.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ol+KlBJz1x8BrdnhN2DeOuLrr1I/cTwtHCggL9BvYqFuVd/TUSzxNT5O0NxCIXth30bsKxgMfdqLTcORtM52yQ==",
- "path": "xunit.extensibility.core/2.9.2",
- "hashPath": "xunit.extensibility.core.2.9.2.nupkg.sha512"
- },
- "xunit.extensibility.execution/2.9.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rKMpq4GsIUIJibXuZoZ8lYp5EpROlnYaRpwu9Zr0sRZXE7JqJfEEbCsUriZqB+ByXCLFBJyjkTRULMdC+U566g==",
- "path": "xunit.extensibility.execution/2.9.2",
- "hashPath": "xunit.extensibility.execution.2.9.2.nupkg.sha512"
- },
- "xunit.runner.visualstudio/2.8.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vm1tbfXhFmjFMUmS4M0J0ASXz3/U5XvXBa6DOQUL3fEz4Vt6YPhv+ESCarx6M6D+9kJkJYZKCNvJMas1+nVfmQ==",
- "path": "xunit.runner.visualstudio/2.8.2",
- "hashPath": "xunit.runner.visualstudio.2.8.2.nupkg.sha512"
- },
- "CrowdedBackend/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.dll
deleted file mode 100644
index 689bcf9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.pdb b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.pdb
deleted file mode 100644
index bcbc1d0..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.pdb and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.runtimeconfig.json b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.runtimeconfig.json
deleted file mode 100644
index 6e29dbe..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.runtimeconfig.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net9.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "9.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "9.0.0"
- }
- ],
- "configProperties": {
- "System.Reflection.NullabilityInfoContext.IsSupported": true,
- "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
- }
- }
-}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.deps.json b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.deps.json
deleted file mode 100644
index ffb58aa..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.deps.json
+++ /dev/null
@@ -1,3761 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v9.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v9.0": {
- "CrowdedBackend/1.0.0": {
- "dependencies": {
- "MathNet.Numerics": "5.0.0",
- "Microsoft.AspNetCore.OpenApi": "9.0.2",
- "Microsoft.EntityFrameworkCore": "9.0.2",
- "Microsoft.EntityFrameworkCore.Design": "9.0.2",
- "Microsoft.EntityFrameworkCore.SqlServer": "9.0.2",
- "Microsoft.EntityFrameworkCore.Sqlite": "9.0.2",
- "Microsoft.EntityFrameworkCore.Tools": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.Design": "9.0.0",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.3",
- "SkiaSharp": "3.116.1",
- "System.Linq": "4.3.0",
- "pythonnet": "3.0.5"
- },
- "runtime": {
- "CrowdedBackend.dll": {}
- }
- },
- "Azure.Core/1.38.0": {
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "7.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": "9.0.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": "8.0.0",
- "System.Text.Json": "9.0.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"
- }
- }
- },
- "Humanizer/2.14.1": {
- "dependencies": {
- "Humanizer.Core.af": "2.14.1",
- "Humanizer.Core.ar": "2.14.1",
- "Humanizer.Core.az": "2.14.1",
- "Humanizer.Core.bg": "2.14.1",
- "Humanizer.Core.bn-BD": "2.14.1",
- "Humanizer.Core.cs": "2.14.1",
- "Humanizer.Core.da": "2.14.1",
- "Humanizer.Core.de": "2.14.1",
- "Humanizer.Core.el": "2.14.1",
- "Humanizer.Core.es": "2.14.1",
- "Humanizer.Core.fa": "2.14.1",
- "Humanizer.Core.fi-FI": "2.14.1",
- "Humanizer.Core.fr": "2.14.1",
- "Humanizer.Core.fr-BE": "2.14.1",
- "Humanizer.Core.he": "2.14.1",
- "Humanizer.Core.hr": "2.14.1",
- "Humanizer.Core.hu": "2.14.1",
- "Humanizer.Core.hy": "2.14.1",
- "Humanizer.Core.id": "2.14.1",
- "Humanizer.Core.is": "2.14.1",
- "Humanizer.Core.it": "2.14.1",
- "Humanizer.Core.ja": "2.14.1",
- "Humanizer.Core.ko-KR": "2.14.1",
- "Humanizer.Core.ku": "2.14.1",
- "Humanizer.Core.lv": "2.14.1",
- "Humanizer.Core.ms-MY": "2.14.1",
- "Humanizer.Core.mt": "2.14.1",
- "Humanizer.Core.nb": "2.14.1",
- "Humanizer.Core.nb-NO": "2.14.1",
- "Humanizer.Core.nl": "2.14.1",
- "Humanizer.Core.pl": "2.14.1",
- "Humanizer.Core.pt": "2.14.1",
- "Humanizer.Core.ro": "2.14.1",
- "Humanizer.Core.ru": "2.14.1",
- "Humanizer.Core.sk": "2.14.1",
- "Humanizer.Core.sl": "2.14.1",
- "Humanizer.Core.sr": "2.14.1",
- "Humanizer.Core.sr-Latn": "2.14.1",
- "Humanizer.Core.sv": "2.14.1",
- "Humanizer.Core.th-TH": "2.14.1",
- "Humanizer.Core.tr": "2.14.1",
- "Humanizer.Core.uk": "2.14.1",
- "Humanizer.Core.uz-Cyrl-UZ": "2.14.1",
- "Humanizer.Core.uz-Latn-UZ": "2.14.1",
- "Humanizer.Core.vi": "2.14.1",
- "Humanizer.Core.zh-CN": "2.14.1",
- "Humanizer.Core.zh-Hans": "2.14.1",
- "Humanizer.Core.zh-Hant": "2.14.1"
- }
- },
- "Humanizer.Core/2.14.1": {
- "runtime": {
- "lib/net6.0/Humanizer.dll": {
- "assemblyVersion": "2.14.0.0",
- "fileVersion": "2.14.1.48190"
- }
- }
- },
- "Humanizer.Core.af/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/af/Humanizer.resources.dll": {
- "locale": "af"
- }
- }
- },
- "Humanizer.Core.ar/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/ar/Humanizer.resources.dll": {
- "locale": "ar"
- }
- }
- },
- "Humanizer.Core.az/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/az/Humanizer.resources.dll": {
- "locale": "az"
- }
- }
- },
- "Humanizer.Core.bg/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/bg/Humanizer.resources.dll": {
- "locale": "bg"
- }
- }
- },
- "Humanizer.Core.bn-BD/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/bn-BD/Humanizer.resources.dll": {
- "locale": "bn-BD"
- }
- }
- },
- "Humanizer.Core.cs/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/cs/Humanizer.resources.dll": {
- "locale": "cs"
- }
- }
- },
- "Humanizer.Core.da/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/da/Humanizer.resources.dll": {
- "locale": "da"
- }
- }
- },
- "Humanizer.Core.de/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/de/Humanizer.resources.dll": {
- "locale": "de"
- }
- }
- },
- "Humanizer.Core.el/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/el/Humanizer.resources.dll": {
- "locale": "el"
- }
- }
- },
- "Humanizer.Core.es/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/es/Humanizer.resources.dll": {
- "locale": "es"
- }
- }
- },
- "Humanizer.Core.fa/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/fa/Humanizer.resources.dll": {
- "locale": "fa"
- }
- }
- },
- "Humanizer.Core.fi-FI/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/fi-FI/Humanizer.resources.dll": {
- "locale": "fi-FI"
- }
- }
- },
- "Humanizer.Core.fr/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/fr/Humanizer.resources.dll": {
- "locale": "fr"
- }
- }
- },
- "Humanizer.Core.fr-BE/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/fr-BE/Humanizer.resources.dll": {
- "locale": "fr-BE"
- }
- }
- },
- "Humanizer.Core.he/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/he/Humanizer.resources.dll": {
- "locale": "he"
- }
- }
- },
- "Humanizer.Core.hr/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/hr/Humanizer.resources.dll": {
- "locale": "hr"
- }
- }
- },
- "Humanizer.Core.hu/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/hu/Humanizer.resources.dll": {
- "locale": "hu"
- }
- }
- },
- "Humanizer.Core.hy/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/hy/Humanizer.resources.dll": {
- "locale": "hy"
- }
- }
- },
- "Humanizer.Core.id/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/id/Humanizer.resources.dll": {
- "locale": "id"
- }
- }
- },
- "Humanizer.Core.is/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/is/Humanizer.resources.dll": {
- "locale": "is"
- }
- }
- },
- "Humanizer.Core.it/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/it/Humanizer.resources.dll": {
- "locale": "it"
- }
- }
- },
- "Humanizer.Core.ja/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/ja/Humanizer.resources.dll": {
- "locale": "ja"
- }
- }
- },
- "Humanizer.Core.ko-KR/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": {
- "locale": "ko-KR"
- }
- }
- },
- "Humanizer.Core.ku/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/ku/Humanizer.resources.dll": {
- "locale": "ku"
- }
- }
- },
- "Humanizer.Core.lv/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/lv/Humanizer.resources.dll": {
- "locale": "lv"
- }
- }
- },
- "Humanizer.Core.ms-MY/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": {
- "locale": "ms-MY"
- }
- }
- },
- "Humanizer.Core.mt/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/netstandard2.0/mt/Humanizer.resources.dll": {
- "locale": "mt"
- }
- }
- },
- "Humanizer.Core.nb/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/nb/Humanizer.resources.dll": {
- "locale": "nb"
- }
- }
- },
- "Humanizer.Core.nb-NO/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/nb-NO/Humanizer.resources.dll": {
- "locale": "nb-NO"
- }
- }
- },
- "Humanizer.Core.nl/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/nl/Humanizer.resources.dll": {
- "locale": "nl"
- }
- }
- },
- "Humanizer.Core.pl/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/pl/Humanizer.resources.dll": {
- "locale": "pl"
- }
- }
- },
- "Humanizer.Core.pt/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/pt/Humanizer.resources.dll": {
- "locale": "pt"
- }
- }
- },
- "Humanizer.Core.ro/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/ro/Humanizer.resources.dll": {
- "locale": "ro"
- }
- }
- },
- "Humanizer.Core.ru/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/ru/Humanizer.resources.dll": {
- "locale": "ru"
- }
- }
- },
- "Humanizer.Core.sk/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/sk/Humanizer.resources.dll": {
- "locale": "sk"
- }
- }
- },
- "Humanizer.Core.sl/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/sl/Humanizer.resources.dll": {
- "locale": "sl"
- }
- }
- },
- "Humanizer.Core.sr/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/sr/Humanizer.resources.dll": {
- "locale": "sr"
- }
- }
- },
- "Humanizer.Core.sr-Latn/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/sr-Latn/Humanizer.resources.dll": {
- "locale": "sr-Latn"
- }
- }
- },
- "Humanizer.Core.sv/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/sv/Humanizer.resources.dll": {
- "locale": "sv"
- }
- }
- },
- "Humanizer.Core.th-TH/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/netstandard2.0/th-TH/Humanizer.resources.dll": {
- "locale": "th-TH"
- }
- }
- },
- "Humanizer.Core.tr/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/tr/Humanizer.resources.dll": {
- "locale": "tr"
- }
- }
- },
- "Humanizer.Core.uk/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/uk/Humanizer.resources.dll": {
- "locale": "uk"
- }
- }
- },
- "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": {
- "locale": "uz-Cyrl-UZ"
- }
- }
- },
- "Humanizer.Core.uz-Latn-UZ/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": {
- "locale": "uz-Latn-UZ"
- }
- }
- },
- "Humanizer.Core.vi/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/vi/Humanizer.resources.dll": {
- "locale": "vi"
- }
- }
- },
- "Humanizer.Core.zh-CN/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/zh-CN/Humanizer.resources.dll": {
- "locale": "zh-CN"
- }
- }
- },
- "Humanizer.Core.zh-Hans/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/zh-Hans/Humanizer.resources.dll": {
- "locale": "zh-Hans"
- }
- }
- },
- "Humanizer.Core.zh-Hant/2.14.1": {
- "dependencies": {
- "Humanizer.Core": "2.14.1"
- },
- "resources": {
- "lib/net6.0/zh-Hant/Humanizer.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "MathNet.Numerics/5.0.0": {
- "runtime": {
- "lib/net6.0/MathNet.Numerics.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.0.0"
- }
- }
- },
- "Microsoft.AspNetCore.OpenApi/9.0.2": {
- "dependencies": {
- "Microsoft.OpenApi": "1.6.17"
- },
- "runtime": {
- "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6704"
- }
- }
- },
- "Microsoft.AspNetCore.Razor.Language/6.0.24": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
- "assemblyVersion": "6.0.24.0",
- "fileVersion": "6.0.2423.51812"
- }
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Build/17.10.4": {
- "dependencies": {
- "Microsoft.Build.Framework": "17.10.4",
- "Microsoft.NET.StringTools": "17.10.4",
- "System.Collections.Immutable": "8.0.0",
- "System.Configuration.ConfigurationManager": "8.0.0",
- "System.Reflection.Metadata": "8.0.0",
- "System.Reflection.MetadataLoadContext": "8.0.0",
- "System.Security.Principal.Windows": "5.0.0",
- "System.Threading.Tasks.Dataflow": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Build.dll": {
- "assemblyVersion": "15.1.0.0",
- "fileVersion": "17.10.4.21802"
- }
- }
- },
- "Microsoft.Build.Framework/17.10.4": {
- "runtime": {
- "lib/net8.0/Microsoft.Build.Framework.dll": {
- "assemblyVersion": "15.1.0.0",
- "fileVersion": "17.10.4.21802"
- }
- }
- },
- "Microsoft.Build.Locator/1.7.8": {
- "runtime": {
- "lib/net6.0/Microsoft.Build.Locator.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.7.8.28074"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.4": {},
- "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
- "assemblyVersion": "3.3.2.30504",
- "fileVersion": "3.3.2.30504"
- }
- }
- },
- "Microsoft.CodeAnalysis.Common/4.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
- "System.Collections.Immutable": "8.0.0",
- "System.Reflection.Metadata": "8.0.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.8.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Elfie/1.0.0": {
- "dependencies": {
- "System.Configuration.ConfigurationManager": "8.0.0",
- "System.Data.DataSetExtensions": "4.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.16"
- }
- }
- },
- "Microsoft.CodeAnalysis.Features/4.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Elfie": "1.0.0",
- "Microsoft.CodeAnalysis.Scripting.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DiaSymReader": "2.0.0",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Razor/6.0.24": {
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
- "assemblyVersion": "6.0.24.0",
- "fileVersion": "6.0.2423.51812"
- }
- }
- },
- "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "4.8.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "System.Composition": "7.0.0",
- "System.IO.Pipelines": "7.0.0",
- "System.Threading.Channels": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": {
- "dependencies": {
- "Microsoft.Build.Framework": "17.10.4",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- },
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.23.55801"
- }
- },
- "resources": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CSharp/4.7.0": {},
- "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": "6.35.0",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
- "Microsoft.SqlServer.Server": "1.0.0",
- "System.Configuration.ConfigurationManager": "8.0.0",
- "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": "0.0.0.0"
- },
- "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "Microsoft.Data.Sqlite.Core/9.0.2": {
- "dependencies": {
- "SQLitePCLRaw.core": "2.1.10"
- },
- "runtime": {
- "lib/net8.0/Microsoft.Data.Sqlite.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.DiaSymReader/2.0.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.DiaSymReader.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.23.22804"
- }
- }
- },
- "Microsoft.DotNet.Scaffolding.Shared/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/9.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "9.0.2",
- "Microsoft.EntityFrameworkCore.Analyzers": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/9.0.2": {
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/9.0.2": {},
- "Microsoft.EntityFrameworkCore.Design/9.0.2": {
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Build.Framework": "17.10.4",
- "Microsoft.Build.Locator": "1.7.8",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2",
- "Mono.TextTemplating": "3.0.0",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/9.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite/9.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Sqlite.Core": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2",
- "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10",
- "SQLitePCLRaw.core": "2.1.10",
- "System.Text.Json": "9.0.2"
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.2": {
- "dependencies": {
- "Microsoft.Data.Sqlite.Core": "9.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2",
- "SQLitePCLRaw.core": "2.1.10",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.SqlServer/9.0.2": {
- "dependencies": {
- "Microsoft.Data.SqlClient": "5.1.6",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2",
- "System.Formats.Asn1": "9.0.2",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.225.6701"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/9.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "9.0.2"
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Caching.Memory/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "9.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.2",
- "Microsoft.Extensions.Options": "9.0.2",
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.2": {
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/9.0.2": {
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": {
- "assemblyVersion": "9.0.0.2",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Logging/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.2",
- "Microsoft.Extensions.Options": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Options/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2",
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Extensions.Primitives/9.0.2": {
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "Microsoft.Identity.Client/4.61.3": {
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.35.0",
- "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": "8.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/6.35.0": {
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "6.35.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encodings.Web": "6.0.0",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/6.35.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.35.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols/6.35.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "6.35.0",
- "Microsoft.IdentityModel.Tokens": "6.35.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Protocols": "6.35.0",
- "System.IdentityModel.Tokens.Jwt": "6.35.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/6.35.0": {
- "dependencies": {
- "Microsoft.CSharp": "4.7.0",
- "Microsoft.IdentityModel.Logging": "6.35.0",
- "System.Security.Cryptography.Cng": "5.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "Microsoft.NET.StringTools/17.10.4": {
- "runtime": {
- "lib/net8.0/Microsoft.NET.StringTools.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "17.10.4.21802"
- }
- }
- },
- "Microsoft.NETCore.Platforms/1.1.0": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.OpenApi/1.6.17": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "assemblyVersion": "1.6.17.0",
- "fileVersion": "1.6.17.0"
- }
- }
- },
- "Microsoft.SqlServer.Server/1.0.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Core/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.Core": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/9.0.0": {
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.2",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.24.55703"
- }
- }
- },
- "Mono.TextTemplating/3.0.0": {
- "dependencies": {
- "System.CodeDom": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/Mono.TextTemplating.dll": {
- "assemblyVersion": "3.0.0.0",
- "fileVersion": "3.0.0.1"
- }
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "Npgsql/9.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "assemblyVersion": "9.0.2.0",
- "fileVersion": "9.0.2.0"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.3": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "9.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.2",
- "Npgsql": "9.0.2"
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "assemblyVersion": "9.0.3.0",
- "fileVersion": "9.0.3.0"
- }
- }
- },
- "NuGet.Common/6.11.0": {
- "dependencies": {
- "NuGet.Frameworks": "6.11.0"
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Common.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.Configuration/6.11.0": {
- "dependencies": {
- "NuGet.Common": "6.11.0",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Configuration.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.DependencyResolver.Core/6.11.0": {
- "dependencies": {
- "NuGet.Configuration": "6.11.0",
- "NuGet.LibraryModel": "6.11.0",
- "NuGet.Protocol": "6.11.0"
- },
- "runtime": {
- "lib/net5.0/NuGet.DependencyResolver.Core.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.Frameworks/6.11.0": {
- "runtime": {
- "lib/netstandard2.0/NuGet.Frameworks.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.LibraryModel/6.11.0": {
- "dependencies": {
- "NuGet.Common": "6.11.0",
- "NuGet.Versioning": "6.11.0"
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.LibraryModel.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.Packaging/6.11.0": {
- "dependencies": {
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Configuration": "6.11.0",
- "NuGet.Versioning": "6.11.0",
- "System.Security.Cryptography.Pkcs": "6.0.4"
- },
- "runtime": {
- "lib/net5.0/NuGet.Packaging.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.ProjectModel/6.11.0": {
- "dependencies": {
- "NuGet.DependencyResolver.Core": "6.11.0"
- },
- "runtime": {
- "lib/net5.0/NuGet.ProjectModel.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.Protocol/6.11.0": {
- "dependencies": {
- "NuGet.Packaging": "6.11.0"
- },
- "runtime": {
- "lib/net5.0/NuGet.Protocol.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "NuGet.Versioning/6.11.0": {
- "runtime": {
- "lib/netstandard2.0/NuGet.Versioning.dll": {
- "assemblyVersion": "6.11.0.119",
- "fileVersion": "6.11.0.119"
- }
- }
- },
- "pythonnet/3.0.5": {
- "dependencies": {
- "Microsoft.CSharp": "4.7.0",
- "System.Reflection.Emit": "4.3.0"
- },
- "runtime": {
- "lib/netstandard2.0/Python.Runtime.dll": {
- "assemblyVersion": "3.0.5.0",
- "fileVersion": "3.0.5.0"
- }
- }
- },
- "SkiaSharp/3.116.1": {
- "dependencies": {
- "SkiaSharp.NativeAssets.Win32": "3.116.1",
- "SkiaSharp.NativeAssets.macOS": "3.116.1"
- },
- "runtime": {
- "lib/net8.0/SkiaSharp.dll": {
- "assemblyVersion": "3.116.0.0",
- "fileVersion": "3.116.1.0"
- }
- }
- },
- "SkiaSharp.NativeAssets.macOS/3.116.1": {
- "runtimeTargets": {
- "runtimes/osx/native/libSkiaSharp.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SkiaSharp.NativeAssets.Win32/3.116.1": {
- "runtimeTargets": {
- "runtimes/win-arm64/native/libSkiaSharp.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x64/native/libSkiaSharp.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x86/native/libSkiaSharp.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": {
- "dependencies": {
- "SQLitePCLRaw.lib.e_sqlite3": "2.1.10",
- "SQLitePCLRaw.provider.e_sqlite3": "2.1.10"
- },
- "runtime": {
- "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {
- "assemblyVersion": "2.1.10.2445",
- "fileVersion": "2.1.10.2445"
- }
- }
- },
- "SQLitePCLRaw.core/2.1.10": {
- "dependencies": {
- "System.Memory": "4.5.4"
- },
- "runtime": {
- "lib/netstandard2.0/SQLitePCLRaw.core.dll": {
- "assemblyVersion": "2.1.10.2445",
- "fileVersion": "2.1.10.2445"
- }
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3/2.1.10": {
- "runtimeTargets": {
- "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": {
- "rid": "browser-wasm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-arm/native/libe_sqlite3.so": {
- "rid": "linux-arm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-arm64/native/libe_sqlite3.so": {
- "rid": "linux-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-armel/native/libe_sqlite3.so": {
- "rid": "linux-armel",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-mips64/native/libe_sqlite3.so": {
- "rid": "linux-mips64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-arm/native/libe_sqlite3.so": {
- "rid": "linux-musl-arm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-arm64/native/libe_sqlite3.so": {
- "rid": "linux-musl-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-s390x/native/libe_sqlite3.so": {
- "rid": "linux-musl-s390x",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
- "rid": "linux-musl-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-ppc64le/native/libe_sqlite3.so": {
- "rid": "linux-ppc64le",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-s390x/native/libe_sqlite3.so": {
- "rid": "linux-s390x",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x64/native/libe_sqlite3.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x86/native/libe_sqlite3.so": {
- "rid": "linux-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": {
- "rid": "maccatalyst-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": {
- "rid": "maccatalyst-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-arm64/native/libe_sqlite3.dylib": {
- "rid": "osx-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx-x64/native/libe_sqlite3.dylib": {
- "rid": "osx-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm/native/e_sqlite3.dll": {
- "rid": "win-arm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm64/native/e_sqlite3.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x64/native/e_sqlite3.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x86/native/e_sqlite3.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.provider.e_sqlite3/2.1.10": {
- "dependencies": {
- "SQLitePCLRaw.core": "2.1.10"
- },
- "runtime": {
- "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {
- "assemblyVersion": "2.1.10.2445",
- "fileVersion": "2.1.10.2445"
- }
- }
- },
- "System.ClientModel/1.0.0": {
- "dependencies": {
- "System.Memory.Data": "1.0.2",
- "System.Text.Json": "9.0.2"
- },
- "runtime": {
- "lib/net6.0/System.ClientModel.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.24.5302"
- }
- }
- },
- "System.CodeDom/6.0.0": {
- "runtime": {
- "lib/net6.0/System.CodeDom.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Immutable/8.0.0": {},
- "System.Composition/7.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "7.0.0",
- "System.Composition.Convention": "7.0.0",
- "System.Composition.Hosting": "7.0.0",
- "System.Composition.Runtime": "7.0.0",
- "System.Composition.TypedParts": "7.0.0"
- }
- },
- "System.Composition.AttributedModel/7.0.0": {
- "runtime": {
- "lib/net7.0/System.Composition.AttributedModel.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "System.Composition.Convention/7.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/System.Composition.Convention.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "System.Composition.Hosting/7.0.0": {
- "dependencies": {
- "System.Composition.Runtime": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/System.Composition.Hosting.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "System.Composition.Runtime/7.0.0": {
- "runtime": {
- "lib/net7.0/System.Composition.Runtime.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "System.Composition.TypedParts/7.0.0": {
- "dependencies": {
- "System.Composition.AttributedModel": "7.0.0",
- "System.Composition.Hosting": "7.0.0",
- "System.Composition.Runtime": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/System.Composition.TypedParts.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "dependencies": {
- "System.Diagnostics.EventLog": "8.0.0",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/System.Configuration.ConfigurationManager.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.Data.DataSetExtensions/4.5.0": {},
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Diagnostics.EventLog/8.0.0": {
- "runtimeTargets": {
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.Formats.Asn1/9.0.2": {
- "runtime": {
- "lib/net9.0/System.Formats.Asn1.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.IdentityModel.Tokens.Jwt/6.35.0": {
- "dependencies": {
- "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
- "Microsoft.IdentityModel.Tokens": "6.35.0"
- },
- "runtime": {
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
- "assemblyVersion": "6.35.0.0",
- "fileVersion": "6.35.0.41201"
- }
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.Pipelines/7.0.0": {},
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Memory/4.5.4": {},
- "System.Memory.Data/1.0.2": {
- "dependencies": {
- "System.Text.Encodings.Web": "6.0.0",
- "System.Text.Json": "9.0.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/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Metadata/8.0.0": {
- "dependencies": {
- "System.Collections.Immutable": "8.0.0"
- }
- },
- "System.Reflection.MetadataLoadContext/8.0.0": {
- "dependencies": {
- "System.Collections.Immutable": "8.0.0",
- "System.Reflection.Metadata": "8.0.0"
- },
- "runtime": {
- "lib/net8.0/System.Reflection.MetadataLoadContext.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.Caching/6.0.0": {
- "dependencies": {
- "System.Configuration.ConfigurationManager": "8.0.0"
- },
- "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.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Security.Cryptography.Cng/5.0.0": {
- "dependencies": {
- "System.Formats.Asn1": "9.0.2"
- }
- },
- "System.Security.Cryptography.Pkcs/6.0.4": {
- "dependencies": {
- "System.Formats.Asn1": "9.0.2"
- }
- },
- "System.Security.Cryptography.ProtectedData/8.0.0": {
- "runtime": {
- "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
- "assemblyVersion": "8.0.0.0",
- "fileVersion": "8.0.23.53103"
- }
- }
- },
- "System.Security.Principal.Windows/5.0.0": {},
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Text.Encodings.Web/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Text.Json/9.0.2": {
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "assemblyVersion": "9.0.0.0",
- "fileVersion": "9.0.225.6610"
- }
- }
- },
- "System.Threading.Channels/7.0.0": {},
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Dataflow/8.0.0": {},
- "System.Threading.Tasks.Extensions/4.5.4": {}
- }
- },
- "libraries": {
- "CrowdedBackend/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"
- },
- "Humanizer/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==",
- "path": "humanizer/2.14.1",
- "hashPath": "humanizer.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "path": "humanizer.core/2.14.1",
- "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.af/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==",
- "path": "humanizer.core.af/2.14.1",
- "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ar/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==",
- "path": "humanizer.core.ar/2.14.1",
- "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.az/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==",
- "path": "humanizer.core.az/2.14.1",
- "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.bg/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==",
- "path": "humanizer.core.bg/2.14.1",
- "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.bn-BD/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==",
- "path": "humanizer.core.bn-bd/2.14.1",
- "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.cs/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==",
- "path": "humanizer.core.cs/2.14.1",
- "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.da/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==",
- "path": "humanizer.core.da/2.14.1",
- "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.de/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==",
- "path": "humanizer.core.de/2.14.1",
- "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.el/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==",
- "path": "humanizer.core.el/2.14.1",
- "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.es/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==",
- "path": "humanizer.core.es/2.14.1",
- "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.fa/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==",
- "path": "humanizer.core.fa/2.14.1",
- "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.fi-FI/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==",
- "path": "humanizer.core.fi-fi/2.14.1",
- "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.fr/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==",
- "path": "humanizer.core.fr/2.14.1",
- "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.fr-BE/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==",
- "path": "humanizer.core.fr-be/2.14.1",
- "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.he/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==",
- "path": "humanizer.core.he/2.14.1",
- "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.hr/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==",
- "path": "humanizer.core.hr/2.14.1",
- "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.hu/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==",
- "path": "humanizer.core.hu/2.14.1",
- "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.hy/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==",
- "path": "humanizer.core.hy/2.14.1",
- "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.id/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==",
- "path": "humanizer.core.id/2.14.1",
- "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.is/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==",
- "path": "humanizer.core.is/2.14.1",
- "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.it/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==",
- "path": "humanizer.core.it/2.14.1",
- "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ja/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==",
- "path": "humanizer.core.ja/2.14.1",
- "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ko-KR/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==",
- "path": "humanizer.core.ko-kr/2.14.1",
- "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ku/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==",
- "path": "humanizer.core.ku/2.14.1",
- "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.lv/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==",
- "path": "humanizer.core.lv/2.14.1",
- "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ms-MY/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==",
- "path": "humanizer.core.ms-my/2.14.1",
- "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.mt/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==",
- "path": "humanizer.core.mt/2.14.1",
- "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.nb/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==",
- "path": "humanizer.core.nb/2.14.1",
- "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.nb-NO/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==",
- "path": "humanizer.core.nb-no/2.14.1",
- "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.nl/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==",
- "path": "humanizer.core.nl/2.14.1",
- "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.pl/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==",
- "path": "humanizer.core.pl/2.14.1",
- "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.pt/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==",
- "path": "humanizer.core.pt/2.14.1",
- "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ro/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==",
- "path": "humanizer.core.ro/2.14.1",
- "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.ru/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==",
- "path": "humanizer.core.ru/2.14.1",
- "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.sk/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==",
- "path": "humanizer.core.sk/2.14.1",
- "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.sl/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==",
- "path": "humanizer.core.sl/2.14.1",
- "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.sr/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==",
- "path": "humanizer.core.sr/2.14.1",
- "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.sr-Latn/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==",
- "path": "humanizer.core.sr-latn/2.14.1",
- "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.sv/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==",
- "path": "humanizer.core.sv/2.14.1",
- "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.th-TH/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==",
- "path": "humanizer.core.th-th/2.14.1",
- "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.tr/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==",
- "path": "humanizer.core.tr/2.14.1",
- "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.uk/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==",
- "path": "humanizer.core.uk/2.14.1",
- "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==",
- "path": "humanizer.core.uz-cyrl-uz/2.14.1",
- "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.uz-Latn-UZ/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==",
- "path": "humanizer.core.uz-latn-uz/2.14.1",
- "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.vi/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==",
- "path": "humanizer.core.vi/2.14.1",
- "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.zh-CN/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==",
- "path": "humanizer.core.zh-cn/2.14.1",
- "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.zh-Hans/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==",
- "path": "humanizer.core.zh-hans/2.14.1",
- "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512"
- },
- "Humanizer.Core.zh-Hant/2.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==",
- "path": "humanizer.core.zh-hant/2.14.1",
- "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512"
- },
- "MathNet.Numerics/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pg1W2VwaEQMAiTpGK840hZgzavnqjlCMTVSbtVCXVyT+7AX4mc1o89SPv4TBlAjhgCOo9c1Y+jZ5m3ti2YgGgA==",
- "path": "mathnet.numerics/5.0.0",
- "hashPath": "mathnet.numerics.5.0.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.OpenApi/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JUndpjRNdG8GvzBLH/J4hen4ehWaPcshtiQ6+sUs1Bcj3a7dOsmWpDloDlpPeMOVSlhHwUJ3Xld0ClZjsFLgFQ==",
- "path": "microsoft.aspnetcore.openapi/9.0.2",
- "hashPath": "microsoft.aspnetcore.openapi.9.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Razor.Language/6.0.24": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kBL6ljTREp/3fk8EKN27mrPy3WTqWUjiqCkKFlCKHUKRO3/9rAasKizX3vPWy4ZTcNsIPmVWUHwjDFmiW4MyNA==",
- "path": "microsoft.aspnetcore.razor.language/6.0.24",
- "hashPath": "microsoft.aspnetcore.razor.language.6.0.24.nupkg.sha512"
- },
- "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==",
- "path": "microsoft.bcl.asyncinterfaces/7.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512"
- },
- "Microsoft.Build/17.10.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZmGA8vhVXFzC4oo48ybQKlEybVKd0Ntfdr+Enqrn5ES1R6e/krIK9hLk0W33xuT0/G6QYd3YdhJZh+Xle717Ag==",
- "path": "microsoft.build/17.10.4",
- "hashPath": "microsoft.build.17.10.4.nupkg.sha512"
- },
- "Microsoft.Build.Framework/17.10.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4qXCwNOXBR1dyCzuks9SwTwFJQO/xmf2wcMislotDWJu7MN/r3xDNoU8Ae5QmKIHPaLG1xmfDkYS7qBVzxmeKw==",
- "path": "microsoft.build.framework/17.10.4",
- "hashPath": "microsoft.build.framework.17.10.4.nupkg.sha512"
- },
- "Microsoft.Build.Locator/1.7.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==",
- "path": "microsoft.build.locator/1.7.8",
- "hashPath": "microsoft.build.locator.1.7.8.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
- "path": "microsoft.codeanalysis.analyzers/3.3.4",
- "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==",
- "path": "microsoft.codeanalysis.analyzerutilities/3.3.0",
- "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==",
- "path": "microsoft.codeanalysis.common/4.8.0",
- "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==",
- "path": "microsoft.codeanalysis.csharp/4.8.0",
- "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Gpas3l8PE1xz1VDIJNMkYuoFPXtuALxybP04caXh9avC2a0elsoBdukndkJXVZgdKPwraf0a98s7tjqnEk5QIQ==",
- "path": "microsoft.codeanalysis.csharp.features/4.8.0",
- "hashPath": "microsoft.codeanalysis.csharp.features.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0",
- "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Elfie/1.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==",
- "path": "microsoft.codeanalysis.elfie/1.0.0",
- "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Features/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sCVzMtSETGE16KeScwwlVfxaKRbUMSf/cgRPRPMJuou37SLT7XkIBzJu4e7mlFTzpJbfalV5tOcKpUtLO3eJAg==",
- "path": "microsoft.codeanalysis.features/4.8.0",
- "hashPath": "microsoft.codeanalysis.features.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Razor/6.0.24": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xIAjR6l/1PO2ILT6/lOGYfe8OzMqfqxh1lxFuM4Exluwc2sQhJw0kS7pEyJ0DE/UMYu6Jcdc53DmjOxQUDT2Pg==",
- "path": "microsoft.codeanalysis.razor/6.0.24",
- "hashPath": "microsoft.codeanalysis.razor.6.0.24.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ysiNNbAASVhV9wEd5oY2x99EwaVYtB13XZRjHsgWT/R1mQkxZF8jWsf7JWaZxD1+jNoz1QCQ6nbe+vr+6QvlFA==",
- "path": "microsoft.codeanalysis.scripting.common/4.8.0",
- "hashPath": "microsoft.codeanalysis.scripting.common.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==",
- "path": "microsoft.codeanalysis.workspaces.common/4.8.0",
- "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==",
- "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0",
- "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512"
- },
- "Microsoft.CSharp/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
- "path": "microsoft.csharp/4.7.0",
- "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
- },
- "Microsoft.Data.SqlClient/5.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.Data.Sqlite.Core/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lJbaLhjWnnPfLhZrQXPri5F0pmlJXg68yCSf5aRM3qFF8WD7dT1jnQUuBd3YvT5s1VDOH9t/6filPcTIOwZR7Q==",
- "path": "microsoft.data.sqlite.core/9.0.2",
- "hashPath": "microsoft.data.sqlite.core.9.0.2.nupkg.sha512"
- },
- "Microsoft.DiaSymReader/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QcZrCETsBJqy/vQpFtJc+jSXQ0K5sucQ6NUFbTNVHD4vfZZOwjZ/3sBzczkC4DityhD3AVO/+K/+9ioLs1AgRA==",
- "path": "microsoft.diasymreader/2.0.0",
- "hashPath": "microsoft.diasymreader.2.0.0.nupkg.sha512"
- },
- "Microsoft.DotNet.Scaffolding.Shared/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9pfRsTzUANgI6J7nFjYip50ifcvmORjMmFByXmdYa//x8toziydhbg0cMylP1S2mRf4/96VKSAfpayYrO3m4Ww==",
- "path": "microsoft.dotnet.scaffolding.shared/9.0.0",
- "hashPath": "microsoft.dotnet.scaffolding.shared.9.0.0.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P90ZuybgcpW32y985eOYxSoZ9IiL0UTYQlY0y1Pt1iHAnpZj/dQHREpSpry1RNvk8YjAeoAkWFdem5conqB9zQ==",
- "path": "microsoft.entityframeworkcore/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oVSjNSIYHsk0N66eqAWgDcyo9etEFbUswbz7SmlYR6nGp05byHrJAYM5N8U2aGWJWJI6WvIC2e4TXJgH6GZ6HQ==",
- "path": "microsoft.entityframeworkcore.abstractions/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w4jzX7XI+L3erVGzbHXpx64A3QaLXxqG3f1vPpGYYZGpxOIHkh7e4iLLD7cq4Ng1vjkwzWl5ZJp0Kj/nHsgFYg==",
- "path": "microsoft.entityframeworkcore.analyzers/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WWRmTxb/yd05cTW+k32lLvIhffxilgYvwKHDxiqe7GRLKeceyMspuf5BRpW65sFF7S2G+Be9JgjUe1ypGqt9tg==",
- "path": "microsoft.entityframeworkcore.design/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.design.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-r7O4N5uaM95InVSGUj7SMOQWN0f1PBF2Y30ow7Jg+pGX5GJCRVd/1fq83lQ50YMyq+EzyHac5o4CDQA2RsjKJQ==",
- "path": "microsoft.entityframeworkcore.relational/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.relational.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Sqlite/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6lz56eqIbhAfCiJ0s2XPKE2vPrC5h9nksXm90dKoSmoNs0alpCMqLRd4uz5D/83DVEcusyJ6Xb/2/81qZa71MA==",
- "path": "microsoft.entityframeworkcore.sqlite/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlite.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YKu/XEvhMTtCT1Fd9aQbyt4Pk+WxgAzpBkZZ5jHu2Owu4bswzj3wfk9dw6gxdAp0JHkdLDjFvmODrP2kDSES9w==",
- "path": "microsoft.entityframeworkcore.sqlite.core/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlite.core.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.SqlServer/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PN65soRvSajLqr1kVRvpUwqI/rmab4x/6TxcYzyUVvg52DMPxx4Y760EZ6OzFhJnilP/WFEEzdftHsTsHQ64IQ==",
- "path": "microsoft.entityframeworkcore.sqlserver/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlserver.9.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5D4LQ9zYexFOcq0WzXOCCnP74+s9mBGNjh5mtkWFzM/DbY+rpDqrXjPq7peob/ZHAAqK+9Pfv2VK+tNf8C6QaQ==",
- "path": "microsoft.entityframeworkcore.tools/9.0.2",
- "hashPath": "microsoft.entityframeworkcore.tools.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-a7QhA25n+BzSM5r5d7JznfyluMBGI7z3qyLlFviZ1Eiqv6DdiK27sLZdP/rpYirBM6UYAKxu5TbmfhIy13GN9A==",
- "path": "microsoft.extensions.caching.abstractions/9.0.2",
- "hashPath": "microsoft.extensions.caching.abstractions.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AlEfp0DMz8E1h1Exi8LBrUCNmCYcGDfSM4F/uK1D1cYx/R3w0LVvlmjICqxqXTsy7BEZaCf5leRZY2FuPEiFaw==",
- "path": "microsoft.extensions.caching.memory/9.0.2",
- "hashPath": "microsoft.extensions.caching.memory.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I0O/270E/lUNqbBxlRVjxKOMZyYjP88dpEgQTveml+h2lTzAP4vbawLVwjS9SC7lKaU893bwyyNz0IVJYsm9EA==",
- "path": "microsoft.extensions.configuration.abstractions/9.0.2",
- "hashPath": "microsoft.extensions.configuration.abstractions.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZffbJrskOZ40JTzcTyKwFHS5eACSWp2bUQBBApIgGV+es8RaTD4OxUG7XxFr3RIPLXtYQ1jQzF2DjKB5fZn7Qg==",
- "path": "microsoft.extensions.dependencyinjection/9.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MNe7GSTBf3jQx5vYrXF0NZvn6l7hUKF6J54ENfAgCO8y6xjN1XUmKKWG464LP2ye6QqDiA1dkaWEZBYnhoZzjg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.2",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3ImbcbS68jy9sKr9Z9ToRbEEX0bvIRdb8zyf5ebtL9Av2CUCGHvaO5wsSXfRfAjr60Vrq0tlmNji9IzAxW6EOw==",
- "path": "microsoft.extensions.dependencymodel/9.0.2",
- "hashPath": "microsoft.extensions.dependencymodel.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-loV/0UNpt2bD+6kCDzFALVE63CDtqzPeC0LAetkdhiEr/tTNbvOlQ7CBResH7BQBd3cikrwiBfaHdyHMFUlc2g==",
- "path": "microsoft.extensions.logging/9.0.2",
- "hashPath": "microsoft.extensions.logging.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dV9s2Lamc8jSaqhl2BQSPn/AryDIH2sSbQUyLitLXV0ROmsb+SROnn2cH939JFbsNrnf3mIM3GNRKT7P0ldwLg==",
- "path": "microsoft.extensions.logging.abstractions/9.0.2",
- "hashPath": "microsoft.extensions.logging.abstractions.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zr98z+AN8+isdmDmQRuEJ/DAKZGUTHmdv3t0ZzjHvNqvA44nAgkXE9kYtfoN6581iALChhVaSw2Owt+Z2lVbkQ==",
- "path": "microsoft.extensions.options/9.0.2",
- "hashPath": "microsoft.extensions.options.9.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-puBMtKe/wLuYa7H6docBkLlfec+h8L35DXqsDKKJgW0WY5oCwJ3cBJKcDaZchv6knAyqOMfsl6VUbaR++E5LXA==",
- "path": "microsoft.extensions.primitives/9.0.2",
- "hashPath": "microsoft.extensions.primitives.9.0.2.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/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
- "path": "microsoft.identitymodel.abstractions/6.35.0",
- "hashPath": "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==",
- "path": "microsoft.identitymodel.jsonwebtokens/6.35.0",
- "hashPath": "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Logging/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==",
- "path": "microsoft.identitymodel.logging/6.35.0",
- "hashPath": "microsoft.identitymodel.logging.6.35.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Protocols/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==",
- "path": "microsoft.identitymodel.protocols/6.35.0",
- "hashPath": "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==",
- "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0",
- "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Tokens/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==",
- "path": "microsoft.identitymodel.tokens/6.35.0",
- "hashPath": "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512"
- },
- "Microsoft.NET.StringTools/17.10.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-wyABaqY+IHCMMSTQmcc3Ca6vbmg5BaEPgicnEgpll+4xyWZWlkQqUwafweUd9VAhBb4jqplMl6voUHQ6yfdUcg==",
- "path": "microsoft.net.stringtools/17.10.4",
- "hashPath": "microsoft.net.stringtools.17.10.4.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "path": "microsoft.netcore.platforms/1.1.0",
- "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.OpenApi/1.6.17": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==",
- "path": "microsoft.openapi/1.6.17",
- "hashPath": "microsoft.openapi.1.6.17.nupkg.sha512"
- },
- "Microsoft.SqlServer.Server/1.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
- "path": "microsoft.sqlserver.server/1.0.0",
- "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W9ho78o/92MUDz04r7Al4dMx7djaqtSJE1cR7fMjy+Mm0StL5pVKXF24qnAFWJlip7KEpAa1QP35davXvuis9w==",
- "path": "microsoft.visualstudio.web.codegeneration/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Core/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1VIEZs8DNnefMa0eVDZucz/dk28Sg0QRiNiRJj7SdU8E6UiNJxnkzA748aqA6Qqi8OMTHTBKhzx0Hj9ykIi6/Q==",
- "path": "microsoft.visualstudio.web.codegeneration.core/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.core.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nO5MUL3iC0WjtAVea5d4v6kVcoL9ae/PnkC6NeEJhWazHKdKj7xfv6D2QvBx8uCIj8FUu9QpvvdN6m/xMp//EQ==",
- "path": "microsoft.visualstudio.web.codegeneration.design/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.design.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-F4+A6CaXmof/QoeWpqaMMeoVinfUSIMKa5xLOrwsZxGfYl6Qryhb06bkJ8yJaF05WefMM/wnj73oI3Ms2bBh7g==",
- "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-euoX0M4JnbzSUcFXfDq+GSSdXNRbKGUBTK+8gcnzHmhY3sHgHn9bgeeZDp+LGuoUQaP+WrWA8Nq92gCTcZLWSA==",
- "path": "microsoft.visualstudio.web.codegeneration.templating/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.templating.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-O8uehWLzgQhq3H2f+dxEkuYF8wWoBrT7iKtQXnHAc96qlVdLSARSxt3hlxqFSzK3ZkHp2P6lHt76LRH6J0PDrw==",
- "path": "microsoft.visualstudio.web.codegeneration.utils/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegeneration.utils.9.0.0.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/9.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WJhdsFXkpA0XR6PCjoxe9pRIqT8NV8Ggojv2cwaeCwxApzTAbLnglwADteeF7WlgHnr1VmJ+xdgzzNAAcJ9+Rg==",
- "path": "microsoft.visualstudio.web.codegenerators.mvc/9.0.0",
- "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.9.0.0.nupkg.sha512"
- },
- "Mono.TextTemplating/3.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==",
- "path": "mono.texttemplating/3.0.0",
- "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "Npgsql/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hCbO8box7i/XXiTFqCJ3GoowyLqx3JXxyrbOJ6om7dr+eAknvBNhhUHeJVGAQo44sySZTfdVffp4BrtPeLZOAA==",
- "path": "npgsql/9.0.2",
- "hashPath": "npgsql.9.0.2.nupkg.sha512"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1A6HpMPbzK+quxdtug1aDHI4BSRTgpi7OaDt8WQh7SFJd2sSQ0nNTZ7sYrwyxVf4AdKdN7XJL9tpiiJjRUaa4g==",
- "path": "npgsql.entityframeworkcore.postgresql/9.0.3",
- "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.3.nupkg.sha512"
- },
- "NuGet.Common/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-T3bCiKUSx8wdYpcqr6Dbx93zAqFp689ee/oa1tH22XI/xl7EUzQ7No/WlE1FUqvEX1+Mqar3wRNAn2O/yxo94g==",
- "path": "nuget.common/6.11.0",
- "hashPath": "nuget.common.6.11.0.nupkg.sha512"
- },
- "NuGet.Configuration/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-73QprQqmumFrv3Ooi4YWpRYeBj8jZy9gNdOaOCp4pPInpt41SJJAz/aP4je+StwIJvi5HsgPPecLKekDIQEwKg==",
- "path": "nuget.configuration/6.11.0",
- "hashPath": "nuget.configuration.6.11.0.nupkg.sha512"
- },
- "NuGet.DependencyResolver.Core/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SoiPKPooA+IF+iCsX1ykwi3M0e+yBL34QnwIP3ujhQEn1dhlP/N1XsYAnKkJPxV15EZCahuuS4HtnBsZx+CHKA==",
- "path": "nuget.dependencyresolver.core/6.11.0",
- "hashPath": "nuget.dependencyresolver.core.6.11.0.nupkg.sha512"
- },
- "NuGet.Frameworks/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ew/mrfmLF5phsprysHbph2+tdZ10HMHAURavsr/Kx1WhybDG4vmGuoNLbbZMZOqnPRdpyCTc42OKWLoedxpYtA==",
- "path": "nuget.frameworks/6.11.0",
- "hashPath": "nuget.frameworks.6.11.0.nupkg.sha512"
- },
- "NuGet.LibraryModel/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KUV2eeMICMb24OPcICn/wgncNzt6+W+lmFVO5eorTdo1qV4WXxYGyG1NTPiCY+Nrv5H/Ilnv9UaUM2ozqSmnjw==",
- "path": "nuget.librarymodel/6.11.0",
- "hashPath": "nuget.librarymodel.6.11.0.nupkg.sha512"
- },
- "NuGet.Packaging/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VmUv2LedVuPY1tfNybORO2I9IuqOzeV7I5JBD+PwNvJq2bAqovi4FCw2cYI0g+kjOJXBN2lAJfrfnqtUOlVJdQ==",
- "path": "nuget.packaging/6.11.0",
- "hashPath": "nuget.packaging.6.11.0.nupkg.sha512"
- },
- "NuGet.ProjectModel/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-g0KtmDH6fas97WsN73yV2h1F5JT9o6+Y0wlPK+ij9YLKaAXaF6+1HkSaQMMJ+xh9/jCJG9G6nau6InOlb1g48g==",
- "path": "nuget.projectmodel/6.11.0",
- "hashPath": "nuget.projectmodel.6.11.0.nupkg.sha512"
- },
- "NuGet.Protocol/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p5B8oNLLnGhUfMbcS16aRiegj11pD6k+LELyRBqvNFR/pE3yR1XT+g1XS33ME9wvoU+xbCGnl4Grztt1jHPinw==",
- "path": "nuget.protocol/6.11.0",
- "hashPath": "nuget.protocol.6.11.0.nupkg.sha512"
- },
- "NuGet.Versioning/6.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v/GGlIj2dd7svplFmASWEueu62veKW0MrMtBaZ7QG8aJTSGv2yE+pgUGhXRcQ4nxNOEq/wLBrz1vkth/1SND7A==",
- "path": "nuget.versioning/6.11.0",
- "hashPath": "nuget.versioning.6.11.0.nupkg.sha512"
- },
- "pythonnet/3.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-20UVeB1uDpvCHZi8yNv7VCSUKVRRaxPZWFYhkO+BjfBB9GgOh2vEeucy3U7zTY8xEVCHf2XHpRNfAU/3quxXZw==",
- "path": "pythonnet/3.0.5",
- "hashPath": "pythonnet.3.0.5.nupkg.sha512"
- },
- "SkiaSharp/3.116.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DNDwbRjP+aMo27dV2h/uHCVTcWubWWxHnPLiePNyl24f4Pv43mQ8AQQeseOrKR+J3AOCEs6t0sUjo0aa3j3RWQ==",
- "path": "skiasharp/3.116.1",
- "hashPath": "skiasharp.3.116.1.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.macOS/3.116.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KPvpKysDmEMt0NnAZPX5U6KFk0LmG/72/IjAIJemIksIZ0Tjs9pGpr3L+zboVCv1MLVoJLKl3nJDXUG6Jda6A==",
- "path": "skiasharp.nativeassets.macos/3.116.1",
- "hashPath": "skiasharp.nativeassets.macos.3.116.1.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.Win32/3.116.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dRQ75MCI8oz6zAs2Y1w6pq6ARs4MhdNG+gf3doOxOxdnueDXffQLGQIxON54GDoxc0WjKOoHMKBR4DhaduwwQw==",
- "path": "skiasharp.nativeassets.win32/3.116.1",
- "hashPath": "skiasharp.nativeassets.win32.3.116.1.nupkg.sha512"
- },
- "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==",
- "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10",
- "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512"
- },
- "SQLitePCLRaw.core/2.1.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==",
- "path": "sqlitepclraw.core/2.1.10",
- "hashPath": "sqlitepclraw.core.2.1.10.nupkg.sha512"
- },
- "SQLitePCLRaw.lib.e_sqlite3/2.1.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==",
- "path": "sqlitepclraw.lib.e_sqlite3/2.1.10",
- "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512"
- },
- "SQLitePCLRaw.provider.e_sqlite3/2.1.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==",
- "path": "sqlitepclraw.provider.e_sqlite3/2.1.10",
- "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.10.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/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
- "path": "system.codedom/6.0.0",
- "hashPath": "system.codedom.6.0.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Immutable/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==",
- "path": "system.collections.immutable/8.0.0",
- "hashPath": "system.collections.immutable.8.0.0.nupkg.sha512"
- },
- "System.Composition/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==",
- "path": "system.composition/7.0.0",
- "hashPath": "system.composition.7.0.0.nupkg.sha512"
- },
- "System.Composition.AttributedModel/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==",
- "path": "system.composition.attributedmodel/7.0.0",
- "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512"
- },
- "System.Composition.Convention/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==",
- "path": "system.composition.convention/7.0.0",
- "hashPath": "system.composition.convention.7.0.0.nupkg.sha512"
- },
- "System.Composition.Hosting/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==",
- "path": "system.composition.hosting/7.0.0",
- "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512"
- },
- "System.Composition.Runtime/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==",
- "path": "system.composition.runtime/7.0.0",
- "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512"
- },
- "System.Composition.TypedParts/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==",
- "path": "system.composition.typedparts/7.0.0",
- "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512"
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==",
- "path": "system.configuration.configurationmanager/8.0.0",
- "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512"
- },
- "System.Data.DataSetExtensions/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==",
- "path": "system.data.datasetextensions/4.5.0",
- "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/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.Diagnostics.EventLog/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
- "path": "system.diagnostics.eventlog/8.0.0",
- "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512"
- },
- "System.Formats.Asn1/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKWHCPYQr/+cIoO8EVjFn7yFyiT8Mnf1wif/5bYGsqxQV6PrwlX2HQ9brZNx57ViOvRe4ing1xgHCKl/5Ko8xg==",
- "path": "system.formats.asn1/9.0.2",
- "hashPath": "system.formats.asn1.9.0.2.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.IdentityModel.Tokens.Jwt/6.35.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==",
- "path": "system.identitymodel.tokens.jwt/6.35.0",
- "hashPath": "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.Pipelines/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==",
- "path": "system.io.pipelines/7.0.0",
- "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.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/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==",
- "path": "system.reflection.metadata/8.0.0",
- "hashPath": "system.reflection.metadata.8.0.0.nupkg.sha512"
- },
- "System.Reflection.MetadataLoadContext/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SZxrQ4sQYnIcdwiO3G/lHZopbPYQ2lW0ioT4JezgccWUrKaKbHLJbAGZaDfkYjWcta1pWssAo3MOXLsR0ie4tQ==",
- "path": "system.reflection.metadataloadcontext/8.0.0",
- "hashPath": "system.reflection.metadataloadcontext.8.0.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Caching/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.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.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.Pkcs/6.0.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LGbXi1oUJ9QgCNGXRO9ndzBL/GZgANcsURpMhNR8uO+rca47SZmciS3RSQUvlQRwK3QHZSHNOXzoMUASKA+Anw==",
- "path": "system.security.cryptography.pkcs/6.0.4",
- "hashPath": "system.security.cryptography.pkcs.6.0.4.nupkg.sha512"
- },
- "System.Security.Cryptography.ProtectedData/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==",
- "path": "system.security.cryptography.protecteddata/8.0.0",
- "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512"
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
- "path": "system.security.principal.windows/5.0.0",
- "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "path": "system.text.encoding.codepages/6.0.0",
- "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
- },
- "System.Text.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/9.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4TY2Yokh5Xp8XHFhsY9y84yokS7B0rhkaZCXuRiKppIiKwPVH4lVSFD9EEFzRpXdBM5ZeZXD43tc2vB6njEwwQ==",
- "path": "system.text.json/9.0.2",
- "hashPath": "system.text.json.9.0.2.nupkg.sha512"
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "path": "system.threading.channels/7.0.0",
- "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Dataflow/8.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7V0I8tPa9V7UxMx/+7DIwkhls5ouaEMQx6l/GwGm1Y8kJQ61On9B/PxCXFLbgu5/C47g0BP2CUYs+nMv1+Oaqw==",
- "path": "system.threading.tasks.dataflow/8.0.0",
- "hashPath": "system.threading.tasks.dataflow.8.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"
- }
- }
-}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.dll
deleted file mode 100644
index b7c7e65..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.pdb b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.pdb
deleted file mode 100644
index 833e211..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.pdb and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.runtimeconfig.json b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.runtimeconfig.json
deleted file mode 100644
index 1f6a32f..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.runtimeconfig.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net9.0",
- "frameworks": [
- {
- "name": "Microsoft.NETCore.App",
- "version": "9.0.0"
- },
- {
- "name": "Microsoft.AspNetCore.App",
- "version": "9.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/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.staticwebassets.endpoints.json b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.staticwebassets.endpoints.json
deleted file mode 100644
index 2b6c535..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.staticwebassets.endpoints.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "Version": 1,
- "ManifestType": "Build",
- "Endpoints": []
-}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Humanizer.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Humanizer.dll
deleted file mode 100755
index c9a7ef8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Humanizer.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/MathNet.Numerics.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/MathNet.Numerics.dll
deleted file mode 100755
index 3027abb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/MathNet.Numerics.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll
deleted file mode 100755
index 31300df..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll
deleted file mode 100755
index e111d7b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll
deleted file mode 100755
index f5f1cee..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Build.Framework.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Build.Framework.dll
deleted file mode 100755
index 0f70910..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Build.Framework.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Build.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Build.dll
deleted file mode 100755
index fc91e60..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Build.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll
deleted file mode 100755
index e070bd5..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Features.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Features.dll
deleted file mode 100755
index 5d641f8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Features.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
deleted file mode 100755
index 2e99f76..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll
deleted file mode 100755
index 8d56de1..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Elfie.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Elfie.dll
deleted file mode 100755
index b131340..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Elfie.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Features.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Features.dll
deleted file mode 100755
index 9b007e4..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Features.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll
deleted file mode 100755
index 25ee99a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Scripting.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Scripting.dll
deleted file mode 100755
index 2dc47f1..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Scripting.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll
deleted file mode 100755
index 7253875..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll
deleted file mode 100755
index 7d537db..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Data.SqlClient.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Data.SqlClient.dll
deleted file mode 100755
index 85903b0..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Data.SqlClient.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll
deleted file mode 100755
index 44d6e30..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.DiaSymReader.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.DiaSymReader.dll
deleted file mode 100755
index b234cfd..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.DiaSymReader.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.DotNet.Scaffolding.Shared.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.DotNet.Scaffolding.Shared.dll
deleted file mode 100755
index 1832b31..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.DotNet.Scaffolding.Shared.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll
deleted file mode 100755
index e6c87b0..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll
deleted file mode 100755
index 8d595b7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll
deleted file mode 100755
index 909b19c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Sqlite.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Sqlite.dll
deleted file mode 100755
index 49ee58b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Sqlite.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll
deleted file mode 100755
index b97a93f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll
deleted file mode 100755
index f7c43c6..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll
deleted file mode 100755
index fb3fd7d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll
deleted file mode 100755
index 2bb7742..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
deleted file mode 100755
index 24e0455..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll
deleted file mode 100755
index c81500d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll
deleted file mode 100755
index 10a0c13..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
deleted file mode 100755
index 09411c9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll
deleted file mode 100755
index 89e6510..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Options.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Options.dll
deleted file mode 100755
index 1a02411..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Options.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll
deleted file mode 100755
index f6ce6db..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Identity.Client.Extensions.Msal.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Identity.Client.Extensions.Msal.dll
deleted file mode 100755
index 9a7cadb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Identity.Client.Extensions.Msal.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Identity.Client.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Identity.Client.dll
deleted file mode 100755
index 73873e5..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Identity.Client.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll
deleted file mode 100755
index dfcb632..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll
deleted file mode 100755
index 30b9c05..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll
deleted file mode 100755
index ce60b3c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
deleted file mode 100755
index 57a9536..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll
deleted file mode 100755
index 9fd9ebf..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll
deleted file mode 100755
index da12e5f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.NET.StringTools.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.NET.StringTools.dll
deleted file mode 100755
index e85a2d1..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.NET.StringTools.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.OpenApi.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.OpenApi.dll
deleted file mode 100755
index d9f09da..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.OpenApi.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.SqlServer.Server.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.SqlServer.Server.dll
deleted file mode 100755
index ddeaa86..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.SqlServer.Server.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CommunicationUtilities.dll
deleted file mode 100755
index a44f259..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll
deleted file mode 100755
index 8a2a691..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll
deleted file mode 100755
index b20ac79..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll
deleted file mode 100755
index ea1ce95..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.Utilities.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.Utilities.dll
deleted file mode 100755
index be33890..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.Utilities.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll
deleted file mode 100755
index da18989..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll
deleted file mode 100755
index d7583f8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
deleted file mode 100755
index 08b5def..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
deleted file mode 100755
index 05133ee..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
deleted file mode 100755
index 2a07bc5..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
deleted file mode 100755
index a5ba475..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
deleted file mode 100755
index 01af4a9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.dll
deleted file mode 100755
index 2e05844..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
deleted file mode 100755
index 3f5c501..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Mono.TextTemplating.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Mono.TextTemplating.dll
deleted file mode 100755
index 4a76511..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Mono.TextTemplating.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll
deleted file mode 100755
index d035c38..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
deleted file mode 100755
index 4b1283a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Npgsql.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Npgsql.dll
deleted file mode 100755
index 6c143c0..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Npgsql.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Common.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Common.dll
deleted file mode 100755
index 5e7eb41..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Common.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Configuration.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Configuration.dll
deleted file mode 100755
index 459de99..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Configuration.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.DependencyResolver.Core.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.DependencyResolver.Core.dll
deleted file mode 100755
index 023e6e9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.DependencyResolver.Core.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Frameworks.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Frameworks.dll
deleted file mode 100755
index 504ff2c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Frameworks.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.LibraryModel.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.LibraryModel.dll
deleted file mode 100755
index 24f8782..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.LibraryModel.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Packaging.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Packaging.dll
deleted file mode 100755
index 6ff87f6..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Packaging.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.ProjectModel.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.ProjectModel.dll
deleted file mode 100755
index 1a69df2..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.ProjectModel.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Protocol.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Protocol.dll
deleted file mode 100755
index bcf1a12..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Protocol.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Versioning.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Versioning.dll
deleted file mode 100755
index 8cccc5c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Versioning.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Python.Runtime.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Python.Runtime.dll
deleted file mode 100755
index 35e6367..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Python.Runtime.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll
deleted file mode 100755
index 53e53eb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.core.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.core.dll
deleted file mode 100755
index b563677..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.core.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll
deleted file mode 100755
index a06a782..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SkiaSharp.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SkiaSharp.dll
deleted file mode 100755
index 39d9adc..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SkiaSharp.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.ClientModel.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.ClientModel.dll
deleted file mode 100755
index 00a3380..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.ClientModel.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.CodeDom.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.CodeDom.dll
deleted file mode 100755
index 54c82b6..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.CodeDom.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.AttributedModel.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.AttributedModel.dll
deleted file mode 100755
index 1431751..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.AttributedModel.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Convention.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Convention.dll
deleted file mode 100755
index e9dacb1..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Convention.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Hosting.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Hosting.dll
deleted file mode 100755
index 8381202..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Hosting.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Runtime.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Runtime.dll
deleted file mode 100755
index d583c3a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Runtime.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.TypedParts.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.TypedParts.dll
deleted file mode 100755
index 2b278d7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.TypedParts.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Configuration.ConfigurationManager.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Configuration.ConfigurationManager.dll
deleted file mode 100755
index accdffe..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Configuration.ConfigurationManager.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Formats.Asn1.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Formats.Asn1.dll
deleted file mode 100755
index 55708ea..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Formats.Asn1.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll
deleted file mode 100755
index 2311025..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Memory.Data.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Memory.Data.dll
deleted file mode 100755
index 6f2a3e0..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Memory.Data.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Reflection.MetadataLoadContext.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Reflection.MetadataLoadContext.dll
deleted file mode 100755
index a54bbed..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Reflection.MetadataLoadContext.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Runtime.Caching.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Runtime.Caching.dll
deleted file mode 100755
index 14826eb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Runtime.Caching.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Security.Cryptography.ProtectedData.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Security.Cryptography.ProtectedData.dll
deleted file mode 100755
index 40f1b5a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Text.Json.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Text.Json.dll
deleted file mode 100755
index f33f996..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Text.Json.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/af/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/af/Humanizer.resources.dll
deleted file mode 100755
index e191f5f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/af/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/appsettings.Development.json b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/appsettings.Development.json
deleted file mode 100644
index 0c208ae..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/appsettings.Development.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft.AspNetCore": "Warning"
- }
- }
-}
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ar/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ar/Humanizer.resources.dll
deleted file mode 100755
index 319af06..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ar/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/az/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/az/Humanizer.resources.dll
deleted file mode 100755
index f51f16e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/az/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/bg/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/bg/Humanizer.resources.dll
deleted file mode 100755
index c6b47e9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/bg/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/bn-BD/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/bn-BD/Humanizer.resources.dll
deleted file mode 100755
index dead005..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/bn-BD/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Humanizer.resources.dll
deleted file mode 100755
index 43094ae..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index b85668a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index 4e90e20..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 8dcc1bd..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index 222dc80..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index c815e8e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index 62b0422..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 180a8d9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index c02b77d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index 7dc0ff1..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index 1bc4e24..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index 25e297b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index a7ea43e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/da/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/da/Humanizer.resources.dll
deleted file mode 100755
index 25c518a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/da/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Humanizer.resources.dll
deleted file mode 100755
index eca8773..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index 9e4f329..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index 4b7bae7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 05da79f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index 7bf7965..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index b65f276..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index e128407..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 6a98feb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index 9cd7e59..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index d72bdcd..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index bfd9810..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index 86480b8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index 576f74e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/dotnet-aspnet-codegenerator-design.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/dotnet-aspnet-codegenerator-design.dll
deleted file mode 100755
index f227e5a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/dotnet-aspnet-codegenerator-design.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/el/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/el/Humanizer.resources.dll
deleted file mode 100755
index 7496654..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/el/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Humanizer.resources.dll
deleted file mode 100755
index a2ccea7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index aa74b78..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index 8e8ced1..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 970399e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index 36baafe..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 2a65614..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index 6cb47ac..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 76ddceb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index d859030..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index d12d450..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index 5b11c04..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index 09fef98..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index 5f5814b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fa/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fa/Humanizer.resources.dll
deleted file mode 100755
index 71fb905..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fa/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fi-FI/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fi-FI/Humanizer.resources.dll
deleted file mode 100755
index 553a14d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fi-FI/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr-BE/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr-BE/Humanizer.resources.dll
deleted file mode 100755
index d75e247..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr-BE/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Humanizer.resources.dll
deleted file mode 100755
index 5fb44a9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index f05c95f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index c41ed4c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 5fe6dd8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index bf29690..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 623e1ba..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index 046c953..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 368bb7b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index 15a6f35..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index 5d5014d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index 00a6f99..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index bb2ec13..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index 33bd3c4..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/he/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/he/Humanizer.resources.dll
deleted file mode 100755
index deb8b6e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/he/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hr/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hr/Humanizer.resources.dll
deleted file mode 100755
index 4d50733..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hr/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hu/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hu/Humanizer.resources.dll
deleted file mode 100755
index f93d556..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hu/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hy/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hy/Humanizer.resources.dll
deleted file mode 100755
index a61b5e6..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hy/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/id/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/id/Humanizer.resources.dll
deleted file mode 100755
index e605f23..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/id/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/is/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/is/Humanizer.resources.dll
deleted file mode 100755
index 40e36d7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/is/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Humanizer.resources.dll
deleted file mode 100755
index 9434487..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index 1590156..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index 72bb9d5..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 6051d99..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index 7b12155..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 99a1314..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index 829ed5d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 9890df1..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index a7e9812..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index 41a2ca5..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index 942d46d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index a8d9c88..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index 7bcda02..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Humanizer.resources.dll
deleted file mode 100755
index f949d63..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index bc69084..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index eaded8c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 47f3fd5..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index b99c9b3..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 2c3af4a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index 203cc83..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 208b1d9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index 3f511e9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index 76a9ed6..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index 75aacd2..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index 15ce597..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index aa40740..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko-KR/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko-KR/Humanizer.resources.dll
deleted file mode 100755
index 6a5f6c7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko-KR/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index f7f8af4..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index 895ca11..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index c712a37..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index 96de54c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 22c4478..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index 4790c29..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 05bc700..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index 6ba3989..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index e056148..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index b4011e7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index a98f7d2..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index 6e0dc48..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ku/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ku/Humanizer.resources.dll
deleted file mode 100755
index 606d2b9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ku/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/lv/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/lv/Humanizer.resources.dll
deleted file mode 100755
index 463bf2d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/lv/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ms-MY/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ms-MY/Humanizer.resources.dll
deleted file mode 100755
index 6494db8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ms-MY/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/mt/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/mt/Humanizer.resources.dll
deleted file mode 100755
index 7e056c7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/mt/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nb-NO/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nb-NO/Humanizer.resources.dll
deleted file mode 100755
index 4ff1965..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nb-NO/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nb/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nb/Humanizer.resources.dll
deleted file mode 100755
index 48d7d6e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nb/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nl/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nl/Humanizer.resources.dll
deleted file mode 100755
index e1bca89..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nl/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Humanizer.resources.dll
deleted file mode 100755
index 1b81e27..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index 848aeb8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index eb61aff..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index ea192cc..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index c624ee3..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 8723ebd..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index fce2d36..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index e142029..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index 663910f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index 043a642..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index 718a39c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index cd1a9cf..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index 46725e2..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index 9c9cc0e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index 7c20209..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index be86033..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index 83b88f8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index de7c13c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index 768264c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 0dc6fae..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index 8963d20..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index 7c619c3..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index 59bc211..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index 18e380c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index b4db031..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt/Humanizer.resources.dll
deleted file mode 100755
index 71daa56..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ro/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ro/Humanizer.resources.dll
deleted file mode 100755
index 0aea9b9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ro/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Humanizer.resources.dll
deleted file mode 100755
index dd2f875..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index f4069e0..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index 85dd902..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index dfd0a6b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index eb8d3fc..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 3fa2fa8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index cafdf21..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index ace0504..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index f7315fb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index 2ae3127..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index 4e55611..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index 659c931..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index 3f8dce8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a
deleted file mode 100755
index 5a5a2a3..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so
deleted file mode 100755
index a6a80a4..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so
deleted file mode 100755
index a1030eb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so
deleted file mode 100755
index 56fc44d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so
deleted file mode 100755
index 15883be..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so
deleted file mode 100755
index 28eaa8b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so
deleted file mode 100755
index 5a6a8f7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so
deleted file mode 100755
index c576551..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so
deleted file mode 100755
index 980a4a6..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so
deleted file mode 100755
index 3f7dca6..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so
deleted file mode 100755
index a4bb64d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so
deleted file mode 100755
index 705798a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so
deleted file mode 100755
index c32107b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib
deleted file mode 100755
index f32c878..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib
deleted file mode 100755
index 33a1c68..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib
deleted file mode 100755
index 05932eb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib
deleted file mode 100755
index 0cd9a57..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx/native/libSkiaSharp.dylib b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx/native/libSkiaSharp.dylib
deleted file mode 100755
index 929c827..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx/native/libSkiaSharp.dylib and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll
deleted file mode 100755
index 206341f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll
deleted file mode 100755
index c171a72..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll
deleted file mode 100755
index 8294262..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll
deleted file mode 100755
index 3f2b452..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll
deleted file mode 100755
index 4ac1f79..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/libSkiaSharp.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/libSkiaSharp.dll
deleted file mode 100755
index 3431340..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/libSkiaSharp.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll
deleted file mode 100755
index 8fde16b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll
deleted file mode 100755
index 8c1c1d9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/libSkiaSharp.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/libSkiaSharp.dll
deleted file mode 100755
index fce291f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/libSkiaSharp.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll
deleted file mode 100755
index 93fb631..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll
deleted file mode 100755
index 0e05ac0..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/libSkiaSharp.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/libSkiaSharp.dll
deleted file mode 100755
index 27255f6..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/libSkiaSharp.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll
deleted file mode 100755
index ff20fab..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll
deleted file mode 100755
index bdca76d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll
deleted file mode 100755
index a8d91f3..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sk/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sk/Humanizer.resources.dll
deleted file mode 100755
index 4c03f54..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sk/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sl/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sl/Humanizer.resources.dll
deleted file mode 100755
index b79bb3c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sl/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sr-Latn/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sr-Latn/Humanizer.resources.dll
deleted file mode 100755
index e846785..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sr-Latn/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sr/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sr/Humanizer.resources.dll
deleted file mode 100755
index 7e36e26..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sr/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sv/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sv/Humanizer.resources.dll
deleted file mode 100755
index 70974a5..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sv/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/testhost.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/testhost.dll
deleted file mode 100755
index 0ac4929..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/testhost.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/th-TH/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/th-TH/Humanizer.resources.dll
deleted file mode 100755
index 4dcc85d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/th-TH/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Humanizer.resources.dll
deleted file mode 100755
index eff6ad8..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index cb60f9f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index 9867f6f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 2a4742e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index a964e2b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 362a18c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index 8012969..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 9a06288..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index f5d9fb1..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index 7fc1e7d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index e9b9aa7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index eb30216..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index 88a97d4..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uk/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uk/Humanizer.resources.dll
deleted file mode 100755
index d4fb7a2..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uk/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uz-Cyrl-UZ/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uz-Cyrl-UZ/Humanizer.resources.dll
deleted file mode 100755
index c76160d..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uz-Cyrl-UZ/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uz-Latn-UZ/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uz-Latn-UZ/Humanizer.resources.dll
deleted file mode 100755
index da72030..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uz-Latn-UZ/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/vi/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/vi/Humanizer.resources.dll
deleted file mode 100755
index ff72d7e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/vi/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.abstractions.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.abstractions.dll
deleted file mode 100755
index d1e90bf..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.abstractions.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.assert.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.assert.dll
deleted file mode 100755
index 8aa9a0e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.assert.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.core.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.core.dll
deleted file mode 100755
index 6c02a16..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.core.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll
deleted file mode 100755
index 5613a34..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.reporters.netcoreapp10.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.reporters.netcoreapp10.dll
deleted file mode 100755
index ca76232..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.reporters.netcoreapp10.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.utility.netcoreapp10.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.utility.netcoreapp10.dll
deleted file mode 100755
index c247a4e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.utility.netcoreapp10.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll
deleted file mode 100755
index 2c4b812..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-CN/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-CN/Humanizer.resources.dll
deleted file mode 100755
index a80799f..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-CN/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Humanizer.resources.dll
deleted file mode 100755
index c84c639..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index 634b92a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index e4b3c7a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index b51ee57..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index ee58ace..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 76106fb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index e27e8be..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 22b6e95..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index b1ced2e..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index 71efa7c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index 4601a93..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index 2aca6bc..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index 5f363fa..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Humanizer.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Humanizer.resources.dll
deleted file mode 100755
index d0cb506..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Humanizer.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
deleted file mode 100755
index 91237eb..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
deleted file mode 100755
index 57e4d28..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 305dfbf..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll
deleted file mode 100755
index 62eb03b..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 432f584..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll
deleted file mode 100755
index cef3ebc..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index dce3bc0..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
deleted file mode 100755
index e8568a7..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
deleted file mode 100755
index 435930c..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
deleted file mode 100755
index 6b617d6..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
deleted file mode 100755
index a50ff76..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
deleted file mode 100755
index 0dae59a..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/CrowdedBackend.Tests.csproj.nuget.dgspec.json b/CrowdedBackend/CrowdedBackend.Tests/obj/CrowdedBackend.Tests.csproj.nuget.dgspec.json
deleted file mode 100644
index 3259895..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/CrowdedBackend.Tests.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,207 +0,0 @@
-{
- "format": 1,
- "restore": {
- "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj": {}
- },
- "projects": {
- "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj",
- "projectName": "CrowdedBackend.Tests",
- "projectPath": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj",
- "packagesPath": "/Users/davidfraenkel/.nuget/packages/",
- "outputPath": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/Users/davidfraenkel/.nuget/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "net9.0"
- ],
- "sources": {
- "/usr/local/Cellar/dotnet/9.0.101/libexec/library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net9.0": {
- "targetAlias": "net9.0",
- "projectReferences": {
- "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend/CrowdedBackend.csproj": {
- "projectPath": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend/CrowdedBackend.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.100"
- },
- "frameworks": {
- "net9.0": {
- "targetAlias": "net9.0",
- "dependencies": {
- "Microsoft.NET.Test.Sdk": {
- "target": "Package",
- "version": "[17.11.1, )"
- },
- "coverlet.collector": {
- "target": "Package",
- "version": "[6.0.2, )"
- },
- "xunit": {
- "target": "Package",
- "version": "[2.9.2, )"
- },
- "xunit.runner.visualstudio": {
- "target": "Package",
- "version": "[2.8.2, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "/usr/local/Cellar/dotnet/9.0.101/libexec/sdk/9.0.101/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend/CrowdedBackend.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend/CrowdedBackend.csproj",
- "projectName": "CrowdedBackend",
- "projectPath": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend/CrowdedBackend.csproj",
- "packagesPath": "/Users/davidfraenkel/.nuget/packages/",
- "outputPath": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/Users/davidfraenkel/.nuget/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "net9.0"
- ],
- "sources": {
- "/usr/local/Cellar/dotnet/9.0.101/libexec/library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net9.0": {
- "targetAlias": "net9.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.100"
- },
- "frameworks": {
- "net9.0": {
- "targetAlias": "net9.0",
- "dependencies": {
- "MathNet.Numerics": {
- "target": "Package",
- "version": "[5.0.0, )"
- },
- "Microsoft.AspNetCore.OpenApi": {
- "target": "Package",
- "version": "[9.0.2, )"
- },
- "Microsoft.EntityFrameworkCore": {
- "target": "Package",
- "version": "[9.0.2, )"
- },
- "Microsoft.EntityFrameworkCore.Design": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[9.0.2, )"
- },
- "Microsoft.EntityFrameworkCore.SqlServer": {
- "target": "Package",
- "version": "[9.0.2, )"
- },
- "Microsoft.EntityFrameworkCore.Sqlite": {
- "target": "Package",
- "version": "[9.0.2, )"
- },
- "Microsoft.EntityFrameworkCore.Tools": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[9.0.2, )"
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
- "target": "Package",
- "version": "[9.0.0, )"
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL": {
- "target": "Package",
- "version": "[9.0.3, )"
- },
- "SkiaSharp": {
- "target": "Package",
- "version": "[3.116.1, )"
- },
- "System.Linq": {
- "target": "Package",
- "version": "[4.3.0, )"
- },
- "pythonnet": {
- "target": "Package",
- "version": "[3.0.5, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.AspNetCore.App": {
- "privateAssets": "none"
- },
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "/usr/local/Cellar/dotnet/9.0.101/libexec/sdk/9.0.101/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/CrowdedBackend.Tests.csproj.nuget.g.props b/CrowdedBackend/CrowdedBackend.Tests/obj/CrowdedBackend.Tests.csproj.nuget.g.props
deleted file mode 100644
index 473733e..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/CrowdedBackend.Tests.csproj.nuget.g.props
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- /Users/davidfraenkel/.nuget/packages/
- /Users/davidfraenkel/.nuget/packages/
- PackageReference
- 6.12.2
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- /Users/davidfraenkel/.nuget/packages/xunit.analyzers/1.16.0
- /Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4
- /Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.analyzerutilities/3.3.0
-
-
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/CrowdedBackend.Tests.csproj.nuget.g.targets b/CrowdedBackend/CrowdedBackend.Tests/obj/CrowdedBackend.Tests.csproj.nuget.g.targets
deleted file mode 100644
index 4781d17..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/CrowdedBackend.Tests.csproj.nuget.g.targets
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs
deleted file mode 100644
index feda5e9..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedB.0F24B9B3.Up2Date b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedB.0F24B9B3.Up2Date
deleted file mode 100644
index e69de29..0000000
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.AssemblyInfo.cs b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.AssemblyInfo.cs
deleted file mode 100644
index 943af46..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.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("CrowdedBackend.Tests")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+cba565c81db7fe7bd46fcd0d0a090658032eb5a5")]
-[assembly: System.Reflection.AssemblyProductAttribute("CrowdedBackend.Tests")]
-[assembly: System.Reflection.AssemblyTitleAttribute("CrowdedBackend.Tests")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.AssemblyInfoInputs.cache b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.AssemblyInfoInputs.cache
deleted file mode 100644
index fe7a67f..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-62d4788d2c618a36eace5c023ca83a96718b285373d45c8e70443888c6408a6e
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.GeneratedMSBuildEditorConfig.editorconfig b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 28d7253..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,23 +0,0 @@
-is_global = true
-build_property.TargetFramework = net9.0
-build_property.TargetFramework = net9.0
-build_property.TargetPlatformMinVersion =
-build_property.TargetPlatformMinVersion =
-build_property.UsingMicrosoftNETSdkWeb =
-build_property.UsingMicrosoftNETSdkWeb =
-build_property.ProjectTypeGuids =
-build_property.ProjectTypeGuids =
-build_property.InvariantGlobalization =
-build_property.InvariantGlobalization =
-build_property.PlatformNeutralAssembly =
-build_property.PlatformNeutralAssembly =
-build_property.EnforceExtendedAnalyzerRules =
-build_property.EnforceExtendedAnalyzerRules =
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = CrowdedBackend.Tests
-build_property.ProjectDir = /Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
-build_property.EffectiveAnalysisLevelStyle = 9.0
-build_property.EnableCodeStyleSeverity =
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.GlobalUsings.g.cs b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.GlobalUsings.g.cs
deleted file mode 100644
index 2cd3d38..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.GlobalUsings.g.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-//
-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.Threading;
-global using global::System.Threading.Tasks;
-global using global::Xunit;
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.assets.cache b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.assets.cache
deleted file mode 100644
index a3ccd15..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.assets.cache and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.AssemblyReference.cache b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.AssemblyReference.cache
deleted file mode 100644
index 963d0d3..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.CoreCompileInputs.cache b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 75c3ed5..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-bafe4f97931b11b3372ee36dc8752f0440b4611cc04a4d9ac9851a9a4f349c83
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.FileListAbsolute.txt b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.FileListAbsolute.txt
deleted file mode 100644
index 8f37be7..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,367 +0,0 @@
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/.msCoverageSourceRootsMapping_CrowdedBackend.Tests
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CoverletSourceRootsMapping_CrowdedBackend.Tests
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.AssemblyReference.cache
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.GeneratedMSBuildEditorConfig.editorconfig
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.AssemblyInfoInputs.cache
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.AssemblyInfo.cs
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.csproj.CoreCompileInputs.cache
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.sourcelink.json
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.deps.json
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.runtimeconfig.json
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/appsettings.Development.json
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.staticwebassets.endpoints.json
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.visualstudio.testadapter.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.reporters.netcoreapp10.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.runner.utility.netcoreapp10.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.deps.json
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.runtimeconfig.json
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.Tests.pdb
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Azure.Core.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Azure.Identity.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Humanizer.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/MathNet.Numerics.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Build.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Build.Framework.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Features.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Elfie.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Features.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Scripting.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Data.SqlClient.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Data.Sqlite.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.DiaSymReader.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.DotNet.Scaffolding.Shared.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Sqlite.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.SqlServer.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Options.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Identity.Client.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.Identity.Client.Extensions.Msal.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.NET.StringTools.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.OpenApi.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.SqlServer.Server.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CoreUtilities.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.PlatformAbstractions.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CommunicationUtilities.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.CrossPlatEngine.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.TestPlatform.Utilities.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.TestPlatform.Common.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/testhost.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/dotnet-aspnet-codegenerator-design.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Mono.TextTemplating.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Newtonsoft.Json.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Npgsql.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Common.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Configuration.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.DependencyResolver.Core.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Frameworks.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.LibraryModel.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Packaging.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.ProjectModel.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Protocol.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/NuGet.Versioning.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/Python.Runtime.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SkiaSharp.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.batteries_v2.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.core.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/SQLitePCLRaw.provider.e_sqlite3.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.ClientModel.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.CodeDom.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.AttributedModel.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Convention.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Hosting.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.Runtime.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Composition.TypedParts.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Configuration.ConfigurationManager.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Formats.Asn1.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Memory.Data.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Reflection.MetadataLoadContext.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Runtime.Caching.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Security.Cryptography.ProtectedData.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/System.Text.Json.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.abstractions.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.assert.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.core.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/xunit.execution.dotnet.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/af/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ar/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/az/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/bg/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/bn-BD/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/da/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/el/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fa/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fi-FI/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr-BE/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/he/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hr/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hu/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/hy/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/id/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/is/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko-KR/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ku/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/lv/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ms-MY/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/mt/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nb/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nb-NO/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/nl/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ro/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sk/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sl/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sr/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sr-Latn/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/sv/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/th-TH/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uk/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uz-Cyrl-UZ/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/uz-Latn-UZ/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/vi/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-CN/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Humanizer.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx/native/libSkiaSharp.dylib
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/libSkiaSharp.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/libSkiaSharp.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/libSkiaSharp.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-arm/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-arm64/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-armel/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-mips64/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-s390x/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-ppc64le/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-s390x/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-x64/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/linux-x86/native/libe_sqlite3.so
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx-arm64/native/libe_sqlite3.dylib
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/osx-x64/native/libe_sqlite3.dylib
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm/native/e_sqlite3.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-arm64/native/e_sqlite3.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x64/native/e_sqlite3.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win-x86/native/e_sqlite3.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/bin/Debug/net9.0/CrowdedBackend.pdb
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedB.0F24B9B3.Up2Date
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/refint/CrowdedBackend.Tests.dll
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.pdb
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.genruntimeconfig.cache
-/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/ref/CrowdedBackend.Tests.dll
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.dll b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.dll
deleted file mode 100644
index 689bcf9..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.genruntimeconfig.cache b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.genruntimeconfig.cache
deleted file mode 100644
index 9efa332..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-7fa1ec0c2899f022bb9ad88982741382ca2f5e28efc4a7a7cd3212beebec6e3a
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.pdb b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.pdb
deleted file mode 100644
index bcbc1d0..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.pdb and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.sourcelink.json b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.sourcelink.json
deleted file mode 100644
index 6f79b5d..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/CrowdedBackend.Tests.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"/Users/davidfraenkel/CrowdedRegionDetection/*":"https://raw.githubusercontent.com/BachelorProjectGroup3/CrowdedRegionDetection/cba565c81db7fe7bd46fcd0d0a090658032eb5a5/*"}}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/ref/CrowdedBackend.Tests.dll b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/ref/CrowdedBackend.Tests.dll
deleted file mode 100644
index 4bfa916..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/ref/CrowdedBackend.Tests.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/refint/CrowdedBackend.Tests.dll b/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/refint/CrowdedBackend.Tests.dll
deleted file mode 100644
index 4bfa916..0000000
Binary files a/CrowdedBackend/CrowdedBackend.Tests/obj/Debug/net9.0/refint/CrowdedBackend.Tests.dll and /dev/null differ
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/project.assets.json b/CrowdedBackend/CrowdedBackend.Tests/obj/project.assets.json
deleted file mode 100644
index 4518a13..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/project.assets.json
+++ /dev/null
@@ -1,10046 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net9.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"
- }
- }
- },
- "coverlet.collector/6.0.2": {
- "type": "package",
- "build": {
- "build/netstandard2.0/coverlet.collector.targets": {}
- }
- },
- "Humanizer/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core.af": "2.14.1",
- "Humanizer.Core.ar": "2.14.1",
- "Humanizer.Core.az": "2.14.1",
- "Humanizer.Core.bg": "2.14.1",
- "Humanizer.Core.bn-BD": "2.14.1",
- "Humanizer.Core.cs": "2.14.1",
- "Humanizer.Core.da": "2.14.1",
- "Humanizer.Core.de": "2.14.1",
- "Humanizer.Core.el": "2.14.1",
- "Humanizer.Core.es": "2.14.1",
- "Humanizer.Core.fa": "2.14.1",
- "Humanizer.Core.fi-FI": "2.14.1",
- "Humanizer.Core.fr": "2.14.1",
- "Humanizer.Core.fr-BE": "2.14.1",
- "Humanizer.Core.he": "2.14.1",
- "Humanizer.Core.hr": "2.14.1",
- "Humanizer.Core.hu": "2.14.1",
- "Humanizer.Core.hy": "2.14.1",
- "Humanizer.Core.id": "2.14.1",
- "Humanizer.Core.is": "2.14.1",
- "Humanizer.Core.it": "2.14.1",
- "Humanizer.Core.ja": "2.14.1",
- "Humanizer.Core.ko-KR": "2.14.1",
- "Humanizer.Core.ku": "2.14.1",
- "Humanizer.Core.lv": "2.14.1",
- "Humanizer.Core.ms-MY": "2.14.1",
- "Humanizer.Core.mt": "2.14.1",
- "Humanizer.Core.nb": "2.14.1",
- "Humanizer.Core.nb-NO": "2.14.1",
- "Humanizer.Core.nl": "2.14.1",
- "Humanizer.Core.pl": "2.14.1",
- "Humanizer.Core.pt": "2.14.1",
- "Humanizer.Core.ro": "2.14.1",
- "Humanizer.Core.ru": "2.14.1",
- "Humanizer.Core.sk": "2.14.1",
- "Humanizer.Core.sl": "2.14.1",
- "Humanizer.Core.sr": "2.14.1",
- "Humanizer.Core.sr-Latn": "2.14.1",
- "Humanizer.Core.sv": "2.14.1",
- "Humanizer.Core.th-TH": "2.14.1",
- "Humanizer.Core.tr": "2.14.1",
- "Humanizer.Core.uk": "2.14.1",
- "Humanizer.Core.uz-Cyrl-UZ": "2.14.1",
- "Humanizer.Core.uz-Latn-UZ": "2.14.1",
- "Humanizer.Core.vi": "2.14.1",
- "Humanizer.Core.zh-CN": "2.14.1",
- "Humanizer.Core.zh-Hans": "2.14.1",
- "Humanizer.Core.zh-Hant": "2.14.1"
- }
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/Humanizer.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Humanizer.dll": {
- "related": ".xml"
- }
- }
- },
- "Humanizer.Core.af/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/af/Humanizer.resources.dll": {
- "locale": "af"
- }
- }
- },
- "Humanizer.Core.ar/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/ar/Humanizer.resources.dll": {
- "locale": "ar"
- }
- }
- },
- "Humanizer.Core.az/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/az/Humanizer.resources.dll": {
- "locale": "az"
- }
- }
- },
- "Humanizer.Core.bg/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/bg/Humanizer.resources.dll": {
- "locale": "bg"
- }
- }
- },
- "Humanizer.Core.bn-BD/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/bn-BD/Humanizer.resources.dll": {
- "locale": "bn-BD"
- }
- }
- },
- "Humanizer.Core.cs/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/cs/Humanizer.resources.dll": {
- "locale": "cs"
- }
- }
- },
- "Humanizer.Core.da/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/da/Humanizer.resources.dll": {
- "locale": "da"
- }
- }
- },
- "Humanizer.Core.de/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/de/Humanizer.resources.dll": {
- "locale": "de"
- }
- }
- },
- "Humanizer.Core.el/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/el/Humanizer.resources.dll": {
- "locale": "el"
- }
- }
- },
- "Humanizer.Core.es/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/es/Humanizer.resources.dll": {
- "locale": "es"
- }
- }
- },
- "Humanizer.Core.fa/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/fa/Humanizer.resources.dll": {
- "locale": "fa"
- }
- }
- },
- "Humanizer.Core.fi-FI/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/fi-FI/Humanizer.resources.dll": {
- "locale": "fi-FI"
- }
- }
- },
- "Humanizer.Core.fr/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/fr/Humanizer.resources.dll": {
- "locale": "fr"
- }
- }
- },
- "Humanizer.Core.fr-BE/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/fr-BE/Humanizer.resources.dll": {
- "locale": "fr-BE"
- }
- }
- },
- "Humanizer.Core.he/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/he/Humanizer.resources.dll": {
- "locale": "he"
- }
- }
- },
- "Humanizer.Core.hr/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/hr/Humanizer.resources.dll": {
- "locale": "hr"
- }
- }
- },
- "Humanizer.Core.hu/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/hu/Humanizer.resources.dll": {
- "locale": "hu"
- }
- }
- },
- "Humanizer.Core.hy/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/hy/Humanizer.resources.dll": {
- "locale": "hy"
- }
- }
- },
- "Humanizer.Core.id/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/id/Humanizer.resources.dll": {
- "locale": "id"
- }
- }
- },
- "Humanizer.Core.is/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/is/Humanizer.resources.dll": {
- "locale": "is"
- }
- }
- },
- "Humanizer.Core.it/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/it/Humanizer.resources.dll": {
- "locale": "it"
- }
- }
- },
- "Humanizer.Core.ja/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/ja/Humanizer.resources.dll": {
- "locale": "ja"
- }
- }
- },
- "Humanizer.Core.ko-KR/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": {
- "locale": "ko-KR"
- }
- }
- },
- "Humanizer.Core.ku/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/ku/Humanizer.resources.dll": {
- "locale": "ku"
- }
- }
- },
- "Humanizer.Core.lv/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/lv/Humanizer.resources.dll": {
- "locale": "lv"
- }
- }
- },
- "Humanizer.Core.ms-MY/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": {
- "locale": "ms-MY"
- }
- }
- },
- "Humanizer.Core.mt/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/netstandard2.0/mt/Humanizer.resources.dll": {
- "locale": "mt"
- }
- }
- },
- "Humanizer.Core.nb/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/nb/Humanizer.resources.dll": {
- "locale": "nb"
- }
- }
- },
- "Humanizer.Core.nb-NO/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/nb-NO/Humanizer.resources.dll": {
- "locale": "nb-NO"
- }
- }
- },
- "Humanizer.Core.nl/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/nl/Humanizer.resources.dll": {
- "locale": "nl"
- }
- }
- },
- "Humanizer.Core.pl/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/pl/Humanizer.resources.dll": {
- "locale": "pl"
- }
- }
- },
- "Humanizer.Core.pt/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/pt/Humanizer.resources.dll": {
- "locale": "pt"
- }
- }
- },
- "Humanizer.Core.ro/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/ro/Humanizer.resources.dll": {
- "locale": "ro"
- }
- }
- },
- "Humanizer.Core.ru/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/ru/Humanizer.resources.dll": {
- "locale": "ru"
- }
- }
- },
- "Humanizer.Core.sk/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/sk/Humanizer.resources.dll": {
- "locale": "sk"
- }
- }
- },
- "Humanizer.Core.sl/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/sl/Humanizer.resources.dll": {
- "locale": "sl"
- }
- }
- },
- "Humanizer.Core.sr/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/sr/Humanizer.resources.dll": {
- "locale": "sr"
- }
- }
- },
- "Humanizer.Core.sr-Latn/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/sr-Latn/Humanizer.resources.dll": {
- "locale": "sr-Latn"
- }
- }
- },
- "Humanizer.Core.sv/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/sv/Humanizer.resources.dll": {
- "locale": "sv"
- }
- }
- },
- "Humanizer.Core.th-TH/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/netstandard2.0/th-TH/Humanizer.resources.dll": {
- "locale": "th-TH"
- }
- }
- },
- "Humanizer.Core.tr/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/tr/Humanizer.resources.dll": {
- "locale": "tr"
- }
- }
- },
- "Humanizer.Core.uk/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/uk/Humanizer.resources.dll": {
- "locale": "uk"
- }
- }
- },
- "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": {
- "locale": "uz-Cyrl-UZ"
- }
- }
- },
- "Humanizer.Core.uz-Latn-UZ/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": {
- "locale": "uz-Latn-UZ"
- }
- }
- },
- "Humanizer.Core.vi/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/vi/Humanizer.resources.dll": {
- "locale": "vi"
- }
- }
- },
- "Humanizer.Core.zh-CN/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/zh-CN/Humanizer.resources.dll": {
- "locale": "zh-CN"
- }
- }
- },
- "Humanizer.Core.zh-Hans/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/zh-Hans/Humanizer.resources.dll": {
- "locale": "zh-Hans"
- }
- }
- },
- "Humanizer.Core.zh-Hant/2.14.1": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "[2.14.1]"
- },
- "resource": {
- "lib/net6.0/zh-Hant/Humanizer.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "MathNet.Numerics/5.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/MathNet.Numerics.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/MathNet.Numerics.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.OpenApi/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.OpenApi": "1.6.17"
- },
- "compile": {
- "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {
- "related": ".xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "Microsoft.AspNetCore.Razor.Language/6.0.24": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Build/17.10.4": {
- "type": "package",
- "dependencies": {
- "Microsoft.Build.Framework": "17.10.4",
- "Microsoft.NET.StringTools": "17.10.4",
- "System.Collections.Immutable": "8.0.0",
- "System.Configuration.ConfigurationManager": "8.0.0",
- "System.Reflection.Metadata": "8.0.0",
- "System.Reflection.MetadataLoadContext": "8.0.0",
- "System.Security.Principal.Windows": "5.0.0",
- "System.Threading.Tasks.Dataflow": "8.0.0"
- },
- "compile": {
- "ref/net8.0/Microsoft.Build.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Build.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Build.Framework/17.10.4": {
- "type": "package",
- "compile": {
- "ref/net8.0/Microsoft.Build.Framework.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Build.Framework.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
- "type": "package",
- "build": {
- "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {},
- "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {}
- }
- },
- "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.CodeAnalysis.Common/4.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
- "System.Collections.Immutable": "7.0.0",
- "System.Reflection.Metadata": "7.0.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net7.0/Microsoft.CodeAnalysis.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/4.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[4.8.0]"
- },
- "compile": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "[4.8.0]",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "[4.8.0]",
- "Microsoft.CodeAnalysis.Common": "[4.8.0]",
- "Microsoft.CodeAnalysis.Features": "[4.8.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]"
- },
- "compile": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "[4.8.0]",
- "Microsoft.CodeAnalysis.Common": "[4.8.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]"
- },
- "compile": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Elfie/1.0.0": {
- "type": "package",
- "dependencies": {
- "System.Configuration.ConfigurationManager": "4.5.0",
- "System.Data.DataSetExtensions": "4.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {}
- }
- },
- "Microsoft.CodeAnalysis.Features/4.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0",
- "Microsoft.CodeAnalysis.Common": "[4.8.0]",
- "Microsoft.CodeAnalysis.Elfie": "1.0.0",
- "Microsoft.CodeAnalysis.Scripting.Common": "[4.8.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]",
- "Microsoft.DiaSymReader": "2.0.0",
- "System.Text.Json": "7.0.3"
- },
- "compile": {
- "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Razor/6.0.24": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.CodeAnalysis.CSharp": "4.0.0",
- "Microsoft.CodeAnalysis.Common": "4.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
- }
- },
- "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[4.8.0]"
- },
- "compile": {
- "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
- "Microsoft.CodeAnalysis.Common": "[4.8.0]",
- "System.Composition": "7.0.0",
- "System.IO.Pipelines": "7.0.0",
- "System.Threading.Channels": "7.0.0"
- },
- "compile": {
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeCoverage/17.11.1": {
- "type": "package",
- "compile": {
- "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
- },
- "build": {
- "build/netstandard2.0/Microsoft.CodeCoverage.props": {},
- "build/netstandard2.0/Microsoft.CodeCoverage.targets": {}
- }
- },
- "Microsoft.CSharp/4.7.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "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.Data.Sqlite.Core/9.0.2": {
- "type": "package",
- "dependencies": {
- "SQLitePCLRaw.core": "2.1.10"
- },
- "compile": {
- "lib/net8.0/Microsoft.Data.Sqlite.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Data.Sqlite.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.DiaSymReader/2.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.DiaSymReader.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.DiaSymReader.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.DotNet.Scaffolding.Shared/9.0.0": {
- "type": "package",
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyModel": "9.0.0-rc.2.24473.5",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.0-rc.2.24473.5",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "9.0.2",
- "Microsoft.EntityFrameworkCore.Analyzers": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2"
- },
- "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/9.0.2": {
- "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/9.0.2": {
- "type": "package"
- },
- "Microsoft.EntityFrameworkCore.Relational/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Sqlite.Core": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2",
- "SQLitePCLRaw.bundle_e_sqlite3": "2.1.10",
- "SQLitePCLRaw.core": "2.1.10",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/net8.0/_._": {}
- },
- "runtime": {
- "lib/net8.0/_._": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Data.Sqlite.Core": "9.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.DependencyModel": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2",
- "SQLitePCLRaw.core": "2.1.10",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.SqlServer/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Data.SqlClient": "5.1.6",
- "Microsoft.EntityFrameworkCore.Relational": "9.0.2",
- "Microsoft.Extensions.Caching.Memory": "9.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "9.0.2",
- "Microsoft.Extensions.Logging": "9.0.2",
- "System.Formats.Asn1": "9.0.2",
- "System.Text.Json": "9.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Caching.Memory/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "9.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.2",
- "Microsoft.Extensions.Options": "9.0.2",
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyModel/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "9.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "9.0.2",
- "Microsoft.Extensions.Options": "9.0.2"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Extensions.Options/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.2",
- "Microsoft.Extensions.Primitives": "9.0.2"
- },
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {}
- }
- },
- "Microsoft.Extensions.Primitives/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.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/6.35.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "6.35.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encodings.Web": "4.7.2",
- "System.Text.Json": "4.7.2"
- },
- "compile": {
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/6.35.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.35.0"
- },
- "compile": {
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols/6.35.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "6.35.0",
- "Microsoft.IdentityModel.Tokens": "6.35.0"
- },
- "compile": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Protocols": "6.35.0",
- "System.IdentityModel.Tokens.Jwt": "6.35.0"
- },
- "compile": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/6.35.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.5.0",
- "Microsoft.IdentityModel.Logging": "6.35.0",
- "System.Security.Cryptography.Cng": "4.5.0"
- },
- "compile": {
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.NET.StringTools/17.10.4": {
- "type": "package",
- "compile": {
- "ref/net8.0/Microsoft.NET.StringTools.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.NET.StringTools.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.NET.Test.Sdk/17.11.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeCoverage": "17.11.1",
- "Microsoft.TestPlatform.TestHost": "17.11.1"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp3.1/_._": {}
- },
- "build": {
- "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {},
- "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
- }
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.OpenApi/1.6.17": {
- "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.TestPlatform.ObjectModel/17.11.1": {
- "type": "package",
- "dependencies": {
- "System.Reflection.Metadata": "1.6.0"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
- "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
- "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.TestPlatform.TestHost/17.11.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.TestPlatform.ObjectModel": "17.11.1",
- "Newtonsoft.Json": "13.0.1"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
- "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
- "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {},
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
- "lib/netcoreapp3.1/testhost.dll": {
- "related": ".deps.json"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
- "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
- "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {},
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
- "lib/netcoreapp3.1/testhost.dll": {
- "related": ".deps.json"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hant"
- }
- },
- "build": {
- "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {}
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration/9.0.0": {
- "type": "package",
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0-rc.2.24473.5",
- "Microsoft.Extensions.DependencyModel": "9.0.0-rc.2.24473.5",
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.0-rc.2.24473.5",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Core/9.0.0": {
- "type": "package",
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0-rc.2.24473.5",
- "Microsoft.Extensions.DependencyModel": "9.0.0-rc.2.24473.5",
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.0-rc.2.24473.5",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design/9.0.0": {
- "type": "package",
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0-rc.2.24473.5",
- "Microsoft.Extensions.DependencyModel": "9.0.0-rc.2.24473.5",
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.0-rc.2.24473.5",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "compile": {
- "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/9.0.0": {
- "type": "package",
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0-rc.2.24473.5",
- "Microsoft.Extensions.DependencyModel": "9.0.0-rc.2.24473.5",
- "Microsoft.VisualStudio.Web.CodeGeneration.Core": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.0-rc.2.24473.5",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating/9.0.0": {
- "type": "package",
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.Extensions.DependencyModel": "9.0.0-rc.2.24473.5",
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.0-rc.2.24473.5",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils/9.0.0": {
- "type": "package",
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyModel": "9.0.0-rc.2.24473.5",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.0-rc.2.24473.5",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/9.0.0": {
- "type": "package",
- "dependencies": {
- "Humanizer": "2.14.1",
- "Microsoft.AspNetCore.Razor.Language": "6.0.24",
- "Microsoft.Build": "17.10.4",
- "Microsoft.CodeAnalysis.CSharp": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
- "Microsoft.CodeAnalysis.Common": "4.8.0",
- "Microsoft.CodeAnalysis.Features": "4.8.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.24",
- "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0",
- "Microsoft.DotNet.Scaffolding.Shared": "9.0.0",
- "Microsoft.Extensions.DependencyInjection": "9.0.0-rc.2.24473.5",
- "Microsoft.Extensions.DependencyModel": "9.0.0-rc.2.24473.5",
- "Microsoft.VisualStudio.Web.CodeGeneration": "9.0.0",
- "Mono.TextTemplating": "3.0.0",
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Packaging": "6.11.0",
- "NuGet.ProjectModel": "6.11.0",
- "System.Formats.Asn1": "9.0.0-rc.2.24473.5",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
- "related": ".xml"
- }
- }
- },
- "Mono.TextTemplating/3.0.0": {
- "type": "package",
- "dependencies": {
- "System.CodeDom": "6.0.0"
- },
- "compile": {
- "lib/net6.0/Mono.TextTemplating.dll": {}
- },
- "runtime": {
- "lib/net6.0/Mono.TextTemplating.dll": {}
- },
- "build": {
- "buildTransitive/Mono.TextTemplating.targets": {}
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "compile": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "Npgsql/9.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Npgsql.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Npgsql.dll": {
- "related": ".xml"
- }
- }
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "[9.0.1, 10.0.0)",
- "Microsoft.EntityFrameworkCore.Relational": "[9.0.1, 10.0.0)",
- "Npgsql": "9.0.2"
- },
- "compile": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Common/6.11.0": {
- "type": "package",
- "dependencies": {
- "NuGet.Frameworks": "6.11.0"
- },
- "compile": {
- "lib/netstandard2.0/NuGet.Common.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Common.dll": {}
- }
- },
- "NuGet.Configuration/6.11.0": {
- "type": "package",
- "dependencies": {
- "NuGet.Common": "6.11.0",
- "System.Security.Cryptography.ProtectedData": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/NuGet.Configuration.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Configuration.dll": {}
- }
- },
- "NuGet.DependencyResolver.Core/6.11.0": {
- "type": "package",
- "dependencies": {
- "NuGet.Configuration": "6.11.0",
- "NuGet.LibraryModel": "6.11.0",
- "NuGet.Protocol": "6.11.0"
- },
- "compile": {
- "lib/net5.0/NuGet.DependencyResolver.Core.dll": {}
- },
- "runtime": {
- "lib/net5.0/NuGet.DependencyResolver.Core.dll": {}
- }
- },
- "NuGet.Frameworks/6.11.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/NuGet.Frameworks.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Frameworks.dll": {}
- }
- },
- "NuGet.LibraryModel/6.11.0": {
- "type": "package",
- "dependencies": {
- "NuGet.Common": "6.11.0",
- "NuGet.Versioning": "6.11.0"
- },
- "compile": {
- "lib/netstandard2.0/NuGet.LibraryModel.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.LibraryModel.dll": {}
- }
- },
- "NuGet.Packaging/6.11.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Configuration": "6.11.0",
- "NuGet.Versioning": "6.11.0",
- "System.Security.Cryptography.Pkcs": "6.0.4"
- },
- "compile": {
- "lib/net5.0/NuGet.Packaging.dll": {}
- },
- "runtime": {
- "lib/net5.0/NuGet.Packaging.dll": {}
- }
- },
- "NuGet.ProjectModel/6.11.0": {
- "type": "package",
- "dependencies": {
- "NuGet.DependencyResolver.Core": "6.11.0"
- },
- "compile": {
- "lib/net5.0/NuGet.ProjectModel.dll": {}
- },
- "runtime": {
- "lib/net5.0/NuGet.ProjectModel.dll": {}
- }
- },
- "NuGet.Protocol/6.11.0": {
- "type": "package",
- "dependencies": {
- "NuGet.Packaging": "6.11.0"
- },
- "compile": {
- "lib/net5.0/NuGet.Protocol.dll": {}
- },
- "runtime": {
- "lib/net5.0/NuGet.Protocol.dll": {}
- }
- },
- "NuGet.Versioning/6.11.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/NuGet.Versioning.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/NuGet.Versioning.dll": {}
- }
- },
- "pythonnet/3.0.5": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.7.0",
- "System.Reflection.Emit": "4.3.0"
- },
- "compile": {
- "lib/netstandard2.0/Python.Runtime.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Python.Runtime.dll": {
- "related": ".xml"
- }
- }
- },
- "SkiaSharp/3.116.1": {
- "type": "package",
- "dependencies": {
- "SkiaSharp.NativeAssets.Win32": "3.116.1",
- "SkiaSharp.NativeAssets.macOS": "3.116.1"
- },
- "compile": {
- "ref/net8.0/SkiaSharp.dll": {}
- },
- "runtime": {
- "lib/net8.0/SkiaSharp.dll": {
- "related": ".pdb"
- }
- }
- },
- "SkiaSharp.NativeAssets.macOS/3.116.1": {
- "type": "package",
- "compile": {
- "lib/net8.0/_._": {}
- },
- "runtime": {
- "lib/net8.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/osx/native/libSkiaSharp.dylib": {
- "assetType": "native",
- "rid": "osx"
- }
- }
- },
- "SkiaSharp.NativeAssets.Win32/3.116.1": {
- "type": "package",
- "compile": {
- "lib/net8.0/_._": {}
- },
- "runtime": {
- "lib/net8.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win-arm64/native/libSkiaSharp.dll": {
- "assetType": "native",
- "rid": "win-arm64"
- },
- "runtimes/win-x64/native/libSkiaSharp.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x86/native/libSkiaSharp.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": {
- "type": "package",
- "dependencies": {
- "SQLitePCLRaw.lib.e_sqlite3": "2.1.10",
- "SQLitePCLRaw.provider.e_sqlite3": "2.1.10"
- },
- "compile": {
- "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {}
- }
- },
- "SQLitePCLRaw.core/2.1.10": {
- "type": "package",
- "dependencies": {
- "System.Memory": "4.5.3"
- },
- "compile": {
- "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/SQLitePCLRaw.core.dll": {}
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3/2.1.10": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- },
- "build": {
- "buildTransitive/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets": {}
- },
- "runtimeTargets": {
- "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a": {
- "assetType": "native",
- "rid": "browser-wasm"
- },
- "runtimes/linux-arm/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-arm"
- },
- "runtimes/linux-arm64/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-arm64"
- },
- "runtimes/linux-armel/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-armel"
- },
- "runtimes/linux-mips64/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-mips64"
- },
- "runtimes/linux-musl-arm/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-musl-arm"
- },
- "runtimes/linux-musl-arm64/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-musl-arm64"
- },
- "runtimes/linux-musl-s390x/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-musl-s390x"
- },
- "runtimes/linux-musl-x64/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-musl-x64"
- },
- "runtimes/linux-ppc64le/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-ppc64le"
- },
- "runtimes/linux-s390x/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-s390x"
- },
- "runtimes/linux-x64/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-x64"
- },
- "runtimes/linux-x86/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-x86"
- },
- "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": {
- "assetType": "native",
- "rid": "maccatalyst-arm64"
- },
- "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": {
- "assetType": "native",
- "rid": "maccatalyst-x64"
- },
- "runtimes/osx-arm64/native/libe_sqlite3.dylib": {
- "assetType": "native",
- "rid": "osx-arm64"
- },
- "runtimes/osx-x64/native/libe_sqlite3.dylib": {
- "assetType": "native",
- "rid": "osx-x64"
- },
- "runtimes/win-arm/native/e_sqlite3.dll": {
- "assetType": "native",
- "rid": "win-arm"
- },
- "runtimes/win-arm64/native/e_sqlite3.dll": {
- "assetType": "native",
- "rid": "win-arm64"
- },
- "runtimes/win-x64/native/e_sqlite3.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x86/native/e_sqlite3.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "SQLitePCLRaw.provider.e_sqlite3/2.1.10": {
- "type": "package",
- "dependencies": {
- "SQLitePCLRaw.core": "2.1.10"
- },
- "compile": {
- "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {}
- },
- "runtime": {
- "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {}
- }
- },
- "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/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.CodeDom.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.CodeDom.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Collections.Immutable/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Composition/7.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "7.0.0",
- "System.Composition.Convention": "7.0.0",
- "System.Composition.Hosting": "7.0.0",
- "System.Composition.Runtime": "7.0.0",
- "System.Composition.TypedParts": "7.0.0"
- },
- "compile": {
- "lib/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Composition.AttributedModel/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/System.Composition.AttributedModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Composition.AttributedModel.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Composition.Convention/7.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "7.0.0"
- },
- "compile": {
- "lib/net7.0/System.Composition.Convention.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Composition.Convention.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Composition.Hosting/7.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.Runtime": "7.0.0"
- },
- "compile": {
- "lib/net7.0/System.Composition.Hosting.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Composition.Hosting.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Composition.Runtime/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/System.Composition.Runtime.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Composition.Runtime.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Composition.TypedParts/7.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "7.0.0",
- "System.Composition.Hosting": "7.0.0",
- "System.Composition.Runtime": "7.0.0"
- },
- "compile": {
- "lib/net7.0/System.Composition.TypedParts.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Composition.TypedParts.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.EventLog": "8.0.0",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "compile": {
- "lib/net8.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Data.DataSetExtensions/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {}
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "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.Diagnostics.EventLog/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.Diagnostics.EventLog.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Diagnostics.EventLog.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
- "assetType": "runtime",
- "rid": "win"
- },
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Formats.Asn1/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Formats.Asn1.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Formats.Asn1.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.IdentityModel.Tokens.Jwt/6.35.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
- "Microsoft.IdentityModel.Tokens": "6.35.0"
- },
- "compile": {
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.IO.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.Pipelines/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.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/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/System.Reflection.Emit.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {}
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
- }
- },
- "System.Reflection.Metadata/8.0.0": {
- "type": "package",
- "dependencies": {
- "System.Collections.Immutable": "8.0.0"
- },
- "compile": {
- "lib/net8.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Reflection.MetadataLoadContext/8.0.0": {
- "type": "package",
- "dependencies": {
- "System.Collections.Immutable": "8.0.0",
- "System.Reflection.Metadata": "8.0.0"
- },
- "compile": {
- "lib/net8.0/System.Reflection.MetadataLoadContext.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Reflection.MetadataLoadContext.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Caching/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.Runtime.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- }
- },
- "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.Pkcs/6.0.4": {
- "type": "package",
- "dependencies": {
- "System.Formats.Asn1": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.ProtectedData/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "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/9.0.2": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/System.Text.Json.targets": {}
- }
- },
- "System.Threading.Channels/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/System.Threading.Channels.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Threading.Channels.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Threading.Tasks.Dataflow/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.Threading.Tasks.Dataflow.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Threading.Tasks.Dataflow.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "xunit/2.9.2": {
- "type": "package",
- "dependencies": {
- "xunit.analyzers": "1.16.0",
- "xunit.assert": "2.9.2",
- "xunit.core": "[2.9.2]"
- }
- },
- "xunit.abstractions/2.0.3": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/xunit.abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/xunit.abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "xunit.analyzers/1.16.0": {
- "type": "package"
- },
- "xunit.assert/2.9.2": {
- "type": "package",
- "compile": {
- "lib/net6.0/xunit.assert.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/xunit.assert.dll": {
- "related": ".xml"
- }
- }
- },
- "xunit.core/2.9.2": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.9.2]",
- "xunit.extensibility.execution": "[2.9.2]"
- },
- "build": {
- "build/xunit.core.props": {},
- "build/xunit.core.targets": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/xunit.core.props": {},
- "buildMultiTargeting/xunit.core.targets": {}
- }
- },
- "xunit.extensibility.core/2.9.2": {
- "type": "package",
- "dependencies": {
- "xunit.abstractions": "2.0.3"
- },
- "compile": {
- "lib/netstandard1.1/xunit.core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.1/xunit.core.dll": {
- "related": ".xml"
- }
- }
- },
- "xunit.extensibility.execution/2.9.2": {
- "type": "package",
- "dependencies": {
- "xunit.extensibility.core": "[2.9.2]"
- },
- "compile": {
- "lib/netstandard1.1/xunit.execution.dotnet.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.1/xunit.execution.dotnet.dll": {
- "related": ".xml"
- }
- }
- },
- "xunit.runner.visualstudio/2.8.2": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {}
- },
- "runtime": {
- "lib/net6.0/_._": {}
- },
- "build": {
- "build/net6.0/xunit.runner.visualstudio.props": {}
- }
- },
- "CrowdedBackend/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v9.0",
- "dependencies": {
- "MathNet.Numerics": "5.0.0",
- "Microsoft.AspNetCore.OpenApi": "9.0.2",
- "Microsoft.EntityFrameworkCore": "9.0.2",
- "Microsoft.EntityFrameworkCore.SqlServer": "9.0.2",
- "Microsoft.EntityFrameworkCore.Sqlite": "9.0.2",
- "Microsoft.VisualStudio.Web.CodeGeneration.Design": "9.0.0",
- "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.3",
- "SkiaSharp": "3.116.1",
- "System.Linq": "4.3.0",
- "pythonnet": "3.0.5"
- },
- "compile": {
- "bin/placeholder/CrowdedBackend.dll": {}
- },
- "runtime": {
- "bin/placeholder/CrowdedBackend.dll": {}
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- }
- }
- },
- "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"
- ]
- },
- "coverlet.collector/6.0.2": {
- "sha512": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==",
- "type": "package",
- "path": "coverlet.collector/6.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "VSTestIntegration.md",
- "build/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
- "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
- "build/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
- "build/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "build/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
- "build/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
- "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
- "build/netstandard2.0/Mono.Cecil.Mdb.dll",
- "build/netstandard2.0/Mono.Cecil.Pdb.dll",
- "build/netstandard2.0/Mono.Cecil.Rocks.dll",
- "build/netstandard2.0/Mono.Cecil.dll",
- "build/netstandard2.0/Newtonsoft.Json.dll",
- "build/netstandard2.0/NuGet.Frameworks.dll",
- "build/netstandard2.0/NuGet.Versioning.dll",
- "build/netstandard2.0/System.Buffers.dll",
- "build/netstandard2.0/System.Collections.Immutable.dll",
- "build/netstandard2.0/System.Memory.dll",
- "build/netstandard2.0/System.Numerics.Vectors.dll",
- "build/netstandard2.0/System.Reflection.Metadata.dll",
- "build/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "build/netstandard2.0/System.Text.Encodings.Web.dll",
- "build/netstandard2.0/System.Text.Json.dll",
- "build/netstandard2.0/System.Threading.Tasks.Extensions.dll",
- "build/netstandard2.0/coverlet.collector.deps.json",
- "build/netstandard2.0/coverlet.collector.dll",
- "build/netstandard2.0/coverlet.collector.pdb",
- "build/netstandard2.0/coverlet.collector.targets",
- "build/netstandard2.0/coverlet.core.dll",
- "build/netstandard2.0/coverlet.core.pdb",
- "build/netstandard2.0/coverlet.core.xml",
- "build/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "coverlet-icon.png",
- "coverlet.collector.6.0.2.nupkg.sha512",
- "coverlet.collector.nuspec"
- ]
- },
- "Humanizer/2.14.1": {
- "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==",
- "type": "package",
- "path": "humanizer/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.2.14.1.nupkg.sha512",
- "humanizer.nuspec",
- "logo.png"
- ]
- },
- "Humanizer.Core/2.14.1": {
- "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
- "type": "package",
- "path": "humanizer.core/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.2.14.1.nupkg.sha512",
- "humanizer.core.nuspec",
- "lib/net6.0/Humanizer.dll",
- "lib/net6.0/Humanizer.xml",
- "lib/netstandard1.0/Humanizer.dll",
- "lib/netstandard1.0/Humanizer.xml",
- "lib/netstandard2.0/Humanizer.dll",
- "lib/netstandard2.0/Humanizer.xml",
- "logo.png"
- ]
- },
- "Humanizer.Core.af/2.14.1": {
- "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==",
- "type": "package",
- "path": "humanizer.core.af/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.af.2.14.1.nupkg.sha512",
- "humanizer.core.af.nuspec",
- "lib/net6.0/af/Humanizer.resources.dll",
- "lib/netstandard1.0/af/Humanizer.resources.dll",
- "lib/netstandard2.0/af/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ar/2.14.1": {
- "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==",
- "type": "package",
- "path": "humanizer.core.ar/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ar.2.14.1.nupkg.sha512",
- "humanizer.core.ar.nuspec",
- "lib/net6.0/ar/Humanizer.resources.dll",
- "lib/netstandard1.0/ar/Humanizer.resources.dll",
- "lib/netstandard2.0/ar/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.az/2.14.1": {
- "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==",
- "type": "package",
- "path": "humanizer.core.az/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.az.2.14.1.nupkg.sha512",
- "humanizer.core.az.nuspec",
- "lib/net6.0/az/Humanizer.resources.dll",
- "lib/netstandard1.0/az/Humanizer.resources.dll",
- "lib/netstandard2.0/az/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.bg/2.14.1": {
- "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==",
- "type": "package",
- "path": "humanizer.core.bg/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.bg.2.14.1.nupkg.sha512",
- "humanizer.core.bg.nuspec",
- "lib/net6.0/bg/Humanizer.resources.dll",
- "lib/netstandard1.0/bg/Humanizer.resources.dll",
- "lib/netstandard2.0/bg/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.bn-BD/2.14.1": {
- "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==",
- "type": "package",
- "path": "humanizer.core.bn-bd/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.bn-bd.2.14.1.nupkg.sha512",
- "humanizer.core.bn-bd.nuspec",
- "lib/net6.0/bn-BD/Humanizer.resources.dll",
- "lib/netstandard1.0/bn-BD/Humanizer.resources.dll",
- "lib/netstandard2.0/bn-BD/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.cs/2.14.1": {
- "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==",
- "type": "package",
- "path": "humanizer.core.cs/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.cs.2.14.1.nupkg.sha512",
- "humanizer.core.cs.nuspec",
- "lib/net6.0/cs/Humanizer.resources.dll",
- "lib/netstandard1.0/cs/Humanizer.resources.dll",
- "lib/netstandard2.0/cs/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.da/2.14.1": {
- "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==",
- "type": "package",
- "path": "humanizer.core.da/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.da.2.14.1.nupkg.sha512",
- "humanizer.core.da.nuspec",
- "lib/net6.0/da/Humanizer.resources.dll",
- "lib/netstandard1.0/da/Humanizer.resources.dll",
- "lib/netstandard2.0/da/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.de/2.14.1": {
- "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==",
- "type": "package",
- "path": "humanizer.core.de/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.de.2.14.1.nupkg.sha512",
- "humanizer.core.de.nuspec",
- "lib/net6.0/de/Humanizer.resources.dll",
- "lib/netstandard1.0/de/Humanizer.resources.dll",
- "lib/netstandard2.0/de/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.el/2.14.1": {
- "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==",
- "type": "package",
- "path": "humanizer.core.el/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.el.2.14.1.nupkg.sha512",
- "humanizer.core.el.nuspec",
- "lib/net6.0/el/Humanizer.resources.dll",
- "lib/netstandard1.0/el/Humanizer.resources.dll",
- "lib/netstandard2.0/el/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.es/2.14.1": {
- "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==",
- "type": "package",
- "path": "humanizer.core.es/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.es.2.14.1.nupkg.sha512",
- "humanizer.core.es.nuspec",
- "lib/net6.0/es/Humanizer.resources.dll",
- "lib/netstandard1.0/es/Humanizer.resources.dll",
- "lib/netstandard2.0/es/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.fa/2.14.1": {
- "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==",
- "type": "package",
- "path": "humanizer.core.fa/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.fa.2.14.1.nupkg.sha512",
- "humanizer.core.fa.nuspec",
- "lib/net6.0/fa/Humanizer.resources.dll",
- "lib/netstandard1.0/fa/Humanizer.resources.dll",
- "lib/netstandard2.0/fa/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.fi-FI/2.14.1": {
- "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==",
- "type": "package",
- "path": "humanizer.core.fi-fi/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.fi-fi.2.14.1.nupkg.sha512",
- "humanizer.core.fi-fi.nuspec",
- "lib/net6.0/fi-FI/Humanizer.resources.dll",
- "lib/netstandard1.0/fi-FI/Humanizer.resources.dll",
- "lib/netstandard2.0/fi-FI/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.fr/2.14.1": {
- "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==",
- "type": "package",
- "path": "humanizer.core.fr/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.fr.2.14.1.nupkg.sha512",
- "humanizer.core.fr.nuspec",
- "lib/net6.0/fr/Humanizer.resources.dll",
- "lib/netstandard1.0/fr/Humanizer.resources.dll",
- "lib/netstandard2.0/fr/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.fr-BE/2.14.1": {
- "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==",
- "type": "package",
- "path": "humanizer.core.fr-be/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.fr-be.2.14.1.nupkg.sha512",
- "humanizer.core.fr-be.nuspec",
- "lib/net6.0/fr-BE/Humanizer.resources.dll",
- "lib/netstandard1.0/fr-BE/Humanizer.resources.dll",
- "lib/netstandard2.0/fr-BE/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.he/2.14.1": {
- "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==",
- "type": "package",
- "path": "humanizer.core.he/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.he.2.14.1.nupkg.sha512",
- "humanizer.core.he.nuspec",
- "lib/net6.0/he/Humanizer.resources.dll",
- "lib/netstandard1.0/he/Humanizer.resources.dll",
- "lib/netstandard2.0/he/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.hr/2.14.1": {
- "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==",
- "type": "package",
- "path": "humanizer.core.hr/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.hr.2.14.1.nupkg.sha512",
- "humanizer.core.hr.nuspec",
- "lib/net6.0/hr/Humanizer.resources.dll",
- "lib/netstandard1.0/hr/Humanizer.resources.dll",
- "lib/netstandard2.0/hr/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.hu/2.14.1": {
- "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==",
- "type": "package",
- "path": "humanizer.core.hu/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.hu.2.14.1.nupkg.sha512",
- "humanizer.core.hu.nuspec",
- "lib/net6.0/hu/Humanizer.resources.dll",
- "lib/netstandard1.0/hu/Humanizer.resources.dll",
- "lib/netstandard2.0/hu/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.hy/2.14.1": {
- "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==",
- "type": "package",
- "path": "humanizer.core.hy/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.hy.2.14.1.nupkg.sha512",
- "humanizer.core.hy.nuspec",
- "lib/net6.0/hy/Humanizer.resources.dll",
- "lib/netstandard1.0/hy/Humanizer.resources.dll",
- "lib/netstandard2.0/hy/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.id/2.14.1": {
- "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==",
- "type": "package",
- "path": "humanizer.core.id/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.id.2.14.1.nupkg.sha512",
- "humanizer.core.id.nuspec",
- "lib/net6.0/id/Humanizer.resources.dll",
- "lib/netstandard1.0/id/Humanizer.resources.dll",
- "lib/netstandard2.0/id/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.is/2.14.1": {
- "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==",
- "type": "package",
- "path": "humanizer.core.is/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.is.2.14.1.nupkg.sha512",
- "humanizer.core.is.nuspec",
- "lib/net6.0/is/Humanizer.resources.dll",
- "lib/netstandard1.0/is/Humanizer.resources.dll",
- "lib/netstandard2.0/is/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.it/2.14.1": {
- "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==",
- "type": "package",
- "path": "humanizer.core.it/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.it.2.14.1.nupkg.sha512",
- "humanizer.core.it.nuspec",
- "lib/net6.0/it/Humanizer.resources.dll",
- "lib/netstandard1.0/it/Humanizer.resources.dll",
- "lib/netstandard2.0/it/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ja/2.14.1": {
- "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==",
- "type": "package",
- "path": "humanizer.core.ja/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ja.2.14.1.nupkg.sha512",
- "humanizer.core.ja.nuspec",
- "lib/net6.0/ja/Humanizer.resources.dll",
- "lib/netstandard1.0/ja/Humanizer.resources.dll",
- "lib/netstandard2.0/ja/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ko-KR/2.14.1": {
- "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==",
- "type": "package",
- "path": "humanizer.core.ko-kr/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ko-kr.2.14.1.nupkg.sha512",
- "humanizer.core.ko-kr.nuspec",
- "lib/netstandard1.0/ko-KR/Humanizer.resources.dll",
- "lib/netstandard2.0/ko-KR/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ku/2.14.1": {
- "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==",
- "type": "package",
- "path": "humanizer.core.ku/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ku.2.14.1.nupkg.sha512",
- "humanizer.core.ku.nuspec",
- "lib/net6.0/ku/Humanizer.resources.dll",
- "lib/netstandard1.0/ku/Humanizer.resources.dll",
- "lib/netstandard2.0/ku/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.lv/2.14.1": {
- "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==",
- "type": "package",
- "path": "humanizer.core.lv/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.lv.2.14.1.nupkg.sha512",
- "humanizer.core.lv.nuspec",
- "lib/net6.0/lv/Humanizer.resources.dll",
- "lib/netstandard1.0/lv/Humanizer.resources.dll",
- "lib/netstandard2.0/lv/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ms-MY/2.14.1": {
- "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==",
- "type": "package",
- "path": "humanizer.core.ms-my/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ms-my.2.14.1.nupkg.sha512",
- "humanizer.core.ms-my.nuspec",
- "lib/netstandard1.0/ms-MY/Humanizer.resources.dll",
- "lib/netstandard2.0/ms-MY/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.mt/2.14.1": {
- "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==",
- "type": "package",
- "path": "humanizer.core.mt/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.mt.2.14.1.nupkg.sha512",
- "humanizer.core.mt.nuspec",
- "lib/netstandard1.0/mt/Humanizer.resources.dll",
- "lib/netstandard2.0/mt/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.nb/2.14.1": {
- "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==",
- "type": "package",
- "path": "humanizer.core.nb/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.nb.2.14.1.nupkg.sha512",
- "humanizer.core.nb.nuspec",
- "lib/net6.0/nb/Humanizer.resources.dll",
- "lib/netstandard1.0/nb/Humanizer.resources.dll",
- "lib/netstandard2.0/nb/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.nb-NO/2.14.1": {
- "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==",
- "type": "package",
- "path": "humanizer.core.nb-no/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.nb-no.2.14.1.nupkg.sha512",
- "humanizer.core.nb-no.nuspec",
- "lib/net6.0/nb-NO/Humanizer.resources.dll",
- "lib/netstandard1.0/nb-NO/Humanizer.resources.dll",
- "lib/netstandard2.0/nb-NO/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.nl/2.14.1": {
- "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==",
- "type": "package",
- "path": "humanizer.core.nl/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.nl.2.14.1.nupkg.sha512",
- "humanizer.core.nl.nuspec",
- "lib/net6.0/nl/Humanizer.resources.dll",
- "lib/netstandard1.0/nl/Humanizer.resources.dll",
- "lib/netstandard2.0/nl/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.pl/2.14.1": {
- "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==",
- "type": "package",
- "path": "humanizer.core.pl/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.pl.2.14.1.nupkg.sha512",
- "humanizer.core.pl.nuspec",
- "lib/net6.0/pl/Humanizer.resources.dll",
- "lib/netstandard1.0/pl/Humanizer.resources.dll",
- "lib/netstandard2.0/pl/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.pt/2.14.1": {
- "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==",
- "type": "package",
- "path": "humanizer.core.pt/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.pt.2.14.1.nupkg.sha512",
- "humanizer.core.pt.nuspec",
- "lib/net6.0/pt/Humanizer.resources.dll",
- "lib/netstandard1.0/pt/Humanizer.resources.dll",
- "lib/netstandard2.0/pt/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ro/2.14.1": {
- "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==",
- "type": "package",
- "path": "humanizer.core.ro/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ro.2.14.1.nupkg.sha512",
- "humanizer.core.ro.nuspec",
- "lib/net6.0/ro/Humanizer.resources.dll",
- "lib/netstandard1.0/ro/Humanizer.resources.dll",
- "lib/netstandard2.0/ro/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.ru/2.14.1": {
- "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==",
- "type": "package",
- "path": "humanizer.core.ru/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.ru.2.14.1.nupkg.sha512",
- "humanizer.core.ru.nuspec",
- "lib/net6.0/ru/Humanizer.resources.dll",
- "lib/netstandard1.0/ru/Humanizer.resources.dll",
- "lib/netstandard2.0/ru/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.sk/2.14.1": {
- "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==",
- "type": "package",
- "path": "humanizer.core.sk/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.sk.2.14.1.nupkg.sha512",
- "humanizer.core.sk.nuspec",
- "lib/net6.0/sk/Humanizer.resources.dll",
- "lib/netstandard1.0/sk/Humanizer.resources.dll",
- "lib/netstandard2.0/sk/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.sl/2.14.1": {
- "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==",
- "type": "package",
- "path": "humanizer.core.sl/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.sl.2.14.1.nupkg.sha512",
- "humanizer.core.sl.nuspec",
- "lib/net6.0/sl/Humanizer.resources.dll",
- "lib/netstandard1.0/sl/Humanizer.resources.dll",
- "lib/netstandard2.0/sl/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.sr/2.14.1": {
- "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==",
- "type": "package",
- "path": "humanizer.core.sr/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.sr.2.14.1.nupkg.sha512",
- "humanizer.core.sr.nuspec",
- "lib/net6.0/sr/Humanizer.resources.dll",
- "lib/netstandard1.0/sr/Humanizer.resources.dll",
- "lib/netstandard2.0/sr/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.sr-Latn/2.14.1": {
- "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==",
- "type": "package",
- "path": "humanizer.core.sr-latn/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.sr-latn.2.14.1.nupkg.sha512",
- "humanizer.core.sr-latn.nuspec",
- "lib/net6.0/sr-Latn/Humanizer.resources.dll",
- "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll",
- "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.sv/2.14.1": {
- "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==",
- "type": "package",
- "path": "humanizer.core.sv/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.sv.2.14.1.nupkg.sha512",
- "humanizer.core.sv.nuspec",
- "lib/net6.0/sv/Humanizer.resources.dll",
- "lib/netstandard1.0/sv/Humanizer.resources.dll",
- "lib/netstandard2.0/sv/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.th-TH/2.14.1": {
- "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==",
- "type": "package",
- "path": "humanizer.core.th-th/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.th-th.2.14.1.nupkg.sha512",
- "humanizer.core.th-th.nuspec",
- "lib/netstandard1.0/th-TH/Humanizer.resources.dll",
- "lib/netstandard2.0/th-TH/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.tr/2.14.1": {
- "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==",
- "type": "package",
- "path": "humanizer.core.tr/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.tr.2.14.1.nupkg.sha512",
- "humanizer.core.tr.nuspec",
- "lib/net6.0/tr/Humanizer.resources.dll",
- "lib/netstandard1.0/tr/Humanizer.resources.dll",
- "lib/netstandard2.0/tr/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.uk/2.14.1": {
- "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==",
- "type": "package",
- "path": "humanizer.core.uk/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.uk.2.14.1.nupkg.sha512",
- "humanizer.core.uk.nuspec",
- "lib/net6.0/uk/Humanizer.resources.dll",
- "lib/netstandard1.0/uk/Humanizer.resources.dll",
- "lib/netstandard2.0/uk/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.uz-Cyrl-UZ/2.14.1": {
- "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==",
- "type": "package",
- "path": "humanizer.core.uz-cyrl-uz/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512",
- "humanizer.core.uz-cyrl-uz.nuspec",
- "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll",
- "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll",
- "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.uz-Latn-UZ/2.14.1": {
- "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==",
- "type": "package",
- "path": "humanizer.core.uz-latn-uz/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512",
- "humanizer.core.uz-latn-uz.nuspec",
- "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll",
- "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll",
- "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.vi/2.14.1": {
- "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==",
- "type": "package",
- "path": "humanizer.core.vi/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.vi.2.14.1.nupkg.sha512",
- "humanizer.core.vi.nuspec",
- "lib/net6.0/vi/Humanizer.resources.dll",
- "lib/netstandard1.0/vi/Humanizer.resources.dll",
- "lib/netstandard2.0/vi/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.zh-CN/2.14.1": {
- "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==",
- "type": "package",
- "path": "humanizer.core.zh-cn/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.zh-cn.2.14.1.nupkg.sha512",
- "humanizer.core.zh-cn.nuspec",
- "lib/net6.0/zh-CN/Humanizer.resources.dll",
- "lib/netstandard1.0/zh-CN/Humanizer.resources.dll",
- "lib/netstandard2.0/zh-CN/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.zh-Hans/2.14.1": {
- "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==",
- "type": "package",
- "path": "humanizer.core.zh-hans/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.zh-hans.2.14.1.nupkg.sha512",
- "humanizer.core.zh-hans.nuspec",
- "lib/net6.0/zh-Hans/Humanizer.resources.dll",
- "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll",
- "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "Humanizer.Core.zh-Hant/2.14.1": {
- "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==",
- "type": "package",
- "path": "humanizer.core.zh-hant/2.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "humanizer.core.zh-hant.2.14.1.nupkg.sha512",
- "humanizer.core.zh-hant.nuspec",
- "lib/net6.0/zh-Hant/Humanizer.resources.dll",
- "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll",
- "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll",
- "logo.png"
- ]
- },
- "MathNet.Numerics/5.0.0": {
- "sha512": "pg1W2VwaEQMAiTpGK840hZgzavnqjlCMTVSbtVCXVyT+7AX4mc1o89SPv4TBlAjhgCOo9c1Y+jZ5m3ti2YgGgA==",
- "type": "package",
- "path": "mathnet.numerics/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icon.png",
- "lib/net461/MathNet.Numerics.dll",
- "lib/net461/MathNet.Numerics.xml",
- "lib/net48/MathNet.Numerics.dll",
- "lib/net48/MathNet.Numerics.xml",
- "lib/net5.0/MathNet.Numerics.dll",
- "lib/net5.0/MathNet.Numerics.xml",
- "lib/net6.0/MathNet.Numerics.dll",
- "lib/net6.0/MathNet.Numerics.xml",
- "lib/netstandard2.0/MathNet.Numerics.dll",
- "lib/netstandard2.0/MathNet.Numerics.xml",
- "mathnet.numerics.5.0.0.nupkg.sha512",
- "mathnet.numerics.nuspec"
- ]
- },
- "Microsoft.AspNetCore.OpenApi/9.0.2": {
- "sha512": "JUndpjRNdG8GvzBLH/J4hen4ehWaPcshtiQ6+sUs1Bcj3a7dOsmWpDloDlpPeMOVSlhHwUJ3Xld0ClZjsFLgFQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.openapi/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll",
- "lib/net9.0/Microsoft.AspNetCore.OpenApi.xml",
- "microsoft.aspnetcore.openapi.9.0.2.nupkg.sha512",
- "microsoft.aspnetcore.openapi.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Razor.Language/6.0.24": {
- "sha512": "kBL6ljTREp/3fk8EKN27mrPy3WTqWUjiqCkKFlCKHUKRO3/9rAasKizX3vPWy4ZTcNsIPmVWUHwjDFmiW4MyNA==",
- "type": "package",
- "path": "microsoft.aspnetcore.razor.language/6.0.24",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
- "microsoft.aspnetcore.razor.language.6.0.24.nupkg.sha512",
- "microsoft.aspnetcore.razor.language.nuspec"
- ]
- },
- "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
- "sha512": "3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==",
- "type": "package",
- "path": "microsoft.bcl.asyncinterfaces/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
- "buildTransitive/net462/_._",
- "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/net462/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.7.0.0.nupkg.sha512",
- "microsoft.bcl.asyncinterfaces.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Build/17.10.4": {
- "sha512": "ZmGA8vhVXFzC4oo48ybQKlEybVKd0Ntfdr+Enqrn5ES1R6e/krIK9hLk0W33xuT0/G6QYd3YdhJZh+Xle717Ag==",
- "type": "package",
- "path": "microsoft.build/17.10.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "README.md",
- "lib/net472/Microsoft.Build.dll",
- "lib/net472/Microsoft.Build.pdb",
- "lib/net472/Microsoft.Build.xml",
- "lib/net8.0/Microsoft.Build.dll",
- "lib/net8.0/Microsoft.Build.pdb",
- "lib/net8.0/Microsoft.Build.xml",
- "microsoft.build.17.10.4.nupkg.sha512",
- "microsoft.build.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net472/Microsoft.Build.dll",
- "ref/net472/Microsoft.Build.xml",
- "ref/net8.0/Microsoft.Build.dll",
- "ref/net8.0/Microsoft.Build.xml"
- ]
- },
- "Microsoft.Build.Framework/17.10.4": {
- "sha512": "4qXCwNOXBR1dyCzuks9SwTwFJQO/xmf2wcMislotDWJu7MN/r3xDNoU8Ae5QmKIHPaLG1xmfDkYS7qBVzxmeKw==",
- "type": "package",
- "path": "microsoft.build.framework/17.10.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "README.md",
- "lib/net472/Microsoft.Build.Framework.dll",
- "lib/net472/Microsoft.Build.Framework.pdb",
- "lib/net472/Microsoft.Build.Framework.xml",
- "lib/net8.0/Microsoft.Build.Framework.dll",
- "lib/net8.0/Microsoft.Build.Framework.pdb",
- "lib/net8.0/Microsoft.Build.Framework.xml",
- "microsoft.build.framework.17.10.4.nupkg.sha512",
- "microsoft.build.framework.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net472/Microsoft.Build.Framework.dll",
- "ref/net472/Microsoft.Build.Framework.xml",
- "ref/net8.0/Microsoft.Build.Framework.dll",
- "ref/net8.0/Microsoft.Build.Framework.xml",
- "ref/netstandard2.0/Microsoft.Build.Framework.dll",
- "ref/netstandard2.0/Microsoft.Build.Framework.xml"
- ]
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
- "sha512": "AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
- "type": "package",
- "path": "microsoft.codeanalysis.analyzers/3.3.4",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.txt",
- "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",
- "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props",
- "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets",
- "buildTransitive/config/analysislevel_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_all.globalconfig",
- "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_default.globalconfig",
- "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_none.globalconfig",
- "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_all.globalconfig",
- "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_default.globalconfig",
- "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_minimum.globalconfig",
- "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_none.globalconfig",
- "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_3_recommended.globalconfig",
- "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_4_3_all.globalconfig",
- "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_4_3_default.globalconfig",
- "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_4_3_none.globalconfig",
- "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevel_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_all.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_default.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_none.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig",
- "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig",
- "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig",
- "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.4.nupkg.sha512",
- "microsoft.codeanalysis.analyzers.nuspec",
- "rulesets/AllRulesDefault.ruleset",
- "rulesets/AllRulesDisabled.ruleset",
- "rulesets/AllRulesEnabled.ruleset",
- "rulesets/CorrectnessRulesDefault.ruleset",
- "rulesets/CorrectnessRulesEnabled.ruleset",
- "rulesets/DataflowRulesDefault.ruleset",
- "rulesets/DataflowRulesEnabled.ruleset",
- "rulesets/LibraryRulesDefault.ruleset",
- "rulesets/LibraryRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
- "rulesets/PortedFromFxCopRulesDefault.ruleset",
- "rulesets/PortedFromFxCopRulesEnabled.ruleset",
- "tools/install.ps1",
- "tools/uninstall.ps1"
- ]
- },
- "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
- "sha512": "gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==",
- "type": "package",
- "path": "microsoft.codeanalysis.analyzerutilities/3.3.0",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EULA.rtf",
- "ThirdPartyNotices.rtf",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.xml",
- "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512",
- "microsoft.codeanalysis.analyzerutilities.nuspec",
- "tools/install.ps1",
- "tools/uninstall.ps1"
- ]
- },
- "Microsoft.CodeAnalysis.Common/4.8.0": {
- "sha512": "/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==",
- "type": "package",
- "path": "microsoft.codeanalysis.common/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/net7.0/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.8.0.nupkg.sha512",
- "microsoft.codeanalysis.common.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp/4.8.0": {
- "sha512": "+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/net7.0/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.8.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": {
- "sha512": "Gpas3l8PE1xz1VDIJNMkYuoFPXtuALxybP04caXh9avC2a0elsoBdukndkJXVZgdKPwraf0a98s7tjqnEk5QIQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp.features/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
- "microsoft.codeanalysis.csharp.features.4.8.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.features.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
- "sha512": "3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/net7.0/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.8.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.workspaces.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Elfie/1.0.0": {
- "sha512": "r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==",
- "type": "package",
- "path": "microsoft.codeanalysis.elfie/1.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.CodeAnalysis.Elfie.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll",
- "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512",
- "microsoft.codeanalysis.elfie.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Features/4.8.0": {
- "sha512": "sCVzMtSETGE16KeScwwlVfxaKRbUMSf/cgRPRPMJuou37SLT7XkIBzJu4e7mlFTzpJbfalV5tOcKpUtLO3eJAg==",
- "type": "package",
- "path": "microsoft.codeanalysis.features/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.Features.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.Features.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.Features.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Features.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Features.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.Features.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
- "microsoft.codeanalysis.features.4.8.0.nupkg.sha512",
- "microsoft.codeanalysis.features.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Razor/6.0.24": {
- "sha512": "xIAjR6l/1PO2ILT6/lOGYfe8OzMqfqxh1lxFuM4Exluwc2sQhJw0kS7pEyJ0DE/UMYu6Jcdc53DmjOxQUDT2Pg==",
- "type": "package",
- "path": "microsoft.codeanalysis.razor/6.0.24",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
- "microsoft.codeanalysis.razor.6.0.24.nupkg.sha512",
- "microsoft.codeanalysis.razor.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": {
- "sha512": "ysiNNbAASVhV9wEd5oY2x99EwaVYtB13XZRjHsgWT/R1mQkxZF8jWsf7JWaZxD1+jNoz1QCQ6nbe+vr+6QvlFA==",
- "type": "package",
- "path": "microsoft.codeanalysis.scripting.common/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.Scripting.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.Scripting.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.Scripting.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Scripting.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.Scripting.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "microsoft.codeanalysis.scripting.common.4.8.0.nupkg.sha512",
- "microsoft.codeanalysis.scripting.common.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
- "sha512": "LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.workspaces.common/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/net7.0/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.8.0.nupkg.sha512",
- "microsoft.codeanalysis.workspaces.common.nuspec"
- ]
- },
- "Microsoft.CodeCoverage/17.11.1": {
- "sha512": "nPJqrcA5iX+Y0kqoT3a+pD/8lrW/V7ayqnEJQsTonSoPz59J8bmoQhcSN4G8+UJ64Hkuf0zuxnfuj2lkHOq4cA==",
- "type": "package",
- "path": "microsoft.codecoverage/17.11.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.txt",
- "build/netstandard2.0/CodeCoverage/CodeCoverage.config",
- "build/netstandard2.0/CodeCoverage/CodeCoverage.exe",
- "build/netstandard2.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config",
- "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe",
- "build/netstandard2.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config",
- "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll",
- "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll",
- "build/netstandard2.0/CodeCoverage/arm64/VanguardInstrumentationProfiler_arm64.config",
- "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll",
- "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll",
- "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll",
- "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
- "build/netstandard2.0/CodeCoverage/covrun32.dll",
- "build/netstandard2.0/CodeCoverage/msdia140.dll",
- "build/netstandard2.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config",
- "build/netstandard2.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so",
- "build/netstandard2.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so",
- "build/netstandard2.0/InstrumentationEngine/arm64/MicrosoftInstrumentationEngine_arm64.dll",
- "build/netstandard2.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config",
- "build/netstandard2.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib",
- "build/netstandard2.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib",
- "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config",
- "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so",
- "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so",
- "build/netstandard2.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll",
- "build/netstandard2.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll",
- "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll",
- "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll",
- "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll",
- "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll",
- "build/netstandard2.0/Microsoft.CodeCoverage.props",
- "build/netstandard2.0/Microsoft.CodeCoverage.targets",
- "build/netstandard2.0/Microsoft.DiaSymReader.dll",
- "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll",
- "build/netstandard2.0/Mono.Cecil.Pdb.dll",
- "build/netstandard2.0/Mono.Cecil.Rocks.dll",
- "build/netstandard2.0/Mono.Cecil.dll",
- "build/netstandard2.0/ThirdPartyNotices.txt",
- "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll",
- "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
- "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll",
- "microsoft.codecoverage.17.11.1.nupkg.sha512",
- "microsoft.codecoverage.nuspec"
- ]
- },
- "Microsoft.CSharp/4.7.0": {
- "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
- "type": "package",
- "path": "microsoft.csharp/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/Microsoft.CSharp.dll",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.3/Microsoft.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CSharp.xml",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/uap10.0.16299/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "microsoft.csharp.4.7.0.nupkg.sha512",
- "microsoft.csharp.nuspec",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/Microsoft.CSharp.dll",
- "ref/netcore50/Microsoft.CSharp.xml",
- "ref/netcore50/de/Microsoft.CSharp.xml",
- "ref/netcore50/es/Microsoft.CSharp.xml",
- "ref/netcore50/fr/Microsoft.CSharp.xml",
- "ref/netcore50/it/Microsoft.CSharp.xml",
- "ref/netcore50/ja/Microsoft.CSharp.xml",
- "ref/netcore50/ko/Microsoft.CSharp.xml",
- "ref/netcore50/ru/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.0/Microsoft.CSharp.dll",
- "ref/netstandard1.0/Microsoft.CSharp.xml",
- "ref/netstandard1.0/de/Microsoft.CSharp.xml",
- "ref/netstandard1.0/es/Microsoft.CSharp.xml",
- "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
- "ref/netstandard1.0/it/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
- "ref/netstandard2.0/Microsoft.CSharp.dll",
- "ref/netstandard2.0/Microsoft.CSharp.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/uap10.0.16299/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Data.SqlClient/5.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.Data.Sqlite.Core/9.0.2": {
- "sha512": "lJbaLhjWnnPfLhZrQXPri5F0pmlJXg68yCSf5aRM3qFF8WD7dT1jnQUuBd3YvT5s1VDOH9t/6filPcTIOwZR7Q==",
- "type": "package",
- "path": "microsoft.data.sqlite.core/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net6.0/Microsoft.Data.Sqlite.dll",
- "lib/net6.0/Microsoft.Data.Sqlite.xml",
- "lib/net8.0/Microsoft.Data.Sqlite.dll",
- "lib/net8.0/Microsoft.Data.Sqlite.xml",
- "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
- "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
- "microsoft.data.sqlite.core.9.0.2.nupkg.sha512",
- "microsoft.data.sqlite.core.nuspec"
- ]
- },
- "Microsoft.DiaSymReader/2.0.0": {
- "sha512": "QcZrCETsBJqy/vQpFtJc+jSXQ0K5sucQ6NUFbTNVHD4vfZZOwjZ/3sBzczkC4DityhD3AVO/+K/+9ioLs1AgRA==",
- "type": "package",
- "path": "microsoft.diasymreader/2.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/netstandard2.0/Microsoft.DiaSymReader.dll",
- "lib/netstandard2.0/Microsoft.DiaSymReader.pdb",
- "lib/netstandard2.0/Microsoft.DiaSymReader.xml",
- "microsoft.diasymreader.2.0.0.nupkg.sha512",
- "microsoft.diasymreader.nuspec"
- ]
- },
- "Microsoft.DotNet.Scaffolding.Shared/9.0.0": {
- "sha512": "9pfRsTzUANgI6J7nFjYip50ifcvmORjMmFByXmdYa//x8toziydhbg0cMylP1S2mRf4/96VKSAfpayYrO3m4Ww==",
- "type": "package",
- "path": "microsoft.dotnet.scaffolding.shared/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "NOTICE.txt",
- "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll",
- "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.xml",
- "microsoft.dotnet.scaffolding.shared.9.0.0.nupkg.sha512",
- "microsoft.dotnet.scaffolding.shared.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore/9.0.2": {
- "sha512": "P90ZuybgcpW32y985eOYxSoZ9IiL0UTYQlY0y1Pt1iHAnpZj/dQHREpSpry1RNvk8YjAeoAkWFdem5conqB9zQ==",
- "type": "package",
- "path": "microsoft.entityframeworkcore/9.0.2",
- "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.9.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Abstractions/9.0.2": {
- "sha512": "oVSjNSIYHsk0N66eqAWgDcyo9etEFbUswbz7SmlYR6nGp05byHrJAYM5N8U2aGWJWJI6WvIC2e4TXJgH6GZ6HQ==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.abstractions/9.0.2",
- "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.9.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.abstractions.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Analyzers/9.0.2": {
- "sha512": "w4jzX7XI+L3erVGzbHXpx64A3QaLXxqG3f1vPpGYYZGpxOIHkh7e4iLLD7cq4Ng1vjkwzWl5ZJp0Kj/nHsgFYg==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.analyzers/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
- "docs/PACKAGE.md",
- "microsoft.entityframeworkcore.analyzers.9.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.analyzers.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Relational/9.0.2": {
- "sha512": "r7O4N5uaM95InVSGUj7SMOQWN0f1PBF2Y30ow7Jg+pGX5GJCRVd/1fq83lQ50YMyq+EzyHac5o4CDQA2RsjKJQ==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.relational/9.0.2",
- "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.9.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.relational.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Sqlite/9.0.2": {
- "sha512": "6lz56eqIbhAfCiJ0s2XPKE2vPrC5h9nksXm90dKoSmoNs0alpCMqLRd4uz5D/83DVEcusyJ6Xb/2/81qZa71MA==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.sqlite/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net8.0/_._",
- "microsoft.entityframeworkcore.sqlite.9.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.sqlite.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/9.0.2": {
- "sha512": "YKu/XEvhMTtCT1Fd9aQbyt4Pk+WxgAzpBkZZ5jHu2Owu4bswzj3wfk9dw6gxdAp0JHkdLDjFvmODrP2kDSES9w==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.sqlite.core/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.xml",
- "microsoft.entityframeworkcore.sqlite.core.9.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.sqlite.core.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.SqlServer/9.0.2": {
- "sha512": "PN65soRvSajLqr1kVRvpUwqI/rmab4x/6TxcYzyUVvg52DMPxx4Y760EZ6OzFhJnilP/WFEEzdftHsTsHQ64IQ==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.sqlserver/9.0.2",
- "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.9.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.sqlserver.nuspec"
- ]
- },
- "Microsoft.Extensions.Caching.Abstractions/9.0.2": {
- "sha512": "a7QhA25n+BzSM5r5d7JznfyluMBGI7z3qyLlFviZ1Eiqv6DdiK27sLZdP/rpYirBM6UYAKxu5TbmfhIy13GN9A==",
- "type": "package",
- "path": "microsoft.extensions.caching.abstractions/9.0.2",
- "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/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "microsoft.extensions.caching.abstractions.9.0.2.nupkg.sha512",
- "microsoft.extensions.caching.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Caching.Memory/9.0.2": {
- "sha512": "AlEfp0DMz8E1h1Exi8LBrUCNmCYcGDfSM4F/uK1D1cYx/R3w0LVvlmjICqxqXTsy7BEZaCf5leRZY2FuPEiFaw==",
- "type": "package",
- "path": "microsoft.extensions.caching.memory/9.0.2",
- "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/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
- "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net9.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
- "microsoft.extensions.caching.memory.9.0.2.nupkg.sha512",
- "microsoft.extensions.caching.memory.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Configuration.Abstractions/9.0.2": {
- "sha512": "I0O/270E/lUNqbBxlRVjxKOMZyYjP88dpEgQTveml+h2lTzAP4vbawLVwjS9SC7lKaU893bwyyNz0IVJYsm9EA==",
- "type": "package",
- "path": "microsoft.extensions.configuration.abstractions/9.0.2",
- "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/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "microsoft.extensions.configuration.abstractions.9.0.2.nupkg.sha512",
- "microsoft.extensions.configuration.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/9.0.2": {
- "sha512": "ZffbJrskOZ40JTzcTyKwFHS5eACSWp2bUQBBApIgGV+es8RaTD4OxUG7XxFr3RIPLXtYQ1jQzF2DjKB5fZn7Qg==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
- "microsoft.extensions.dependencyinjection.9.0.2.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.2": {
- "sha512": "MNe7GSTBf3jQx5vYrXF0NZvn6l7hUKF6J54ENfAgCO8y6xjN1XUmKKWG464LP2ye6QqDiA1dkaWEZBYnhoZzjg==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/9.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/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.9.0.2.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyModel/9.0.2": {
- "sha512": "3ImbcbS68jy9sKr9Z9ToRbEEX0bvIRdb8zyf5ebtL9Av2CUCGHvaO5wsSXfRfAjr60Vrq0tlmNji9IzAxW6EOw==",
- "type": "package",
- "path": "microsoft.extensions.dependencymodel/9.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/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
- "lib/net462/Microsoft.Extensions.DependencyModel.dll",
- "lib/net462/Microsoft.Extensions.DependencyModel.xml",
- "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
- "lib/net9.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net9.0/Microsoft.Extensions.DependencyModel.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
- "microsoft.extensions.dependencymodel.9.0.2.nupkg.sha512",
- "microsoft.extensions.dependencymodel.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging/9.0.2": {
- "sha512": "loV/0UNpt2bD+6kCDzFALVE63CDtqzPeC0LAetkdhiEr/tTNbvOlQ7CBResH7BQBd3cikrwiBfaHdyHMFUlc2g==",
- "type": "package",
- "path": "microsoft.extensions.logging/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
- "lib/net462/Microsoft.Extensions.Logging.dll",
- "lib/net462/Microsoft.Extensions.Logging.xml",
- "lib/net8.0/Microsoft.Extensions.Logging.dll",
- "lib/net8.0/Microsoft.Extensions.Logging.xml",
- "lib/net9.0/Microsoft.Extensions.Logging.dll",
- "lib/net9.0/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
- "microsoft.extensions.logging.9.0.2.nupkg.sha512",
- "microsoft.extensions.logging.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/9.0.2": {
- "sha512": "dV9s2Lamc8jSaqhl2BQSPn/AryDIH2sSbQUyLitLXV0ROmsb+SROnn2cH939JFbsNrnf3mIM3GNRKT7P0ldwLg==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/9.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/net8.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/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "microsoft.extensions.logging.abstractions.9.0.2.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Options/9.0.2": {
- "sha512": "zr98z+AN8+isdmDmQRuEJ/DAKZGUTHmdv3t0ZzjHvNqvA44nAgkXE9kYtfoN6581iALChhVaSw2Owt+Z2lVbkQ==",
- "type": "package",
- "path": "microsoft.extensions.options/9.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/net8.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/net8.0/Microsoft.Extensions.Options.dll",
- "lib/net8.0/Microsoft.Extensions.Options.xml",
- "lib/net9.0/Microsoft.Extensions.Options.dll",
- "lib/net9.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
- "microsoft.extensions.options.9.0.2.nupkg.sha512",
- "microsoft.extensions.options.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Primitives/9.0.2": {
- "sha512": "puBMtKe/wLuYa7H6docBkLlfec+h8L35DXqsDKKJgW0WY5oCwJ3cBJKcDaZchv6knAyqOMfsl6VUbaR++E5LXA==",
- "type": "package",
- "path": "microsoft.extensions.primitives/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
- "lib/net462/Microsoft.Extensions.Primitives.dll",
- "lib/net462/Microsoft.Extensions.Primitives.xml",
- "lib/net8.0/Microsoft.Extensions.Primitives.dll",
- "lib/net8.0/Microsoft.Extensions.Primitives.xml",
- "lib/net9.0/Microsoft.Extensions.Primitives.dll",
- "lib/net9.0/Microsoft.Extensions.Primitives.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.9.0.2.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/6.35.0": {
- "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
- "type": "package",
- "path": "microsoft.identitymodel.abstractions/6.35.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
- "lib/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/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
- "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
- "microsoft.identitymodel.abstractions.nuspec"
- ]
- },
- "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
- "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==",
- "type": "package",
- "path": "microsoft.identitymodel.jsonwebtokens/6.35.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
- "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
- "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
- "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
- "lib/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/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
- "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512",
- "microsoft.identitymodel.jsonwebtokens.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Logging/6.35.0": {
- "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==",
- "type": "package",
- "path": "microsoft.identitymodel.logging/6.35.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Logging.dll",
- "lib/net45/Microsoft.IdentityModel.Logging.xml",
- "lib/net461/Microsoft.IdentityModel.Logging.dll",
- "lib/net461/Microsoft.IdentityModel.Logging.xml",
- "lib/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/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
- "microsoft.identitymodel.logging.6.35.0.nupkg.sha512",
- "microsoft.identitymodel.logging.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Protocols/6.35.0": {
- "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==",
- "type": "package",
- "path": "microsoft.identitymodel.protocols/6.35.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Protocols.dll",
- "lib/net45/Microsoft.IdentityModel.Protocols.xml",
- "lib/net461/Microsoft.IdentityModel.Protocols.dll",
- "lib/net461/Microsoft.IdentityModel.Protocols.xml",
- "lib/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/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
- "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512",
- "microsoft.identitymodel.protocols.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
- "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==",
- "type": "package",
- "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
- "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
- "lib/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/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
- "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512",
- "microsoft.identitymodel.protocols.openidconnect.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Tokens/6.35.0": {
- "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==",
- "type": "package",
- "path": "microsoft.identitymodel.tokens/6.35.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Tokens.dll",
- "lib/net45/Microsoft.IdentityModel.Tokens.xml",
- "lib/net461/Microsoft.IdentityModel.Tokens.dll",
- "lib/net461/Microsoft.IdentityModel.Tokens.xml",
- "lib/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/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
- "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
- "microsoft.identitymodel.tokens.nuspec"
- ]
- },
- "Microsoft.NET.StringTools/17.10.4": {
- "sha512": "wyABaqY+IHCMMSTQmcc3Ca6vbmg5BaEPgicnEgpll+4xyWZWlkQqUwafweUd9VAhBb4jqplMl6voUHQ6yfdUcg==",
- "type": "package",
- "path": "microsoft.net.stringtools/17.10.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "README.md",
- "lib/net472/Microsoft.NET.StringTools.dll",
- "lib/net472/Microsoft.NET.StringTools.pdb",
- "lib/net472/Microsoft.NET.StringTools.xml",
- "lib/net8.0/Microsoft.NET.StringTools.dll",
- "lib/net8.0/Microsoft.NET.StringTools.pdb",
- "lib/net8.0/Microsoft.NET.StringTools.xml",
- "lib/netstandard2.0/Microsoft.NET.StringTools.dll",
- "lib/netstandard2.0/Microsoft.NET.StringTools.pdb",
- "lib/netstandard2.0/Microsoft.NET.StringTools.xml",
- "microsoft.net.stringtools.17.10.4.nupkg.sha512",
- "microsoft.net.stringtools.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net472/Microsoft.NET.StringTools.dll",
- "ref/net472/Microsoft.NET.StringTools.xml",
- "ref/net8.0/Microsoft.NET.StringTools.dll",
- "ref/net8.0/Microsoft.NET.StringTools.xml",
- "ref/netstandard2.0/Microsoft.NET.StringTools.dll",
- "ref/netstandard2.0/Microsoft.NET.StringTools.xml"
- ]
- },
- "Microsoft.NET.Test.Sdk/17.11.1": {
- "sha512": "U3Ty4BaGoEu+T2bwSko9tWqWUOU16WzSFkq6U8zve75oRBMSLTBdMAZrVNNz1Tq12aCdDom9fcOcM9QZaFHqFg==",
- "type": "package",
- "path": "microsoft.net.test.sdk/17.11.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "build/net462/Microsoft.NET.Test.Sdk.props",
- "build/net462/Microsoft.NET.Test.Sdk.targets",
- "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs",
- "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs",
- "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb",
- "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props",
- "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets",
- "buildMultiTargeting/Microsoft.NET.Test.Sdk.props",
- "lib/net462/_._",
- "lib/netcoreapp3.1/_._",
- "microsoft.net.test.sdk.17.11.1.nupkg.sha512",
- "microsoft.net.test.sdk.nuspec"
- ]
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "type": "package",
- "path": "microsoft.netcore.platforms/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "microsoft.netcore.targets/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "microsoft.netcore.targets.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.OpenApi/1.6.17": {
- "sha512": "Le+kehlmrlQfuDFUt1zZ2dVwrhFQtKREdKBo+rexOwaCoYP0/qpgT9tLxCsZjsgR5Itk1UKPcbgO+FyaNid/bA==",
- "type": "package",
- "path": "microsoft.openapi/1.6.17",
- "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.17.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.TestPlatform.ObjectModel/17.11.1": {
- "sha512": "E2jZqAU6JeWEVsyOEOrSW1o1bpHLgb25ypvKNB/moBXPVsFYBPd/Jwi7OrYahG50J83LfHzezYI+GaEkpAotiA==",
- "type": "package",
- "path": "microsoft.testplatform.objectmodel/17.11.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll",
- "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll",
- "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
- "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll",
- "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
- "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll",
- "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll",
- "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
- "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll",
- "microsoft.testplatform.objectmodel.17.11.1.nupkg.sha512",
- "microsoft.testplatform.objectmodel.nuspec"
- ]
- },
- "Microsoft.TestPlatform.TestHost/17.11.1": {
- "sha512": "DnG+GOqJXO/CkoqlJWeDFTgPhqD/V6VqUIL3vINizCWZ3X+HshCtbbyDdSHQQEjrc2Sl/K3yaxX6s+5LFEdYuw==",
- "type": "package",
- "path": "microsoft.testplatform.testhost/17.11.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.txt",
- "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props",
- "build/netcoreapp3.1/x64/testhost.dll",
- "build/netcoreapp3.1/x64/testhost.exe",
- "build/netcoreapp3.1/x86/testhost.x86.dll",
- "build/netcoreapp3.1/x86/testhost.x86.exe",
- "lib/net462/_._",
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll",
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll",
- "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll",
- "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll",
- "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll",
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll",
- "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll",
- "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/testhost.deps.json",
- "lib/netcoreapp3.1/testhost.dll",
- "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/x64/msdia140.dll",
- "lib/netcoreapp3.1/x86/msdia140.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll",
- "microsoft.testplatform.testhost.17.11.1.nupkg.sha512",
- "microsoft.testplatform.testhost.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration/9.0.0": {
- "sha512": "W9ho78o/92MUDz04r7Al4dMx7djaqtSJE1cR7fMjy+Mm0StL5pVKXF24qnAFWJlip7KEpAa1QP35davXvuis9w==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "NOTICE.txt",
- "README.md",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
- "microsoft.visualstudio.web.codegeneration.9.0.0.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Core/9.0.0": {
- "sha512": "1VIEZs8DNnefMa0eVDZucz/dk28Sg0QRiNiRJj7SdU8E6UiNJxnkzA748aqA6Qqi8OMTHTBKhzx0Hj9ykIi6/Q==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.core/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "NOTICE.txt",
- "README.md",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
- "microsoft.visualstudio.web.codegeneration.core.9.0.0.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.core.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Design/9.0.0": {
- "sha512": "nO5MUL3iC0WjtAVea5d4v6kVcoL9ae/PnkC6NeEJhWazHKdKj7xfv6D2QvBx8uCIj8FUu9QpvvdN6m/xMp//EQ==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.design/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "NOTICE.txt",
- "README.md",
- "lib/net8.0/dotnet-aspnet-codegenerator-design.dll",
- "lib/net8.0/dotnet-aspnet-codegenerator-design.xml",
- "microsoft.visualstudio.web.codegeneration.design.9.0.0.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.design.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/9.0.0": {
- "sha512": "F4+A6CaXmof/QoeWpqaMMeoVinfUSIMKa5xLOrwsZxGfYl6Qryhb06bkJ8yJaF05WefMM/wnj73oI3Ms2bBh7g==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "NOTICE.txt",
- "README.md",
- "Templates/DbContext/NewLocalDbContext.cshtml",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.runtimeconfig.json",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
- "microsoft.visualstudio.web.codegeneration.entityframeworkcore.9.0.0.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Templating/9.0.0": {
- "sha512": "euoX0M4JnbzSUcFXfDq+GSSdXNRbKGUBTK+8gcnzHmhY3sHgHn9bgeeZDp+LGuoUQaP+WrWA8Nq92gCTcZLWSA==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.templating/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "NOTICE.txt",
- "README.md",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
- "microsoft.visualstudio.web.codegeneration.templating.9.0.0.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.templating.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGeneration.Utils/9.0.0": {
- "sha512": "O8uehWLzgQhq3H2f+dxEkuYF8wWoBrT7iKtQXnHAc96qlVdLSARSxt3hlxqFSzK3ZkHp2P6lHt76LRH6J0PDrw==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegeneration.utils/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "NOTICE.txt",
- "README.md",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
- "microsoft.visualstudio.web.codegeneration.utils.9.0.0.nupkg.sha512",
- "microsoft.visualstudio.web.codegeneration.utils.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/9.0.0": {
- "sha512": "WJhdsFXkpA0XR6PCjoxe9pRIqT8NV8Ggojv2cwaeCwxApzTAbLnglwADteeF7WlgHnr1VmJ+xdgzzNAAcJ9+Rg==",
- "type": "package",
- "path": "microsoft.visualstudio.web.codegenerators.mvc/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Generators/ParameterDefinitions/area.json",
- "Generators/ParameterDefinitions/blazor-identity.json",
- "Generators/ParameterDefinitions/blazor.json",
- "Generators/ParameterDefinitions/controller.json",
- "Generators/ParameterDefinitions/identity.json",
- "Generators/ParameterDefinitions/minimalapi.json",
- "Generators/ParameterDefinitions/razorpage.json",
- "Generators/ParameterDefinitions/view.json",
- "Icon.png",
- "NOTICE.txt",
- "README.md",
- "Templates/Blazor/Create.tt",
- "Templates/Blazor/Delete.tt",
- "Templates/Blazor/Details.tt",
- "Templates/Blazor/Edit.tt",
- "Templates/Blazor/Index.tt",
- "Templates/BlazorIdentity/IdentityComponentsEndpointRouteBuilderExtensions.tt",
- "Templates/BlazorIdentity/IdentityNoOpEmailSender.tt",
- "Templates/BlazorIdentity/IdentityRedirectManager.tt",
- "Templates/BlazorIdentity/IdentityRevalidatingAuthenticationStateProvider.tt",
- "Templates/BlazorIdentity/IdentityUserAccessor.tt",
- "Templates/BlazorIdentity/Pages/ConfirmEmail.tt",
- "Templates/BlazorIdentity/Pages/ConfirmEmailChange.tt",
- "Templates/BlazorIdentity/Pages/ExternalLogin.tt",
- "Templates/BlazorIdentity/Pages/ForgotPassword.tt",
- "Templates/BlazorIdentity/Pages/ForgotPasswordConfirmation.tt",
- "Templates/BlazorIdentity/Pages/InvalidPasswordReset.tt",
- "Templates/BlazorIdentity/Pages/InvalidUser.tt",
- "Templates/BlazorIdentity/Pages/Lockout.tt",
- "Templates/BlazorIdentity/Pages/Login.tt",
- "Templates/BlazorIdentity/Pages/LoginWith2fa.tt",
- "Templates/BlazorIdentity/Pages/LoginWithRecoveryCode.tt",
- "Templates/BlazorIdentity/Pages/Manage/ChangePassword.tt",
- "Templates/BlazorIdentity/Pages/Manage/DeletePersonalData.tt",
- "Templates/BlazorIdentity/Pages/Manage/Disable2fa.tt",
- "Templates/BlazorIdentity/Pages/Manage/Email.tt",
- "Templates/BlazorIdentity/Pages/Manage/EnableAuthenticator.tt",
- "Templates/BlazorIdentity/Pages/Manage/ExternalLogins.tt",
- "Templates/BlazorIdentity/Pages/Manage/GenerateRecoveryCodes.tt",
- "Templates/BlazorIdentity/Pages/Manage/Index.tt",
- "Templates/BlazorIdentity/Pages/Manage/PersonalData.tt",
- "Templates/BlazorIdentity/Pages/Manage/ResetAuthenticator.tt",
- "Templates/BlazorIdentity/Pages/Manage/SetPassword.tt",
- "Templates/BlazorIdentity/Pages/Manage/TwoFactorAuthentication.tt",
- "Templates/BlazorIdentity/Pages/Manage/_Imports.tt",
- "Templates/BlazorIdentity/Pages/Register.tt",
- "Templates/BlazorIdentity/Pages/RegisterConfirmation.tt",
- "Templates/BlazorIdentity/Pages/ResendEmailConfirmation.tt",
- "Templates/BlazorIdentity/Pages/ResetPassword.tt",
- "Templates/BlazorIdentity/Pages/ResetPasswordConfirmation.tt",
- "Templates/BlazorIdentity/Pages/_Imports.tt",
- "Templates/BlazorIdentity/Shared/AccountLayout.tt",
- "Templates/BlazorIdentity/Shared/ExternalLoginPicker.tt",
- "Templates/BlazorIdentity/Shared/ManageLayout.tt",
- "Templates/BlazorIdentity/Shared/ManageNavMenu.tt",
- "Templates/BlazorIdentity/Shared/RedirectToLogin.tt",
- "Templates/BlazorIdentity/Shared/ShowRecoveryCodes.tt",
- "Templates/BlazorIdentity/Shared/StatusMessage.tt",
- "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
- "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
- "Templates/General/IdentityApplicationUser.Interfaces.cs",
- "Templates/General/IdentityApplicationUser.cs",
- "Templates/General/IdentityApplicationUser.tt",
- "Templates/General/IdentityApplicationUserModel.cs",
- "Templates/General/IdentityDbContext.Interfaces.cs",
- "Templates/General/IdentityDbContext.cs",
- "Templates/General/IdentityDbContext.tt",
- "Templates/General/IdentityDbContextModel.cs",
- "Templates/Identity/Data/ApplicationDbContext.cshtml",
- "Templates/Identity/Data/ApplicationUser.cshtml",
- "Templates/Identity/IdentityHostingStartup.cshtml",
- "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml",
- "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Lockout.cshtml",
- "Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Login.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
- "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Logout.cshtml",
- "Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.Register.cshtml",
- "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
- "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
- "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml",
- "Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
- "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewStart.cshtml",
- "Templates/Identity/Pages/Error.cs.cshtml",
- "Templates/Identity/Pages/Error.cshtml",
- "Templates/Identity/Pages/_Layout.cshtml",
- "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
- "Templates/Identity/Pages/_ViewImports.cshtml",
- "Templates/Identity/Pages/_ViewStart.cshtml",
- "Templates/Identity/ScaffoldingReadme.cshtml",
- "Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
- "Templates/Identity/SupportPages._ViewImports.cshtml",
- "Templates/Identity/SupportPages._ViewStart.cshtml",
- "Templates/Identity/_LoginPartial.cshtml",
- "Templates/Identity/package-lock.json",
- "Templates/Identity/package.json",
- "Templates/Identity/wwwroot/css/site.css",
- "Templates/Identity/wwwroot/favicon.ico",
- "Templates/Identity/wwwroot/js/site.js",
- "Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
- "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
- "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
- "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js",
- "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
- "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
- "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.slim.js",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.slim.min.js",
- "Templates/Identity/wwwroot/lib/jquery/dist/jquery.slim.min.map",
- "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationDbContext.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationUser.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/IdentityHostingStartup.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._StatusMessage.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._Layout.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cs.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/_Layout.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/_ValidationScriptsPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewStart.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/ScaffoldingReadme.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/SupportPages._CookieConsentPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewImports.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewStart.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/_LoginPartial.cshtml",
- "Templates/Identity_Versioned/Bootstrap4/package-lock.json",
- "Templates/Identity_Versioned/Bootstrap4/package.json",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/css/site.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/favicon.ico",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/js/site.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/LICENSE",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/LICENSE.md",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/LICENSE.txt",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.map",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.slim.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.slim.min.js",
- "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.slim.min.map",
- "Templates/MinimalApi/MinimalApi.cshtml",
- "Templates/MinimalApi/MinimalApiEf.cshtml",
- "Templates/MinimalApi/MinimalApiEfNoClass.cshtml",
- "Templates/MinimalApi/MinimalApiNoClass.cshtml",
- "Templates/MvcLayout/Error.cshtml",
- "Templates/MvcLayout/_Layout.cshtml",
- "Templates/RazorPageGenerator/Create.cshtml",
- "Templates/RazorPageGenerator/CreatePageModel.cshtml",
- "Templates/RazorPageGenerator/Delete.cshtml",
- "Templates/RazorPageGenerator/DeletePageModel.cshtml",
- "Templates/RazorPageGenerator/Details.cshtml",
- "Templates/RazorPageGenerator/DetailsPageModel.cshtml",
- "Templates/RazorPageGenerator/Edit.cshtml",
- "Templates/RazorPageGenerator/EditPageModel.cshtml",
- "Templates/RazorPageGenerator/List.cshtml",
- "Templates/RazorPageGenerator/ListPageModel.cshtml",
- "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/Create.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/CreatePageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/Delete.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/DeletePageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/Details.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/DetailsPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/Edit.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/EditPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/List.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/ListPageModel.cshtml",
- "Templates/RazorPageGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
- "Templates/Startup/ReadMe.cshtml",
- "Templates/Startup/Startup.cshtml",
- "Templates/ViewGenerator/Create.cshtml",
- "Templates/ViewGenerator/Delete.cshtml",
- "Templates/ViewGenerator/Details.cshtml",
- "Templates/ViewGenerator/Edit.cshtml",
- "Templates/ViewGenerator/Empty.cshtml",
- "Templates/ViewGenerator/List.cshtml",
- "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/Create.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/Delete.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/Details.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/Edit.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/Empty.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/List.cshtml",
- "Templates/ViewGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
- "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
- "lib/net8.0/blazorIdentityChanges.json",
- "lib/net8.0/blazorWebCrudChanges.json",
- "lib/net8.0/bootstrap4_identitygeneratorfilesconfig.json",
- "lib/net8.0/bootstrap5_identitygeneratorfilesconfig.json",
- "lib/net8.0/identityMinimalHostingChanges.json",
- "lib/net8.0/minimalApiChanges.json",
- "microsoft.visualstudio.web.codegenerators.mvc.9.0.0.nupkg.sha512",
- "microsoft.visualstudio.web.codegenerators.mvc.nuspec"
- ]
- },
- "Mono.TextTemplating/3.0.0": {
- "sha512": "YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==",
- "type": "package",
- "path": "mono.texttemplating/3.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt/LICENSE",
- "buildTransitive/Mono.TextTemplating.targets",
- "lib/net472/Mono.TextTemplating.dll",
- "lib/net6.0/Mono.TextTemplating.dll",
- "lib/netstandard2.0/Mono.TextTemplating.dll",
- "mono.texttemplating.3.0.0.nupkg.sha512",
- "mono.texttemplating.nuspec",
- "readme.md"
- ]
- },
- "Newtonsoft.Json/13.0.3": {
- "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "type": "package",
- "path": "newtonsoft.json/13.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "README.md",
- "lib/net20/Newtonsoft.Json.dll",
- "lib/net20/Newtonsoft.Json.xml",
- "lib/net35/Newtonsoft.Json.dll",
- "lib/net35/Newtonsoft.Json.xml",
- "lib/net40/Newtonsoft.Json.dll",
- "lib/net40/Newtonsoft.Json.xml",
- "lib/net45/Newtonsoft.Json.dll",
- "lib/net45/Newtonsoft.Json.xml",
- "lib/net6.0/Newtonsoft.Json.dll",
- "lib/net6.0/Newtonsoft.Json.xml",
- "lib/netstandard1.0/Newtonsoft.Json.dll",
- "lib/netstandard1.0/Newtonsoft.Json.xml",
- "lib/netstandard1.3/Newtonsoft.Json.dll",
- "lib/netstandard1.3/Newtonsoft.Json.xml",
- "lib/netstandard2.0/Newtonsoft.Json.dll",
- "lib/netstandard2.0/Newtonsoft.Json.xml",
- "newtonsoft.json.13.0.3.nupkg.sha512",
- "newtonsoft.json.nuspec",
- "packageIcon.png"
- ]
- },
- "Npgsql/9.0.2": {
- "sha512": "hCbO8box7i/XXiTFqCJ3GoowyLqx3JXxyrbOJ6om7dr+eAknvBNhhUHeJVGAQo44sySZTfdVffp4BrtPeLZOAA==",
- "type": "package",
- "path": "npgsql/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net6.0/Npgsql.dll",
- "lib/net6.0/Npgsql.xml",
- "lib/net8.0/Npgsql.dll",
- "lib/net8.0/Npgsql.xml",
- "npgsql.9.0.2.nupkg.sha512",
- "npgsql.nuspec",
- "postgresql.png"
- ]
- },
- "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.3": {
- "sha512": "1A6HpMPbzK+quxdtug1aDHI4BSRTgpi7OaDt8WQh7SFJd2sSQ0nNTZ7sYrwyxVf4AdKdN7XJL9tpiiJjRUaa4g==",
- "type": "package",
- "path": "npgsql.entityframeworkcore.postgresql/9.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
- "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml",
- "npgsql.entityframeworkcore.postgresql.9.0.3.nupkg.sha512",
- "npgsql.entityframeworkcore.postgresql.nuspec",
- "postgresql.png"
- ]
- },
- "NuGet.Common/6.11.0": {
- "sha512": "T3bCiKUSx8wdYpcqr6Dbx93zAqFp689ee/oa1tH22XI/xl7EUzQ7No/WlE1FUqvEX1+Mqar3wRNAn2O/yxo94g==",
- "type": "package",
- "path": "nuget.common/6.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Common.dll",
- "lib/netstandard2.0/NuGet.Common.dll",
- "nuget.common.6.11.0.nupkg.sha512",
- "nuget.common.nuspec"
- ]
- },
- "NuGet.Configuration/6.11.0": {
- "sha512": "73QprQqmumFrv3Ooi4YWpRYeBj8jZy9gNdOaOCp4pPInpt41SJJAz/aP4je+StwIJvi5HsgPPecLKekDIQEwKg==",
- "type": "package",
- "path": "nuget.configuration/6.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Configuration.dll",
- "lib/netstandard2.0/NuGet.Configuration.dll",
- "nuget.configuration.6.11.0.nupkg.sha512",
- "nuget.configuration.nuspec"
- ]
- },
- "NuGet.DependencyResolver.Core/6.11.0": {
- "sha512": "SoiPKPooA+IF+iCsX1ykwi3M0e+yBL34QnwIP3ujhQEn1dhlP/N1XsYAnKkJPxV15EZCahuuS4HtnBsZx+CHKA==",
- "type": "package",
- "path": "nuget.dependencyresolver.core/6.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.DependencyResolver.Core.dll",
- "lib/net5.0/NuGet.DependencyResolver.Core.dll",
- "lib/netstandard2.0/NuGet.DependencyResolver.Core.dll",
- "nuget.dependencyresolver.core.6.11.0.nupkg.sha512",
- "nuget.dependencyresolver.core.nuspec"
- ]
- },
- "NuGet.Frameworks/6.11.0": {
- "sha512": "Ew/mrfmLF5phsprysHbph2+tdZ10HMHAURavsr/Kx1WhybDG4vmGuoNLbbZMZOqnPRdpyCTc42OKWLoedxpYtA==",
- "type": "package",
- "path": "nuget.frameworks/6.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Frameworks.dll",
- "lib/netstandard2.0/NuGet.Frameworks.dll",
- "nuget.frameworks.6.11.0.nupkg.sha512",
- "nuget.frameworks.nuspec"
- ]
- },
- "NuGet.LibraryModel/6.11.0": {
- "sha512": "KUV2eeMICMb24OPcICn/wgncNzt6+W+lmFVO5eorTdo1qV4WXxYGyG1NTPiCY+Nrv5H/Ilnv9UaUM2ozqSmnjw==",
- "type": "package",
- "path": "nuget.librarymodel/6.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.LibraryModel.dll",
- "lib/netstandard2.0/NuGet.LibraryModel.dll",
- "nuget.librarymodel.6.11.0.nupkg.sha512",
- "nuget.librarymodel.nuspec"
- ]
- },
- "NuGet.Packaging/6.11.0": {
- "sha512": "VmUv2LedVuPY1tfNybORO2I9IuqOzeV7I5JBD+PwNvJq2bAqovi4FCw2cYI0g+kjOJXBN2lAJfrfnqtUOlVJdQ==",
- "type": "package",
- "path": "nuget.packaging/6.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Packaging.dll",
- "lib/net5.0/NuGet.Packaging.dll",
- "lib/netstandard2.0/NuGet.Packaging.dll",
- "nuget.packaging.6.11.0.nupkg.sha512",
- "nuget.packaging.nuspec"
- ]
- },
- "NuGet.ProjectModel/6.11.0": {
- "sha512": "g0KtmDH6fas97WsN73yV2h1F5JT9o6+Y0wlPK+ij9YLKaAXaF6+1HkSaQMMJ+xh9/jCJG9G6nau6InOlb1g48g==",
- "type": "package",
- "path": "nuget.projectmodel/6.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.ProjectModel.dll",
- "lib/net5.0/NuGet.ProjectModel.dll",
- "lib/netstandard2.0/NuGet.ProjectModel.dll",
- "nuget.projectmodel.6.11.0.nupkg.sha512",
- "nuget.projectmodel.nuspec"
- ]
- },
- "NuGet.Protocol/6.11.0": {
- "sha512": "p5B8oNLLnGhUfMbcS16aRiegj11pD6k+LELyRBqvNFR/pE3yR1XT+g1XS33ME9wvoU+xbCGnl4Grztt1jHPinw==",
- "type": "package",
- "path": "nuget.protocol/6.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Protocol.dll",
- "lib/net5.0/NuGet.Protocol.dll",
- "lib/netstandard2.0/NuGet.Protocol.dll",
- "nuget.protocol.6.11.0.nupkg.sha512",
- "nuget.protocol.nuspec"
- ]
- },
- "NuGet.Versioning/6.11.0": {
- "sha512": "v/GGlIj2dd7svplFmASWEueu62veKW0MrMtBaZ7QG8aJTSGv2yE+pgUGhXRcQ4nxNOEq/wLBrz1vkth/1SND7A==",
- "type": "package",
- "path": "nuget.versioning/6.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Versioning.dll",
- "lib/netstandard2.0/NuGet.Versioning.dll",
- "nuget.versioning.6.11.0.nupkg.sha512",
- "nuget.versioning.nuspec"
- ]
- },
- "pythonnet/3.0.5": {
- "sha512": "20UVeB1uDpvCHZi8yNv7VCSUKVRRaxPZWFYhkO+BjfBB9GgOh2vEeucy3U7zTY8xEVCHf2XHpRNfAU/3quxXZw==",
- "type": "package",
- "path": "pythonnet/3.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE",
- "README.md",
- "lib/netstandard2.0/Python.Runtime.dll",
- "lib/netstandard2.0/Python.Runtime.xml",
- "pythonnet.3.0.5.nupkg.sha512",
- "pythonnet.nuspec"
- ]
- },
- "SkiaSharp/3.116.1": {
- "sha512": "DNDwbRjP+aMo27dV2h/uHCVTcWubWWxHnPLiePNyl24f4Pv43mQ8AQQeseOrKR+J3AOCEs6t0sUjo0aa3j3RWQ==",
- "type": "package",
- "path": "skiasharp/3.116.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "README.md",
- "icon.png",
- "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll",
- "lib/net462/SkiaSharp.dll",
- "lib/net462/SkiaSharp.pdb",
- "lib/net6.0/SkiaSharp.dll",
- "lib/net6.0/SkiaSharp.pdb",
- "lib/net8.0-android34.0/SkiaSharp.dll",
- "lib/net8.0-android34.0/SkiaSharp.pdb",
- "lib/net8.0-android34.0/SkiaSharp.xml",
- "lib/net8.0-ios17.0/SkiaSharp.dll",
- "lib/net8.0-ios17.0/SkiaSharp.pdb",
- "lib/net8.0-maccatalyst17.0/SkiaSharp.dll",
- "lib/net8.0-maccatalyst17.0/SkiaSharp.pdb",
- "lib/net8.0-macos14.0/SkiaSharp.dll",
- "lib/net8.0-macos14.0/SkiaSharp.pdb",
- "lib/net8.0-tizen7.0/SkiaSharp.dll",
- "lib/net8.0-tizen7.0/SkiaSharp.pdb",
- "lib/net8.0-tvos17.0/SkiaSharp.dll",
- "lib/net8.0-tvos17.0/SkiaSharp.pdb",
- "lib/net8.0-windows10.0.19041/SkiaSharp.dll",
- "lib/net8.0-windows10.0.19041/SkiaSharp.pdb",
- "lib/net8.0/SkiaSharp.dll",
- "lib/net8.0/SkiaSharp.pdb",
- "lib/netstandard2.0/SkiaSharp.dll",
- "lib/netstandard2.0/SkiaSharp.pdb",
- "lib/netstandard2.1/SkiaSharp.dll",
- "lib/netstandard2.1/SkiaSharp.pdb",
- "ref/net462/SkiaSharp.dll",
- "ref/net6.0/SkiaSharp.dll",
- "ref/net8.0-android34.0/SkiaSharp.dll",
- "ref/net8.0-ios17.0/SkiaSharp.dll",
- "ref/net8.0-maccatalyst17.0/SkiaSharp.dll",
- "ref/net8.0-macos14.0/SkiaSharp.dll",
- "ref/net8.0-tizen7.0/SkiaSharp.dll",
- "ref/net8.0-tvos17.0/SkiaSharp.dll",
- "ref/net8.0-windows10.0.19041/SkiaSharp.dll",
- "ref/net8.0/SkiaSharp.dll",
- "ref/netstandard2.0/SkiaSharp.dll",
- "ref/netstandard2.1/SkiaSharp.dll",
- "skiasharp.3.116.1.nupkg.sha512",
- "skiasharp.nuspec"
- ]
- },
- "SkiaSharp.NativeAssets.macOS/3.116.1": {
- "sha512": "3KPvpKysDmEMt0NnAZPX5U6KFk0LmG/72/IjAIJemIksIZ0Tjs9pGpr3L+zboVCv1MLVoJLKl3nJDXUG6Jda6A==",
- "type": "package",
- "path": "skiasharp.nativeassets.macos/3.116.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "README.md",
- "THIRD-PARTY-NOTICES.txt",
- "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets",
- "buildTransitive/net8.0-macos14.0/SkiaSharp.NativeAssets.macOS.targets",
- "icon.png",
- "lib/net462/_._",
- "lib/net6.0/_._",
- "lib/net8.0-macos14.0/_._",
- "lib/net8.0/_._",
- "lib/netstandard2.0/_._",
- "lib/netstandard2.1/_._",
- "runtimes/osx/native/libSkiaSharp.dylib",
- "skiasharp.nativeassets.macos.3.116.1.nupkg.sha512",
- "skiasharp.nativeassets.macos.nuspec"
- ]
- },
- "SkiaSharp.NativeAssets.Win32/3.116.1": {
- "sha512": "dRQ75MCI8oz6zAs2Y1w6pq6ARs4MhdNG+gf3doOxOxdnueDXffQLGQIxON54GDoxc0WjKOoHMKBR4DhaduwwQw==",
- "type": "package",
- "path": "skiasharp.nativeassets.win32/3.116.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "README.md",
- "THIRD-PARTY-NOTICES.txt",
- "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets",
- "icon.png",
- "lib/net462/_._",
- "lib/net6.0-windows10.0.19041/_._",
- "lib/net6.0/_._",
- "lib/net8.0-windows10.0.19041/_._",
- "lib/net8.0/_._",
- "lib/netstandard2.0/_._",
- "lib/netstandard2.1/_._",
- "runtimes/win-arm64/native/libSkiaSharp.dll",
- "runtimes/win-x64/native/libSkiaSharp.dll",
- "runtimes/win-x86/native/libSkiaSharp.dll",
- "skiasharp.nativeassets.win32.3.116.1.nupkg.sha512",
- "skiasharp.nativeassets.win32.nuspec"
- ]
- },
- "SQLitePCLRaw.bundle_e_sqlite3/2.1.10": {
- "sha512": "UxWuisvZ3uVcVOLJQv7urM/JiQH+v3TmaJc1BLKl5Dxfm/nTzTUrqswCqg/INiYLi61AXnHo1M1JPmPqqLnAdg==",
- "type": "package",
- "path": "sqlitepclraw.bundle_e_sqlite3/2.1.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll",
- "lib/net461/SQLitePCLRaw.batteries_v2.dll",
- "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll",
- "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml",
- "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll",
- "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll",
- "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll",
- "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll",
- "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll",
- "sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512",
- "sqlitepclraw.bundle_e_sqlite3.nuspec"
- ]
- },
- "SQLitePCLRaw.core/2.1.10": {
- "sha512": "Ii8JCbC7oiVclaE/mbDEK000EFIJ+ShRPwAvvV89GOZhQ+ZLtlnSWl6ksCNMKu/VGXA4Nfi2B7LhN/QFN9oBcw==",
- "type": "package",
- "path": "sqlitepclraw.core/2.1.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/SQLitePCLRaw.core.dll",
- "sqlitepclraw.core.2.1.10.nupkg.sha512",
- "sqlitepclraw.core.nuspec"
- ]
- },
- "SQLitePCLRaw.lib.e_sqlite3/2.1.10": {
- "sha512": "mAr69tDbnf3QJpRy2nJz8Qdpebdil00fvycyByR58Cn9eARvR+UiG2Vzsp+4q1tV3ikwiYIjlXCQFc12GfebbA==",
- "type": "package",
- "path": "sqlitepclraw.lib.e_sqlite3/2.1.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets",
- "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets",
- "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets",
- "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets",
- "buildTransitive/net9.0/SQLitePCLRaw.lib.e_sqlite3.targets",
- "lib/net461/_._",
- "lib/netstandard2.0/_._",
- "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a",
- "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a",
- "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a",
- "runtimes/browser-wasm/nativeassets/net9.0/e_sqlite3.a",
- "runtimes/linux-arm/native/libe_sqlite3.so",
- "runtimes/linux-arm64/native/libe_sqlite3.so",
- "runtimes/linux-armel/native/libe_sqlite3.so",
- "runtimes/linux-mips64/native/libe_sqlite3.so",
- "runtimes/linux-musl-arm/native/libe_sqlite3.so",
- "runtimes/linux-musl-arm64/native/libe_sqlite3.so",
- "runtimes/linux-musl-s390x/native/libe_sqlite3.so",
- "runtimes/linux-musl-x64/native/libe_sqlite3.so",
- "runtimes/linux-ppc64le/native/libe_sqlite3.so",
- "runtimes/linux-s390x/native/libe_sqlite3.so",
- "runtimes/linux-x64/native/libe_sqlite3.so",
- "runtimes/linux-x86/native/libe_sqlite3.so",
- "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib",
- "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib",
- "runtimes/osx-arm64/native/libe_sqlite3.dylib",
- "runtimes/osx-x64/native/libe_sqlite3.dylib",
- "runtimes/win-arm/native/e_sqlite3.dll",
- "runtimes/win-arm64/native/e_sqlite3.dll",
- "runtimes/win-x64/native/e_sqlite3.dll",
- "runtimes/win-x86/native/e_sqlite3.dll",
- "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll",
- "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll",
- "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll",
- "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll",
- "sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512",
- "sqlitepclraw.lib.e_sqlite3.nuspec"
- ]
- },
- "SQLitePCLRaw.provider.e_sqlite3/2.1.10": {
- "sha512": "uZVTi02C1SxqzgT0HqTWatIbWGb40iIkfc3FpFCpE/r7g6K0PqzDUeefL6P6HPhDtc6BacN3yQysfzP7ks+wSQ==",
- "type": "package",
- "path": "sqlitepclraw.provider.e_sqlite3/2.1.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll",
- "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll",
- "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll",
- "sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512",
- "sqlitepclraw.provider.e_sqlite3.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/6.0.0": {
- "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
- "type": "package",
- "path": "system.codedom/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.CodeDom.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.CodeDom.dll",
- "lib/net461/System.CodeDom.xml",
- "lib/net6.0/System.CodeDom.dll",
- "lib/net6.0/System.CodeDom.xml",
- "lib/netstandard2.0/System.CodeDom.dll",
- "lib/netstandard2.0/System.CodeDom.xml",
- "system.codedom.6.0.0.nupkg.sha512",
- "system.codedom.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Collections/4.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "system.collections/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Collections.dll",
- "ref/netcore50/System.Collections.xml",
- "ref/netcore50/de/System.Collections.xml",
- "ref/netcore50/es/System.Collections.xml",
- "ref/netcore50/fr/System.Collections.xml",
- "ref/netcore50/it/System.Collections.xml",
- "ref/netcore50/ja/System.Collections.xml",
- "ref/netcore50/ko/System.Collections.xml",
- "ref/netcore50/ru/System.Collections.xml",
- "ref/netcore50/zh-hans/System.Collections.xml",
- "ref/netcore50/zh-hant/System.Collections.xml",
- "ref/netstandard1.0/System.Collections.dll",
- "ref/netstandard1.0/System.Collections.xml",
- "ref/netstandard1.0/de/System.Collections.xml",
- "ref/netstandard1.0/es/System.Collections.xml",
- "ref/netstandard1.0/fr/System.Collections.xml",
- "ref/netstandard1.0/it/System.Collections.xml",
- "ref/netstandard1.0/ja/System.Collections.xml",
- "ref/netstandard1.0/ko/System.Collections.xml",
- "ref/netstandard1.0/ru/System.Collections.xml",
- "ref/netstandard1.0/zh-hans/System.Collections.xml",
- "ref/netstandard1.0/zh-hant/System.Collections.xml",
- "ref/netstandard1.3/System.Collections.dll",
- "ref/netstandard1.3/System.Collections.xml",
- "ref/netstandard1.3/de/System.Collections.xml",
- "ref/netstandard1.3/es/System.Collections.xml",
- "ref/netstandard1.3/fr/System.Collections.xml",
- "ref/netstandard1.3/it/System.Collections.xml",
- "ref/netstandard1.3/ja/System.Collections.xml",
- "ref/netstandard1.3/ko/System.Collections.xml",
- "ref/netstandard1.3/ru/System.Collections.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.4.3.0.nupkg.sha512",
- "system.collections.nuspec"
- ]
- },
- "System.Collections.Immutable/8.0.0": {
- "sha512": "AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==",
- "type": "package",
- "path": "system.collections.immutable/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Collections.Immutable.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
- "lib/net462/System.Collections.Immutable.dll",
- "lib/net462/System.Collections.Immutable.xml",
- "lib/net6.0/System.Collections.Immutable.dll",
- "lib/net6.0/System.Collections.Immutable.xml",
- "lib/net7.0/System.Collections.Immutable.dll",
- "lib/net7.0/System.Collections.Immutable.xml",
- "lib/net8.0/System.Collections.Immutable.dll",
- "lib/net8.0/System.Collections.Immutable.xml",
- "lib/netstandard2.0/System.Collections.Immutable.dll",
- "lib/netstandard2.0/System.Collections.Immutable.xml",
- "system.collections.immutable.8.0.0.nupkg.sha512",
- "system.collections.immutable.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition/7.0.0": {
- "sha512": "tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==",
- "type": "package",
- "path": "system.composition/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Composition.targets",
- "lib/net461/_._",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard2.0/_._",
- "system.composition.7.0.0.nupkg.sha512",
- "system.composition.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.AttributedModel/7.0.0": {
- "sha512": "2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==",
- "type": "package",
- "path": "system.composition.attributedmodel/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.AttributedModel.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
- "lib/net462/System.Composition.AttributedModel.dll",
- "lib/net462/System.Composition.AttributedModel.xml",
- "lib/net6.0/System.Composition.AttributedModel.dll",
- "lib/net6.0/System.Composition.AttributedModel.xml",
- "lib/net7.0/System.Composition.AttributedModel.dll",
- "lib/net7.0/System.Composition.AttributedModel.xml",
- "lib/netstandard2.0/System.Composition.AttributedModel.dll",
- "lib/netstandard2.0/System.Composition.AttributedModel.xml",
- "system.composition.attributedmodel.7.0.0.nupkg.sha512",
- "system.composition.attributedmodel.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Convention/7.0.0": {
- "sha512": "IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==",
- "type": "package",
- "path": "system.composition.convention/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.Convention.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
- "lib/net462/System.Composition.Convention.dll",
- "lib/net462/System.Composition.Convention.xml",
- "lib/net6.0/System.Composition.Convention.dll",
- "lib/net6.0/System.Composition.Convention.xml",
- "lib/net7.0/System.Composition.Convention.dll",
- "lib/net7.0/System.Composition.Convention.xml",
- "lib/netstandard2.0/System.Composition.Convention.dll",
- "lib/netstandard2.0/System.Composition.Convention.xml",
- "system.composition.convention.7.0.0.nupkg.sha512",
- "system.composition.convention.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Hosting/7.0.0": {
- "sha512": "eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==",
- "type": "package",
- "path": "system.composition.hosting/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.Hosting.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
- "lib/net462/System.Composition.Hosting.dll",
- "lib/net462/System.Composition.Hosting.xml",
- "lib/net6.0/System.Composition.Hosting.dll",
- "lib/net6.0/System.Composition.Hosting.xml",
- "lib/net7.0/System.Composition.Hosting.dll",
- "lib/net7.0/System.Composition.Hosting.xml",
- "lib/netstandard2.0/System.Composition.Hosting.dll",
- "lib/netstandard2.0/System.Composition.Hosting.xml",
- "system.composition.hosting.7.0.0.nupkg.sha512",
- "system.composition.hosting.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Runtime/7.0.0": {
- "sha512": "aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==",
- "type": "package",
- "path": "system.composition.runtime/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.Runtime.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
- "lib/net462/System.Composition.Runtime.dll",
- "lib/net462/System.Composition.Runtime.xml",
- "lib/net6.0/System.Composition.Runtime.dll",
- "lib/net6.0/System.Composition.Runtime.xml",
- "lib/net7.0/System.Composition.Runtime.dll",
- "lib/net7.0/System.Composition.Runtime.xml",
- "lib/netstandard2.0/System.Composition.Runtime.dll",
- "lib/netstandard2.0/System.Composition.Runtime.xml",
- "system.composition.runtime.7.0.0.nupkg.sha512",
- "system.composition.runtime.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.TypedParts/7.0.0": {
- "sha512": "ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==",
- "type": "package",
- "path": "system.composition.typedparts/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Composition.TypedParts.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
- "lib/net462/System.Composition.TypedParts.dll",
- "lib/net462/System.Composition.TypedParts.xml",
- "lib/net6.0/System.Composition.TypedParts.dll",
- "lib/net6.0/System.Composition.TypedParts.xml",
- "lib/net7.0/System.Composition.TypedParts.dll",
- "lib/net7.0/System.Composition.TypedParts.xml",
- "lib/netstandard2.0/System.Composition.TypedParts.dll",
- "lib/netstandard2.0/System.Composition.TypedParts.xml",
- "system.composition.typedparts.7.0.0.nupkg.sha512",
- "system.composition.typedparts.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Configuration.ConfigurationManager/8.0.0": {
- "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==",
- "type": "package",
- "path": "system.configuration.configurationmanager/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
- "lib/net462/System.Configuration.ConfigurationManager.dll",
- "lib/net462/System.Configuration.ConfigurationManager.xml",
- "lib/net6.0/System.Configuration.ConfigurationManager.dll",
- "lib/net6.0/System.Configuration.ConfigurationManager.xml",
- "lib/net7.0/System.Configuration.ConfigurationManager.dll",
- "lib/net7.0/System.Configuration.ConfigurationManager.xml",
- "lib/net8.0/System.Configuration.ConfigurationManager.dll",
- "lib/net8.0/System.Configuration.ConfigurationManager.xml",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
- "system.configuration.configurationmanager.8.0.0.nupkg.sha512",
- "system.configuration.configurationmanager.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Data.DataSetExtensions/4.5.0": {
- "sha512": "221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==",
- "type": "package",
- "path": "system.data.datasetextensions/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net45/_._",
- "lib/netstandard2.0/System.Data.DataSetExtensions.dll",
- "ref/net45/_._",
- "ref/netstandard2.0/System.Data.DataSetExtensions.dll",
- "system.data.datasetextensions.4.5.0.nupkg.sha512",
- "system.data.datasetextensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "system.diagnostics.debug/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Debug.dll",
- "ref/netcore50/System.Diagnostics.Debug.xml",
- "ref/netcore50/de/System.Diagnostics.Debug.xml",
- "ref/netcore50/es/System.Diagnostics.Debug.xml",
- "ref/netcore50/fr/System.Diagnostics.Debug.xml",
- "ref/netcore50/it/System.Diagnostics.Debug.xml",
- "ref/netcore50/ja/System.Diagnostics.Debug.xml",
- "ref/netcore50/ko/System.Diagnostics.Debug.xml",
- "ref/netcore50/ru/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/System.Diagnostics.Debug.dll",
- "ref/netstandard1.0/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/System.Diagnostics.Debug.dll",
- "ref/netstandard1.3/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.debug.4.3.0.nupkg.sha512",
- "system.diagnostics.debug.nuspec"
- ]
- },
- "System.Diagnostics.DiagnosticSource/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.Diagnostics.EventLog/8.0.0": {
- "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
- "type": "package",
- "path": "system.diagnostics.eventlog/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Diagnostics.EventLog.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
- "lib/net462/System.Diagnostics.EventLog.dll",
- "lib/net462/System.Diagnostics.EventLog.xml",
- "lib/net6.0/System.Diagnostics.EventLog.dll",
- "lib/net6.0/System.Diagnostics.EventLog.xml",
- "lib/net7.0/System.Diagnostics.EventLog.dll",
- "lib/net7.0/System.Diagnostics.EventLog.xml",
- "lib/net8.0/System.Diagnostics.EventLog.dll",
- "lib/net8.0/System.Diagnostics.EventLog.xml",
- "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
- "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
- "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
- "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
- "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
- "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
- "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
- "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
- "system.diagnostics.eventlog.8.0.0.nupkg.sha512",
- "system.diagnostics.eventlog.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Formats.Asn1/9.0.2": {
- "sha512": "OKWHCPYQr/+cIoO8EVjFn7yFyiT8Mnf1wif/5bYGsqxQV6PrwlX2HQ9brZNx57ViOvRe4ing1xgHCKl/5Ko8xg==",
- "type": "package",
- "path": "system.formats.asn1/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Formats.Asn1.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
- "lib/net462/System.Formats.Asn1.dll",
- "lib/net462/System.Formats.Asn1.xml",
- "lib/net8.0/System.Formats.Asn1.dll",
- "lib/net8.0/System.Formats.Asn1.xml",
- "lib/net9.0/System.Formats.Asn1.dll",
- "lib/net9.0/System.Formats.Asn1.xml",
- "lib/netstandard2.0/System.Formats.Asn1.dll",
- "lib/netstandard2.0/System.Formats.Asn1.xml",
- "system.formats.asn1.9.0.2.nupkg.sha512",
- "system.formats.asn1.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "system.globalization/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Globalization.dll",
- "ref/netcore50/System.Globalization.xml",
- "ref/netcore50/de/System.Globalization.xml",
- "ref/netcore50/es/System.Globalization.xml",
- "ref/netcore50/fr/System.Globalization.xml",
- "ref/netcore50/it/System.Globalization.xml",
- "ref/netcore50/ja/System.Globalization.xml",
- "ref/netcore50/ko/System.Globalization.xml",
- "ref/netcore50/ru/System.Globalization.xml",
- "ref/netcore50/zh-hans/System.Globalization.xml",
- "ref/netcore50/zh-hant/System.Globalization.xml",
- "ref/netstandard1.0/System.Globalization.dll",
- "ref/netstandard1.0/System.Globalization.xml",
- "ref/netstandard1.0/de/System.Globalization.xml",
- "ref/netstandard1.0/es/System.Globalization.xml",
- "ref/netstandard1.0/fr/System.Globalization.xml",
- "ref/netstandard1.0/it/System.Globalization.xml",
- "ref/netstandard1.0/ja/System.Globalization.xml",
- "ref/netstandard1.0/ko/System.Globalization.xml",
- "ref/netstandard1.0/ru/System.Globalization.xml",
- "ref/netstandard1.0/zh-hans/System.Globalization.xml",
- "ref/netstandard1.0/zh-hant/System.Globalization.xml",
- "ref/netstandard1.3/System.Globalization.dll",
- "ref/netstandard1.3/System.Globalization.xml",
- "ref/netstandard1.3/de/System.Globalization.xml",
- "ref/netstandard1.3/es/System.Globalization.xml",
- "ref/netstandard1.3/fr/System.Globalization.xml",
- "ref/netstandard1.3/it/System.Globalization.xml",
- "ref/netstandard1.3/ja/System.Globalization.xml",
- "ref/netstandard1.3/ko/System.Globalization.xml",
- "ref/netstandard1.3/ru/System.Globalization.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.4.3.0.nupkg.sha512",
- "system.globalization.nuspec"
- ]
- },
- "System.IdentityModel.Tokens.Jwt/6.35.0": {
- "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==",
- "type": "package",
- "path": "system.identitymodel.tokens.jwt/6.35.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
- "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
- "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
- "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
- "lib/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/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
- "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
- "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
- "system.identitymodel.tokens.jwt.nuspec"
- ]
- },
- "System.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "system.io/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.IO.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.IO.dll",
- "ref/netcore50/System.IO.dll",
- "ref/netcore50/System.IO.xml",
- "ref/netcore50/de/System.IO.xml",
- "ref/netcore50/es/System.IO.xml",
- "ref/netcore50/fr/System.IO.xml",
- "ref/netcore50/it/System.IO.xml",
- "ref/netcore50/ja/System.IO.xml",
- "ref/netcore50/ko/System.IO.xml",
- "ref/netcore50/ru/System.IO.xml",
- "ref/netcore50/zh-hans/System.IO.xml",
- "ref/netcore50/zh-hant/System.IO.xml",
- "ref/netstandard1.0/System.IO.dll",
- "ref/netstandard1.0/System.IO.xml",
- "ref/netstandard1.0/de/System.IO.xml",
- "ref/netstandard1.0/es/System.IO.xml",
- "ref/netstandard1.0/fr/System.IO.xml",
- "ref/netstandard1.0/it/System.IO.xml",
- "ref/netstandard1.0/ja/System.IO.xml",
- "ref/netstandard1.0/ko/System.IO.xml",
- "ref/netstandard1.0/ru/System.IO.xml",
- "ref/netstandard1.0/zh-hans/System.IO.xml",
- "ref/netstandard1.0/zh-hant/System.IO.xml",
- "ref/netstandard1.3/System.IO.dll",
- "ref/netstandard1.3/System.IO.xml",
- "ref/netstandard1.3/de/System.IO.xml",
- "ref/netstandard1.3/es/System.IO.xml",
- "ref/netstandard1.3/fr/System.IO.xml",
- "ref/netstandard1.3/it/System.IO.xml",
- "ref/netstandard1.3/ja/System.IO.xml",
- "ref/netstandard1.3/ko/System.IO.xml",
- "ref/netstandard1.3/ru/System.IO.xml",
- "ref/netstandard1.3/zh-hans/System.IO.xml",
- "ref/netstandard1.3/zh-hant/System.IO.xml",
- "ref/netstandard1.5/System.IO.dll",
- "ref/netstandard1.5/System.IO.xml",
- "ref/netstandard1.5/de/System.IO.xml",
- "ref/netstandard1.5/es/System.IO.xml",
- "ref/netstandard1.5/fr/System.IO.xml",
- "ref/netstandard1.5/it/System.IO.xml",
- "ref/netstandard1.5/ja/System.IO.xml",
- "ref/netstandard1.5/ko/System.IO.xml",
- "ref/netstandard1.5/ru/System.IO.xml",
- "ref/netstandard1.5/zh-hans/System.IO.xml",
- "ref/netstandard1.5/zh-hant/System.IO.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.4.3.0.nupkg.sha512",
- "system.io.nuspec"
- ]
- },
- "System.IO.Pipelines/7.0.0": {
- "sha512": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==",
- "type": "package",
- "path": "system.io.pipelines/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.IO.Pipelines.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
- "lib/net462/System.IO.Pipelines.dll",
- "lib/net462/System.IO.Pipelines.xml",
- "lib/net6.0/System.IO.Pipelines.dll",
- "lib/net6.0/System.IO.Pipelines.xml",
- "lib/net7.0/System.IO.Pipelines.dll",
- "lib/net7.0/System.IO.Pipelines.xml",
- "lib/netstandard2.0/System.IO.Pipelines.dll",
- "lib/netstandard2.0/System.IO.Pipelines.xml",
- "system.io.pipelines.7.0.0.nupkg.sha512",
- "system.io.pipelines.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "system.linq/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.dll",
- "lib/netcore50/System.Linq.dll",
- "lib/netstandard1.6/System.Linq.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.dll",
- "ref/netcore50/System.Linq.dll",
- "ref/netcore50/System.Linq.xml",
- "ref/netcore50/de/System.Linq.xml",
- "ref/netcore50/es/System.Linq.xml",
- "ref/netcore50/fr/System.Linq.xml",
- "ref/netcore50/it/System.Linq.xml",
- "ref/netcore50/ja/System.Linq.xml",
- "ref/netcore50/ko/System.Linq.xml",
- "ref/netcore50/ru/System.Linq.xml",
- "ref/netcore50/zh-hans/System.Linq.xml",
- "ref/netcore50/zh-hant/System.Linq.xml",
- "ref/netstandard1.0/System.Linq.dll",
- "ref/netstandard1.0/System.Linq.xml",
- "ref/netstandard1.0/de/System.Linq.xml",
- "ref/netstandard1.0/es/System.Linq.xml",
- "ref/netstandard1.0/fr/System.Linq.xml",
- "ref/netstandard1.0/it/System.Linq.xml",
- "ref/netstandard1.0/ja/System.Linq.xml",
- "ref/netstandard1.0/ko/System.Linq.xml",
- "ref/netstandard1.0/ru/System.Linq.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.xml",
- "ref/netstandard1.6/System.Linq.dll",
- "ref/netstandard1.6/System.Linq.xml",
- "ref/netstandard1.6/de/System.Linq.xml",
- "ref/netstandard1.6/es/System.Linq.xml",
- "ref/netstandard1.6/fr/System.Linq.xml",
- "ref/netstandard1.6/it/System.Linq.xml",
- "ref/netstandard1.6/ja/System.Linq.xml",
- "ref/netstandard1.6/ko/System.Linq.xml",
- "ref/netstandard1.6/ru/System.Linq.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.linq.4.3.0.nupkg.sha512",
- "system.linq.nuspec"
- ]
- },
- "System.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/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "system.reflection/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Reflection.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Reflection.dll",
- "ref/netcore50/System.Reflection.dll",
- "ref/netcore50/System.Reflection.xml",
- "ref/netcore50/de/System.Reflection.xml",
- "ref/netcore50/es/System.Reflection.xml",
- "ref/netcore50/fr/System.Reflection.xml",
- "ref/netcore50/it/System.Reflection.xml",
- "ref/netcore50/ja/System.Reflection.xml",
- "ref/netcore50/ko/System.Reflection.xml",
- "ref/netcore50/ru/System.Reflection.xml",
- "ref/netcore50/zh-hans/System.Reflection.xml",
- "ref/netcore50/zh-hant/System.Reflection.xml",
- "ref/netstandard1.0/System.Reflection.dll",
- "ref/netstandard1.0/System.Reflection.xml",
- "ref/netstandard1.0/de/System.Reflection.xml",
- "ref/netstandard1.0/es/System.Reflection.xml",
- "ref/netstandard1.0/fr/System.Reflection.xml",
- "ref/netstandard1.0/it/System.Reflection.xml",
- "ref/netstandard1.0/ja/System.Reflection.xml",
- "ref/netstandard1.0/ko/System.Reflection.xml",
- "ref/netstandard1.0/ru/System.Reflection.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.xml",
- "ref/netstandard1.3/System.Reflection.dll",
- "ref/netstandard1.3/System.Reflection.xml",
- "ref/netstandard1.3/de/System.Reflection.xml",
- "ref/netstandard1.3/es/System.Reflection.xml",
- "ref/netstandard1.3/fr/System.Reflection.xml",
- "ref/netstandard1.3/it/System.Reflection.xml",
- "ref/netstandard1.3/ja/System.Reflection.xml",
- "ref/netstandard1.3/ko/System.Reflection.xml",
- "ref/netstandard1.3/ru/System.Reflection.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.xml",
- "ref/netstandard1.5/System.Reflection.dll",
- "ref/netstandard1.5/System.Reflection.xml",
- "ref/netstandard1.5/de/System.Reflection.xml",
- "ref/netstandard1.5/es/System.Reflection.xml",
- "ref/netstandard1.5/fr/System.Reflection.xml",
- "ref/netstandard1.5/it/System.Reflection.xml",
- "ref/netstandard1.5/ja/System.Reflection.xml",
- "ref/netstandard1.5/ko/System.Reflection.xml",
- "ref/netstandard1.5/ru/System.Reflection.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.4.3.0.nupkg.sha512",
- "system.reflection.nuspec"
- ]
- },
- "System.Reflection.Emit/4.3.0": {
- "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "type": "package",
- "path": "system.reflection.emit/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/netstandard1.3/System.Reflection.Emit.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/net45/_._",
- "ref/netstandard1.1/System.Reflection.Emit.dll",
- "ref/netstandard1.1/System.Reflection.Emit.xml",
- "ref/netstandard1.1/de/System.Reflection.Emit.xml",
- "ref/netstandard1.1/es/System.Reflection.Emit.xml",
- "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
- "ref/netstandard1.1/it/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
- "ref/xamarinmac20/_._",
- "system.reflection.emit.4.3.0.nupkg.sha512",
- "system.reflection.emit.nuspec"
- ]
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "type": "package",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
- "system.reflection.emit.ilgeneration.nuspec"
- ]
- },
- "System.Reflection.Metadata/8.0.0": {
- "sha512": "ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==",
- "type": "package",
- "path": "system.reflection.metadata/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Reflection.Metadata.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
- "lib/net462/System.Reflection.Metadata.dll",
- "lib/net462/System.Reflection.Metadata.xml",
- "lib/net6.0/System.Reflection.Metadata.dll",
- "lib/net6.0/System.Reflection.Metadata.xml",
- "lib/net7.0/System.Reflection.Metadata.dll",
- "lib/net7.0/System.Reflection.Metadata.xml",
- "lib/net8.0/System.Reflection.Metadata.dll",
- "lib/net8.0/System.Reflection.Metadata.xml",
- "lib/netstandard2.0/System.Reflection.Metadata.dll",
- "lib/netstandard2.0/System.Reflection.Metadata.xml",
- "system.reflection.metadata.8.0.0.nupkg.sha512",
- "system.reflection.metadata.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Reflection.MetadataLoadContext/8.0.0": {
- "sha512": "SZxrQ4sQYnIcdwiO3G/lHZopbPYQ2lW0ioT4JezgccWUrKaKbHLJbAGZaDfkYjWcta1pWssAo3MOXLsR0ie4tQ==",
- "type": "package",
- "path": "system.reflection.metadataloadcontext/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Reflection.MetadataLoadContext.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Reflection.MetadataLoadContext.targets",
- "lib/net462/System.Reflection.MetadataLoadContext.dll",
- "lib/net462/System.Reflection.MetadataLoadContext.xml",
- "lib/net6.0/System.Reflection.MetadataLoadContext.dll",
- "lib/net6.0/System.Reflection.MetadataLoadContext.xml",
- "lib/net7.0/System.Reflection.MetadataLoadContext.dll",
- "lib/net7.0/System.Reflection.MetadataLoadContext.xml",
- "lib/net8.0/System.Reflection.MetadataLoadContext.dll",
- "lib/net8.0/System.Reflection.MetadataLoadContext.xml",
- "lib/netstandard2.0/System.Reflection.MetadataLoadContext.dll",
- "lib/netstandard2.0/System.Reflection.MetadataLoadContext.xml",
- "system.reflection.metadataloadcontext.8.0.0.nupkg.sha512",
- "system.reflection.metadataloadcontext.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Reflection.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "system.reflection.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/netcore50/de/System.Reflection.Primitives.xml",
- "ref/netcore50/es/System.Reflection.Primitives.xml",
- "ref/netcore50/fr/System.Reflection.Primitives.xml",
- "ref/netcore50/it/System.Reflection.Primitives.xml",
- "ref/netcore50/ja/System.Reflection.Primitives.xml",
- "ref/netcore50/ko/System.Reflection.Primitives.xml",
- "ref/netcore50/ru/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/System.Reflection.Primitives.dll",
- "ref/netstandard1.0/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.primitives.4.3.0.nupkg.sha512",
- "system.reflection.primitives.nuspec"
- ]
- },
- "System.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "system.resources.resourcemanager/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Resources.ResourceManager.dll",
- "ref/netcore50/System.Resources.ResourceManager.xml",
- "ref/netcore50/de/System.Resources.ResourceManager.xml",
- "ref/netcore50/es/System.Resources.ResourceManager.xml",
- "ref/netcore50/fr/System.Resources.ResourceManager.xml",
- "ref/netcore50/it/System.Resources.ResourceManager.xml",
- "ref/netcore50/ja/System.Resources.ResourceManager.xml",
- "ref/netcore50/ko/System.Resources.ResourceManager.xml",
- "ref/netcore50/ru/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/System.Resources.ResourceManager.dll",
- "ref/netstandard1.0/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "system.resources.resourcemanager.nuspec"
- ]
- },
- "System.Runtime/4.3.0": {
- "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "type": "package",
- "path": "system.runtime/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.dll",
- "lib/portable-net45+win8+wp80+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.dll",
- "ref/netcore50/System.Runtime.dll",
- "ref/netcore50/System.Runtime.xml",
- "ref/netcore50/de/System.Runtime.xml",
- "ref/netcore50/es/System.Runtime.xml",
- "ref/netcore50/fr/System.Runtime.xml",
- "ref/netcore50/it/System.Runtime.xml",
- "ref/netcore50/ja/System.Runtime.xml",
- "ref/netcore50/ko/System.Runtime.xml",
- "ref/netcore50/ru/System.Runtime.xml",
- "ref/netcore50/zh-hans/System.Runtime.xml",
- "ref/netcore50/zh-hant/System.Runtime.xml",
- "ref/netstandard1.0/System.Runtime.dll",
- "ref/netstandard1.0/System.Runtime.xml",
- "ref/netstandard1.0/de/System.Runtime.xml",
- "ref/netstandard1.0/es/System.Runtime.xml",
- "ref/netstandard1.0/fr/System.Runtime.xml",
- "ref/netstandard1.0/it/System.Runtime.xml",
- "ref/netstandard1.0/ja/System.Runtime.xml",
- "ref/netstandard1.0/ko/System.Runtime.xml",
- "ref/netstandard1.0/ru/System.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.xml",
- "ref/netstandard1.2/System.Runtime.dll",
- "ref/netstandard1.2/System.Runtime.xml",
- "ref/netstandard1.2/de/System.Runtime.xml",
- "ref/netstandard1.2/es/System.Runtime.xml",
- "ref/netstandard1.2/fr/System.Runtime.xml",
- "ref/netstandard1.2/it/System.Runtime.xml",
- "ref/netstandard1.2/ja/System.Runtime.xml",
- "ref/netstandard1.2/ko/System.Runtime.xml",
- "ref/netstandard1.2/ru/System.Runtime.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.xml",
- "ref/netstandard1.3/System.Runtime.dll",
- "ref/netstandard1.3/System.Runtime.xml",
- "ref/netstandard1.3/de/System.Runtime.xml",
- "ref/netstandard1.3/es/System.Runtime.xml",
- "ref/netstandard1.3/fr/System.Runtime.xml",
- "ref/netstandard1.3/it/System.Runtime.xml",
- "ref/netstandard1.3/ja/System.Runtime.xml",
- "ref/netstandard1.3/ko/System.Runtime.xml",
- "ref/netstandard1.3/ru/System.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.xml",
- "ref/netstandard1.5/System.Runtime.dll",
- "ref/netstandard1.5/System.Runtime.xml",
- "ref/netstandard1.5/de/System.Runtime.xml",
- "ref/netstandard1.5/es/System.Runtime.xml",
- "ref/netstandard1.5/fr/System.Runtime.xml",
- "ref/netstandard1.5/it/System.Runtime.xml",
- "ref/netstandard1.5/ja/System.Runtime.xml",
- "ref/netstandard1.5/ko/System.Runtime.xml",
- "ref/netstandard1.5/ru/System.Runtime.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.xml",
- "ref/portable-net45+win8+wp80+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.4.3.0.nupkg.sha512",
- "system.runtime.nuspec"
- ]
- },
- "System.Runtime.Caching/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.Runtime.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "system.runtime.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.xml",
- "ref/netcore50/de/System.Runtime.Extensions.xml",
- "ref/netcore50/es/System.Runtime.Extensions.xml",
- "ref/netcore50/fr/System.Runtime.Extensions.xml",
- "ref/netcore50/it/System.Runtime.Extensions.xml",
- "ref/netcore50/ja/System.Runtime.Extensions.xml",
- "ref/netcore50/ko/System.Runtime.Extensions.xml",
- "ref/netcore50/ru/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/System.Runtime.Extensions.dll",
- "ref/netstandard1.0/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/System.Runtime.Extensions.dll",
- "ref/netstandard1.3/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/System.Runtime.Extensions.dll",
- "ref/netstandard1.5/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.extensions.4.3.0.nupkg.sha512",
- "system.runtime.extensions.nuspec"
- ]
- },
- "System.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.Pkcs/6.0.4": {
- "sha512": "LGbXi1oUJ9QgCNGXRO9ndzBL/GZgANcsURpMhNR8uO+rca47SZmciS3RSQUvlQRwK3QHZSHNOXzoMUASKA+Anw==",
- "type": "package",
- "path": "system.security.cryptography.pkcs/6.0.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Security.Cryptography.Pkcs.dll",
- "lib/net461/System.Security.Cryptography.Pkcs.xml",
- "lib/net6.0/System.Security.Cryptography.Pkcs.dll",
- "lib/net6.0/System.Security.Cryptography.Pkcs.xml",
- "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
- "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
- "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
- "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
- "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
- "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
- "system.security.cryptography.pkcs.6.0.4.nupkg.sha512",
- "system.security.cryptography.pkcs.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Security.Cryptography.ProtectedData/8.0.0": {
- "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==",
- "type": "package",
- "path": "system.security.cryptography.protecteddata/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net462/System.Security.Cryptography.ProtectedData.dll",
- "lib/net462/System.Security.Cryptography.ProtectedData.xml",
- "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
- "lib/net7.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/net7.0/System.Security.Cryptography.ProtectedData.xml",
- "lib/net8.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/net8.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/_._",
- "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
- "system.security.cryptography.protecteddata.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Security.Principal.Windows/5.0.0": {
- "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
- "type": "package",
- "path": "system.security.principal.windows/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net46/System.Security.Principal.Windows.dll",
- "lib/net461/System.Security.Principal.Windows.dll",
- "lib/net461/System.Security.Principal.Windows.xml",
- "lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "lib/netstandard2.0/System.Security.Principal.Windows.dll",
- "lib/netstandard2.0/System.Security.Principal.Windows.xml",
- "lib/uap10.0.16299/_._",
- "ref/net46/System.Security.Principal.Windows.dll",
- "ref/net461/System.Security.Principal.Windows.dll",
- "ref/net461/System.Security.Principal.Windows.xml",
- "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
- "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/System.Security.Principal.Windows.dll",
- "ref/netstandard1.3/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
- "ref/netstandard2.0/System.Security.Principal.Windows.dll",
- "ref/netstandard2.0/System.Security.Principal.Windows.xml",
- "ref/uap10.0.16299/_._",
- "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
- "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
- "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
- "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
- "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/uap10.0.16299/_._",
- "system.security.principal.windows.5.0.0.nupkg.sha512",
- "system.security.principal.windows.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "system.text.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.dll",
- "ref/netcore50/System.Text.Encoding.xml",
- "ref/netcore50/de/System.Text.Encoding.xml",
- "ref/netcore50/es/System.Text.Encoding.xml",
- "ref/netcore50/fr/System.Text.Encoding.xml",
- "ref/netcore50/it/System.Text.Encoding.xml",
- "ref/netcore50/ja/System.Text.Encoding.xml",
- "ref/netcore50/ko/System.Text.Encoding.xml",
- "ref/netcore50/ru/System.Text.Encoding.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.0/System.Text.Encoding.dll",
- "ref/netstandard1.0/System.Text.Encoding.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.3/System.Text.Encoding.dll",
- "ref/netstandard1.3/System.Text.Encoding.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.4.3.0.nupkg.sha512",
- "system.text.encoding.nuspec"
- ]
- },
- "System.Text.Encoding.CodePages/6.0.0": {
- "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "type": "package",
- "path": "system.text.encoding.codepages/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Text.Encoding.CodePages.dll",
- "lib/net461/System.Text.Encoding.CodePages.xml",
- "lib/net6.0/System.Text.Encoding.CodePages.dll",
- "lib/net6.0/System.Text.Encoding.CodePages.xml",
- "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
- "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "system.text.encoding.codepages.6.0.0.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Text.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/9.0.2": {
- "sha512": "4TY2Yokh5Xp8XHFhsY9y84yokS7B0rhkaZCXuRiKppIiKwPVH4lVSFD9EEFzRpXdBM5ZeZXD43tc2vB6njEwwQ==",
- "type": "package",
- "path": "system.text.json/9.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "buildTransitive/net461/System.Text.Json.targets",
- "buildTransitive/net462/System.Text.Json.targets",
- "buildTransitive/net8.0/System.Text.Json.targets",
- "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
- "buildTransitive/netstandard2.0/System.Text.Json.targets",
- "lib/net462/System.Text.Json.dll",
- "lib/net462/System.Text.Json.xml",
- "lib/net8.0/System.Text.Json.dll",
- "lib/net8.0/System.Text.Json.xml",
- "lib/net9.0/System.Text.Json.dll",
- "lib/net9.0/System.Text.Json.xml",
- "lib/netstandard2.0/System.Text.Json.dll",
- "lib/netstandard2.0/System.Text.Json.xml",
- "system.text.json.9.0.2.nupkg.sha512",
- "system.text.json.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Threading.Channels/7.0.0": {
- "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
- "type": "package",
- "path": "system.threading.channels/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Threading.Channels.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
- "lib/net462/System.Threading.Channels.dll",
- "lib/net462/System.Threading.Channels.xml",
- "lib/net6.0/System.Threading.Channels.dll",
- "lib/net6.0/System.Threading.Channels.xml",
- "lib/net7.0/System.Threading.Channels.dll",
- "lib/net7.0/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.7.0.0.nupkg.sha512",
- "system.threading.channels.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "system.threading.tasks/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.Tasks.dll",
- "ref/netcore50/System.Threading.Tasks.xml",
- "ref/netcore50/de/System.Threading.Tasks.xml",
- "ref/netcore50/es/System.Threading.Tasks.xml",
- "ref/netcore50/fr/System.Threading.Tasks.xml",
- "ref/netcore50/it/System.Threading.Tasks.xml",
- "ref/netcore50/ja/System.Threading.Tasks.xml",
- "ref/netcore50/ko/System.Threading.Tasks.xml",
- "ref/netcore50/ru/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.0/System.Threading.Tasks.dll",
- "ref/netstandard1.0/System.Threading.Tasks.xml",
- "ref/netstandard1.0/de/System.Threading.Tasks.xml",
- "ref/netstandard1.0/es/System.Threading.Tasks.xml",
- "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.0/it/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.3/System.Threading.Tasks.dll",
- "ref/netstandard1.3/System.Threading.Tasks.xml",
- "ref/netstandard1.3/de/System.Threading.Tasks.xml",
- "ref/netstandard1.3/es/System.Threading.Tasks.xml",
- "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.3/it/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.4.3.0.nupkg.sha512",
- "system.threading.tasks.nuspec"
- ]
- },
- "System.Threading.Tasks.Dataflow/8.0.0": {
- "sha512": "7V0I8tPa9V7UxMx/+7DIwkhls5ouaEMQx6l/GwGm1Y8kJQ61On9B/PxCXFLbgu5/C47g0BP2CUYs+nMv1+Oaqw==",
- "type": "package",
- "path": "system.threading.tasks.dataflow/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Threading.Tasks.Dataflow.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Threading.Tasks.Dataflow.targets",
- "lib/net462/System.Threading.Tasks.Dataflow.dll",
- "lib/net462/System.Threading.Tasks.Dataflow.xml",
- "lib/net6.0/System.Threading.Tasks.Dataflow.dll",
- "lib/net6.0/System.Threading.Tasks.Dataflow.xml",
- "lib/net7.0/System.Threading.Tasks.Dataflow.dll",
- "lib/net7.0/System.Threading.Tasks.Dataflow.xml",
- "lib/net8.0/System.Threading.Tasks.Dataflow.dll",
- "lib/net8.0/System.Threading.Tasks.Dataflow.xml",
- "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll",
- "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml",
- "lib/netstandard2.1/System.Threading.Tasks.Dataflow.dll",
- "lib/netstandard2.1/System.Threading.Tasks.Dataflow.xml",
- "system.threading.tasks.dataflow.8.0.0.nupkg.sha512",
- "system.threading.tasks.dataflow.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "type": "package",
- "path": "system.threading.tasks.extensions/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Threading.Tasks.Extensions.dll",
- "lib/net461/System.Threading.Tasks.Extensions.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netcoreapp2.1/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "system.threading.tasks.extensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "xunit/2.9.2": {
- "sha512": "7LhFS2N9Z6Xgg8aE5lY95cneYivRMfRI8v+4PATa4S64D5Z/Plkg0qa8dTRHSiGRgVZ/CL2gEfJDE5AUhOX+2Q==",
- "type": "package",
- "path": "xunit/2.9.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "_content/README.md",
- "_content/logo-128-transparent.png",
- "xunit.2.9.2.nupkg.sha512",
- "xunit.nuspec"
- ]
- },
- "xunit.abstractions/2.0.3": {
- "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==",
- "type": "package",
- "path": "xunit.abstractions/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net35/xunit.abstractions.dll",
- "lib/net35/xunit.abstractions.xml",
- "lib/netstandard1.0/xunit.abstractions.dll",
- "lib/netstandard1.0/xunit.abstractions.xml",
- "lib/netstandard2.0/xunit.abstractions.dll",
- "lib/netstandard2.0/xunit.abstractions.xml",
- "xunit.abstractions.2.0.3.nupkg.sha512",
- "xunit.abstractions.nuspec"
- ]
- },
- "xunit.analyzers/1.16.0": {
- "sha512": "hptYM7vGr46GUIgZt21YHO4rfuBAQS2eINbFo16CV/Dqq+24Tp+P5gDCACu1AbFfW4Sp/WRfDPSK8fmUUb8s0Q==",
- "type": "package",
- "path": "xunit.analyzers/1.16.0",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "_content/README.md",
- "_content/logo-128-transparent.png",
- "analyzers/dotnet/cs/xunit.analyzers.dll",
- "analyzers/dotnet/cs/xunit.analyzers.fixes.dll",
- "tools/install.ps1",
- "tools/uninstall.ps1",
- "xunit.analyzers.1.16.0.nupkg.sha512",
- "xunit.analyzers.nuspec"
- ]
- },
- "xunit.assert/2.9.2": {
- "sha512": "QkNBAQG4pa66cholm28AxijBjrmki98/vsEh4Sx5iplzotvPgpiotcxqJQMRC8d7RV7nIT8ozh97957hDnZwsQ==",
- "type": "package",
- "path": "xunit.assert/2.9.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "_content/README.md",
- "_content/logo-128-transparent.png",
- "lib/net6.0/xunit.assert.dll",
- "lib/net6.0/xunit.assert.xml",
- "lib/netstandard1.1/xunit.assert.dll",
- "lib/netstandard1.1/xunit.assert.xml",
- "xunit.assert.2.9.2.nupkg.sha512",
- "xunit.assert.nuspec"
- ]
- },
- "xunit.core/2.9.2": {
- "sha512": "O6RrNSdmZ0xgEn5kT927PNwog5vxTtKrWMihhhrT0Sg9jQ7iBDciYOwzBgP2krBEk5/GBXI18R1lKvmnxGcb4w==",
- "type": "package",
- "path": "xunit.core/2.9.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "_content/README.md",
- "_content/logo-128-transparent.png",
- "build/xunit.core.props",
- "build/xunit.core.targets",
- "buildMultiTargeting/xunit.core.props",
- "buildMultiTargeting/xunit.core.targets",
- "xunit.core.2.9.2.nupkg.sha512",
- "xunit.core.nuspec"
- ]
- },
- "xunit.extensibility.core/2.9.2": {
- "sha512": "Ol+KlBJz1x8BrdnhN2DeOuLrr1I/cTwtHCggL9BvYqFuVd/TUSzxNT5O0NxCIXth30bsKxgMfdqLTcORtM52yQ==",
- "type": "package",
- "path": "xunit.extensibility.core/2.9.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "_content/README.md",
- "_content/logo-128-transparent.png",
- "lib/net452/xunit.core.dll",
- "lib/net452/xunit.core.dll.tdnet",
- "lib/net452/xunit.core.xml",
- "lib/net452/xunit.runner.tdnet.dll",
- "lib/net452/xunit.runner.utility.net452.dll",
- "lib/netstandard1.1/xunit.core.dll",
- "lib/netstandard1.1/xunit.core.xml",
- "xunit.extensibility.core.2.9.2.nupkg.sha512",
- "xunit.extensibility.core.nuspec"
- ]
- },
- "xunit.extensibility.execution/2.9.2": {
- "sha512": "rKMpq4GsIUIJibXuZoZ8lYp5EpROlnYaRpwu9Zr0sRZXE7JqJfEEbCsUriZqB+ByXCLFBJyjkTRULMdC+U566g==",
- "type": "package",
- "path": "xunit.extensibility.execution/2.9.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "_content/README.md",
- "_content/logo-128-transparent.png",
- "lib/net452/xunit.execution.desktop.dll",
- "lib/net452/xunit.execution.desktop.xml",
- "lib/netstandard1.1/xunit.execution.dotnet.dll",
- "lib/netstandard1.1/xunit.execution.dotnet.xml",
- "xunit.extensibility.execution.2.9.2.nupkg.sha512",
- "xunit.extensibility.execution.nuspec"
- ]
- },
- "xunit.runner.visualstudio/2.8.2": {
- "sha512": "vm1tbfXhFmjFMUmS4M0J0ASXz3/U5XvXBa6DOQUL3fEz4Vt6YPhv+ESCarx6M6D+9kJkJYZKCNvJMas1+nVfmQ==",
- "type": "package",
- "path": "xunit.runner.visualstudio/2.8.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "_content/README.md",
- "_content/logo-128-transparent.png",
- "build/net462/xunit.abstractions.dll",
- "build/net462/xunit.runner.reporters.net452.dll",
- "build/net462/xunit.runner.utility.net452.dll",
- "build/net462/xunit.runner.visualstudio.props",
- "build/net462/xunit.runner.visualstudio.testadapter.dll",
- "build/net6.0/xunit.abstractions.dll",
- "build/net6.0/xunit.runner.reporters.netcoreapp10.dll",
- "build/net6.0/xunit.runner.utility.netcoreapp10.dll",
- "build/net6.0/xunit.runner.visualstudio.props",
- "build/net6.0/xunit.runner.visualstudio.testadapter.dll",
- "lib/net462/_._",
- "lib/net6.0/_._",
- "xunit.runner.visualstudio.2.8.2.nupkg.sha512",
- "xunit.runner.visualstudio.nuspec"
- ]
- },
- "CrowdedBackend/1.0.0": {
- "type": "project",
- "path": "../CrowdedBackend/CrowdedBackend.csproj",
- "msbuildProject": "../CrowdedBackend/CrowdedBackend.csproj"
- }
- },
- "projectFileDependencyGroups": {
- "net9.0": [
- "CrowdedBackend >= 1.0.0",
- "Microsoft.NET.Test.Sdk >= 17.11.1",
- "coverlet.collector >= 6.0.2",
- "xunit >= 2.9.2",
- "xunit.runner.visualstudio >= 2.8.2"
- ]
- },
- "packageFolders": {
- "/Users/davidfraenkel/.nuget/packages/": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj",
- "projectName": "CrowdedBackend.Tests",
- "projectPath": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj",
- "packagesPath": "/Users/davidfraenkel/.nuget/packages/",
- "outputPath": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/Users/davidfraenkel/.nuget/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "net9.0"
- ],
- "sources": {
- "/usr/local/Cellar/dotnet/9.0.101/libexec/library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net9.0": {
- "targetAlias": "net9.0",
- "projectReferences": {
- "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend/CrowdedBackend.csproj": {
- "projectPath": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend/CrowdedBackend.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.100"
- },
- "frameworks": {
- "net9.0": {
- "targetAlias": "net9.0",
- "dependencies": {
- "Microsoft.NET.Test.Sdk": {
- "target": "Package",
- "version": "[17.11.1, )"
- },
- "coverlet.collector": {
- "target": "Package",
- "version": "[6.0.2, )"
- },
- "xunit": {
- "target": "Package",
- "version": "[2.9.2, )"
- },
- "xunit.runner.visualstudio": {
- "target": "Package",
- "version": "[2.8.2, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "/usr/local/Cellar/dotnet/9.0.101/libexec/sdk/9.0.101/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.Tests/obj/project.nuget.cache b/CrowdedBackend/CrowdedBackend.Tests/obj/project.nuget.cache
deleted file mode 100644
index ea5c6d9..0000000
--- a/CrowdedBackend/CrowdedBackend.Tests/obj/project.nuget.cache
+++ /dev/null
@@ -1,202 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "mftEB6PZlBQ=",
- "success": true,
- "projectFilePath": "/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests/CrowdedBackend.Tests.csproj",
- "expectedPackageFiles": [
- "/Users/davidfraenkel/.nuget/packages/azure.core/1.38.0/azure.core.1.38.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/azure.identity/1.11.4/azure.identity.1.11.4.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/coverlet.collector/6.0.2/coverlet.collector.6.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer/2.14.1/humanizer.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.af/2.14.1/humanizer.core.af.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.ar/2.14.1/humanizer.core.ar.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.az/2.14.1/humanizer.core.az.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.bg/2.14.1/humanizer.core.bg.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.bn-bd/2.14.1/humanizer.core.bn-bd.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.cs/2.14.1/humanizer.core.cs.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.da/2.14.1/humanizer.core.da.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.de/2.14.1/humanizer.core.de.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.el/2.14.1/humanizer.core.el.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.es/2.14.1/humanizer.core.es.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.fa/2.14.1/humanizer.core.fa.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.fi-fi/2.14.1/humanizer.core.fi-fi.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.fr/2.14.1/humanizer.core.fr.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.fr-be/2.14.1/humanizer.core.fr-be.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.he/2.14.1/humanizer.core.he.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.hr/2.14.1/humanizer.core.hr.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.hu/2.14.1/humanizer.core.hu.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.hy/2.14.1/humanizer.core.hy.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.id/2.14.1/humanizer.core.id.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.is/2.14.1/humanizer.core.is.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.it/2.14.1/humanizer.core.it.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.ja/2.14.1/humanizer.core.ja.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.ko-kr/2.14.1/humanizer.core.ko-kr.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.ku/2.14.1/humanizer.core.ku.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.lv/2.14.1/humanizer.core.lv.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.ms-my/2.14.1/humanizer.core.ms-my.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.mt/2.14.1/humanizer.core.mt.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.nb/2.14.1/humanizer.core.nb.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.nb-no/2.14.1/humanizer.core.nb-no.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.nl/2.14.1/humanizer.core.nl.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.pl/2.14.1/humanizer.core.pl.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.pt/2.14.1/humanizer.core.pt.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.ro/2.14.1/humanizer.core.ro.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.ru/2.14.1/humanizer.core.ru.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.sk/2.14.1/humanizer.core.sk.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.sl/2.14.1/humanizer.core.sl.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.sr/2.14.1/humanizer.core.sr.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.sr-latn/2.14.1/humanizer.core.sr-latn.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.sv/2.14.1/humanizer.core.sv.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.th-th/2.14.1/humanizer.core.th-th.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.tr/2.14.1/humanizer.core.tr.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.uk/2.14.1/humanizer.core.uk.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.uz-cyrl-uz/2.14.1/humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.uz-latn-uz/2.14.1/humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.vi/2.14.1/humanizer.core.vi.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.zh-cn/2.14.1/humanizer.core.zh-cn.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.zh-hans/2.14.1/humanizer.core.zh-hans.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/humanizer.core.zh-hant/2.14.1/humanizer.core.zh-hant.2.14.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/mathnet.numerics/5.0.0/mathnet.numerics.5.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.aspnetcore.openapi/9.0.2/microsoft.aspnetcore.openapi.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.aspnetcore.razor.language/6.0.24/microsoft.aspnetcore.razor.language.6.0.24.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.bcl.asyncinterfaces/7.0.0/microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.build/17.10.4/microsoft.build.17.10.4.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.build.framework/17.10.4/microsoft.build.framework.17.10.4.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4/microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.analyzerutilities/3.3.0/microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.common/4.8.0/microsoft.codeanalysis.common.4.8.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.csharp/4.8.0/microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.csharp.features/4.8.0/microsoft.codeanalysis.csharp.features.4.8.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.8.0/microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.elfie/1.0.0/microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.features/4.8.0/microsoft.codeanalysis.features.4.8.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.razor/6.0.24/microsoft.codeanalysis.razor.6.0.24.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.scripting.common/4.8.0/microsoft.codeanalysis.scripting.common.4.8.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.8.0/microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.codecoverage/17.11.1/microsoft.codecoverage.17.11.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.csharp/4.7.0/microsoft.csharp.4.7.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.data.sqlclient/5.1.6/microsoft.data.sqlclient.5.1.6.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.data.sqlclient.sni.runtime/5.1.1/microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.data.sqlite.core/9.0.2/microsoft.data.sqlite.core.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.diasymreader/2.0.0/microsoft.diasymreader.2.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.dotnet.scaffolding.shared/9.0.0/microsoft.dotnet.scaffolding.shared.9.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.entityframeworkcore/9.0.2/microsoft.entityframeworkcore.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.2/microsoft.entityframeworkcore.abstractions.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.entityframeworkcore.analyzers/9.0.2/microsoft.entityframeworkcore.analyzers.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.2/microsoft.entityframeworkcore.relational.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.entityframeworkcore.sqlite/9.0.2/microsoft.entityframeworkcore.sqlite.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.entityframeworkcore.sqlite.core/9.0.2/microsoft.entityframeworkcore.sqlite.core.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.entityframeworkcore.sqlserver/9.0.2/microsoft.entityframeworkcore.sqlserver.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.2/microsoft.extensions.caching.abstractions.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.extensions.caching.memory/9.0.2/microsoft.extensions.caching.memory.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.2/microsoft.extensions.configuration.abstractions.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.2/microsoft.extensions.dependencyinjection.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.2/microsoft.extensions.dependencyinjection.abstractions.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.extensions.dependencymodel/9.0.2/microsoft.extensions.dependencymodel.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.extensions.logging/9.0.2/microsoft.extensions.logging.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.2/microsoft.extensions.logging.abstractions.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.extensions.options/9.0.2/microsoft.extensions.options.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.extensions.primitives/9.0.2/microsoft.extensions.primitives.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.identity.client/4.61.3/microsoft.identity.client.4.61.3.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.identity.client.extensions.msal/4.61.3/microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.identitymodel.abstractions/6.35.0/microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.35.0/microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.identitymodel.logging/6.35.0/microsoft.identitymodel.logging.6.35.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.identitymodel.protocols/6.35.0/microsoft.identitymodel.protocols.6.35.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.35.0/microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.identitymodel.tokens/6.35.0/microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.net.stringtools/17.10.4/microsoft.net.stringtools.17.10.4.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.net.test.sdk/17.11.1/microsoft.net.test.sdk.17.11.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.openapi/1.6.17/microsoft.openapi.1.6.17.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.sqlserver.server/1.0.0/microsoft.sqlserver.server.1.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.testplatform.objectmodel/17.11.1/microsoft.testplatform.objectmodel.17.11.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.testplatform.testhost/17.11.1/microsoft.testplatform.testhost.17.11.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.visualstudio.web.codegeneration/9.0.0/microsoft.visualstudio.web.codegeneration.9.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.visualstudio.web.codegeneration.core/9.0.0/microsoft.visualstudio.web.codegeneration.core.9.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.visualstudio.web.codegeneration.design/9.0.0/microsoft.visualstudio.web.codegeneration.design.9.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.visualstudio.web.codegeneration.entityframeworkcore/9.0.0/microsoft.visualstudio.web.codegeneration.entityframeworkcore.9.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.visualstudio.web.codegeneration.templating/9.0.0/microsoft.visualstudio.web.codegeneration.templating.9.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.visualstudio.web.codegeneration.utils/9.0.0/microsoft.visualstudio.web.codegeneration.utils.9.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/microsoft.visualstudio.web.codegenerators.mvc/9.0.0/microsoft.visualstudio.web.codegenerators.mvc.9.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/mono.texttemplating/3.0.0/mono.texttemplating.3.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/npgsql/9.0.2/npgsql.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/npgsql.entityframeworkcore.postgresql/9.0.3/npgsql.entityframeworkcore.postgresql.9.0.3.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/nuget.common/6.11.0/nuget.common.6.11.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/nuget.configuration/6.11.0/nuget.configuration.6.11.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/nuget.dependencyresolver.core/6.11.0/nuget.dependencyresolver.core.6.11.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/nuget.frameworks/6.11.0/nuget.frameworks.6.11.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/nuget.librarymodel/6.11.0/nuget.librarymodel.6.11.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/nuget.packaging/6.11.0/nuget.packaging.6.11.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/nuget.projectmodel/6.11.0/nuget.projectmodel.6.11.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/nuget.protocol/6.11.0/nuget.protocol.6.11.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/nuget.versioning/6.11.0/nuget.versioning.6.11.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/pythonnet/3.0.5/pythonnet.3.0.5.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/skiasharp/3.116.1/skiasharp.3.116.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/skiasharp.nativeassets.macos/3.116.1/skiasharp.nativeassets.macos.3.116.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/skiasharp.nativeassets.win32/3.116.1/skiasharp.nativeassets.win32.3.116.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/sqlitepclraw.bundle_e_sqlite3/2.1.10/sqlitepclraw.bundle_e_sqlite3.2.1.10.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/sqlitepclraw.core/2.1.10/sqlitepclraw.core.2.1.10.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/sqlitepclraw.lib.e_sqlite3/2.1.10/sqlitepclraw.lib.e_sqlite3.2.1.10.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/sqlitepclraw.provider.e_sqlite3/2.1.10/sqlitepclraw.provider.e_sqlite3.2.1.10.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.clientmodel/1.0.0/system.clientmodel.1.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.codedom/6.0.0/system.codedom.6.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.collections.immutable/8.0.0/system.collections.immutable.8.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.composition/7.0.0/system.composition.7.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.composition.attributedmodel/7.0.0/system.composition.attributedmodel.7.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.composition.convention/7.0.0/system.composition.convention.7.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.composition.hosting/7.0.0/system.composition.hosting.7.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.composition.runtime/7.0.0/system.composition.runtime.7.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.composition.typedparts/7.0.0/system.composition.typedparts.7.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.configuration.configurationmanager/8.0.0/system.configuration.configurationmanager.8.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.data.datasetextensions/4.5.0/system.data.datasetextensions.4.5.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.diagnostics.diagnosticsource/6.0.1/system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.diagnostics.eventlog/8.0.0/system.diagnostics.eventlog.8.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.formats.asn1/9.0.2/system.formats.asn1.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.identitymodel.tokens.jwt/6.35.0/system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.io.pipelines/7.0.0/system.io.pipelines.7.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.memory.data/1.0.2/system.memory.data.1.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.reflection.metadata/8.0.0/system.reflection.metadata.8.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.reflection.metadataloadcontext/8.0.0/system.reflection.metadataloadcontext.8.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.runtime.caching/6.0.0/system.runtime.caching.6.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.security.cryptography.cng/5.0.0/system.security.cryptography.cng.5.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.security.cryptography.pkcs/6.0.4/system.security.cryptography.pkcs.6.0.4.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.security.cryptography.protecteddata/8.0.0/system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.text.encodings.web/6.0.0/system.text.encodings.web.6.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.text.json/9.0.2/system.text.json.9.0.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.threading.channels/7.0.0/system.threading.channels.7.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.threading.tasks.dataflow/8.0.0/system.threading.tasks.dataflow.8.0.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/xunit/2.9.2/xunit.2.9.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/xunit.analyzers/1.16.0/xunit.analyzers.1.16.0.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/xunit.assert/2.9.2/xunit.assert.2.9.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/xunit.core/2.9.2/xunit.core.2.9.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/xunit.extensibility.core/2.9.2/xunit.extensibility.core.2.9.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/xunit.extensibility.execution/2.9.2/xunit.extensibility.execution.2.9.2.nupkg.sha512",
- "/Users/davidfraenkel/.nuget/packages/xunit.runner.visualstudio/2.8.2/xunit.runner.visualstudio.2.8.2.nupkg.sha512"
- ],
- "logs": []
-}
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend.sln b/CrowdedBackend/CrowdedBackend.sln
index 8f37de6..417ee8d 100644
--- a/CrowdedBackend/CrowdedBackend.sln
+++ b/CrowdedBackend/CrowdedBackend.sln
@@ -2,6 +2,8 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CrowdedBackend", "CrowdedBackend\CrowdedBackend.csproj", "{63652CCB-E24D-4DB0-9FFE-5A681E14BBBC}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CrowdedBackend.Tests", "CrowdedBackend.Tests\CrowdedBackend.Tests.csproj", "{F01A3D20-DD96-45F7-9351-26F77AA629C6}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -12,5 +14,9 @@ Global
{63652CCB-E24D-4DB0-9FFE-5A681E14BBBC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{63652CCB-E24D-4DB0-9FFE-5A681E14BBBC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{63652CCB-E24D-4DB0-9FFE-5A681E14BBBC}.Release|Any CPU.Build.0 = Release|Any CPU
+ {F01A3D20-DD96-45F7-9351-26F77AA629C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {F01A3D20-DD96-45F7-9351-26F77AA629C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {F01A3D20-DD96-45F7-9351-26F77AA629C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {F01A3D20-DD96-45F7-9351-26F77AA629C6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
diff --git a/CrowdedBackend/CrowdedBackend.sln.DotSettings.user b/CrowdedBackend/CrowdedBackend.sln.DotSettings.user
index e9727b9..5bb6fbe 100644
--- a/CrowdedBackend/CrowdedBackend.sln.DotSettings.user
+++ b/CrowdedBackend/CrowdedBackend.sln.DotSettings.user
@@ -5,9 +5,14 @@
ForceIncluded
ForceIncluded
ForceIncluded
+ ForceIncluded
ForceIncluded
ForceIncluded
ForceIncluded
ForceIncluded
ForceIncluded
- ForceIncluded
\ No newline at end of file
+ ForceIncluded
+ /Users/davidfraenkel/Library/Caches/JetBrains/Rider2024.3/resharper-host/temp/Rider/vAny/CoverageData/_CrowdedBackend.-2054735434/Snapshot/snapshot.utdcvr
+ <SessionState ContinuousTestingMode="0" IsActive="True" Name="All tests from <CrowdedBackend.Tests>" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session">
+ <Project Location="/Users/davidfraenkel/CrowdedRegionDetection/CrowdedBackend/CrowdedBackend.Tests" Presentation="<CrowdedBackend.Tests>" />
+</SessionState>
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend/Controllers/DetectedDevicesController.cs b/CrowdedBackend/CrowdedBackend/Controllers/DetectedDevicesController.cs
index 9e133e7..db9e7ea 100644
--- a/CrowdedBackend/CrowdedBackend/Controllers/DetectedDevicesController.cs
+++ b/CrowdedBackend/CrowdedBackend/Controllers/DetectedDevicesController.cs
@@ -93,8 +93,8 @@ private async Task> GetDetectedDeviceTimestampHelper(List
-
+
runtime; build; native; contentfiles; analyzers; buildtransitive
all
+
@@ -22,6 +23,8 @@
runtime; build; native; contentfiles; analyzers; buildtransitive
+
+
diff --git a/CrowdedBackend/CrowdedBackend/Program.Partial.cs b/CrowdedBackend/CrowdedBackend/Program.Partial.cs
new file mode 100644
index 0000000..4027cfa
--- /dev/null
+++ b/CrowdedBackend/CrowdedBackend/Program.Partial.cs
@@ -0,0 +1,3 @@
+namespace CrowdedBackend;
+
+public partial class Program { }
\ No newline at end of file
diff --git a/CrowdedBackend/CrowdedBackend/Program.cs b/CrowdedBackend/CrowdedBackend/Program.cs
index bc5d71f..826a94a 100644
--- a/CrowdedBackend/CrowdedBackend/Program.cs
+++ b/CrowdedBackend/CrowdedBackend/Program.cs
@@ -7,14 +7,26 @@
// Add services to the container.
builder.Services.AddControllers();
+
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddHttpClient();
builder.Services.AddOpenApi();
-// Configure PostgreSQL database connection
-builder.Services.AddDbContext(options =>
- options.UseNpgsql(builder.Configuration.GetConnectionString("DefaultConnection")));
+// Conditionally configure the database based on the environment
+var env = builder.Environment.EnvironmentName;
+if (env == "Testing")
+{
+ // Use InMemory database for testing
+ builder.Services.AddDbContext(options =>
+ options.UseInMemoryDatabase("TestDb"));
+}
+else
+{
+ // Use PostgreSQL in development or production environments
+ builder.Services.AddDbContext(options =>
+ options.UseNpgsql(builder.Configuration.GetConnectionString("DefaultConnection")));
+}
builder.Services.AddHttpLogging(logging =>
{
@@ -32,12 +44,6 @@
app.UseHttpLogging();
-// Configure the HTTP request pipeline.
-if (app.Environment.IsDevelopment())
-{
- app.MapOpenApi(); // Optional, for OpenAPI/Swagger in development
-}
-
app.UseHttpsRedirection();
app.MapControllers(); // Add this to map controllers (including your RaspDataController)
diff --git a/CrowdedBackend/CrowdedBackend/Services/CalculatePositions/CircleUtils.cs b/CrowdedBackend/CrowdedBackend/Services/CalculatePositions/CircleUtils.cs
index 803a93d..f9be136 100644
--- a/CrowdedBackend/CrowdedBackend/Services/CalculatePositions/CircleUtils.cs
+++ b/CrowdedBackend/CrowdedBackend/Services/CalculatePositions/CircleUtils.cs
@@ -9,7 +9,7 @@ namespace CrowdedBackend.Services.CalculatePositions;
public class CircleUtils
{
- private const double RSSI_TO_LENGTH = 2;
+ private const double RSSI_TO_LENGTH = 3;
private const double CIRCLE_EXTRA_SIZE = 20;
private const double SMALL = 1e-10;
@@ -47,7 +47,6 @@ public List CalculatePosition()
{
throw new Exception("raspPoints values are invalid");
}
-
foreach (var rasp1Data in raspOutputData[0].Events)
{
var macAddress = rasp1Data.MacAddress;
@@ -68,7 +67,6 @@ public List CalculatePosition()
{
Console.WriteLine(e);
}
-
return null;
}
diff --git a/CrowdedBackend/CrowdedBackend/Services/HeatmapScript/HeatmapGenerator.cs b/CrowdedBackend/CrowdedBackend/Services/HeatmapScript/HeatmapGenerator.cs
index c765bc4..9dd350a 100644
--- a/CrowdedBackend/CrowdedBackend/Services/HeatmapScript/HeatmapGenerator.cs
+++ b/CrowdedBackend/CrowdedBackend/Services/HeatmapScript/HeatmapGenerator.cs
@@ -3,7 +3,8 @@
public class HeatmapGenerator
{
- private const int ImageSize = 800;
+ private const int ImageSizeX = 1200;
+ private const int ImageSizeY = 800;
private const int GridResolution = 500;
private const float MapXMin = 0;
private const float MapXMax = 170;
@@ -22,7 +23,7 @@ public static String Generate(string venueName, List<(float x, float y)> raspber
string currentDirectory = Directory.GetCurrentDirectory() + "/Services/HeatmapScript/";
var backgroundPath = Path.Combine(currentDirectory, venueName) + ".png";
- var image = new SKBitmap(ImageSize, ImageSize);
+ var image = new SKBitmap(ImageSizeX, ImageSizeY);
using var canvas = new SKCanvas(image);
canvas.Clear(SKColors.White);
@@ -31,7 +32,7 @@ public static String Generate(string venueName, List<(float x, float y)> raspber
{
using var bgStream = File.OpenRead(backgroundPath);
var background = SKBitmap.Decode(bgStream);
- var destRect = new SKRect(0, 0, ImageSize, ImageSize);
+ var destRect = new SKRect(0, 0, ImageSizeX, ImageSizeY);
canvas.DrawBitmap(background, destRect);
}
@@ -65,10 +66,10 @@ private static void DrawHeatmap(SKCanvas canvas, double[,] density)
double value = density[i, j] / max;
SKColor color = GetHeatmapColor(value);
- float x = i * ImageSize / (float)GridResolution;
- float y = ImageSize - (j * ImageSize / (float)GridResolution); // invert Y
+ float x = i * ImageSizeX / (float)GridResolution;
+ float y = ImageSizeY - (j * ImageSizeY / (float)GridResolution); // invert Y
- var rect = new SKRect(x, y, x + ImageSize / (float)GridResolution, y + ImageSize / (float)GridResolution);
+ var rect = new SKRect(x, y, x + ImageSizeX / (float)GridResolution, y + ImageSizeY / (float)GridResolution);
using var paint = new SKPaint { Color = color };
canvas.DrawRect(rect, paint);
}
@@ -88,8 +89,8 @@ private static void DrawPoints(SKCanvas canvas, List<(float x, float y)> points,
{
foreach (var (x, y) in points)
{
- float px = (x - MapXMin) / (MapXMax - MapXMin) * ImageSize;
- float py = ImageSize - ((y - MapYMin) / (MapYMax - MapYMin) * ImageSize);
+ float px = (x - MapXMin) / (MapXMax - MapXMin) * ImageSizeX;
+ float py = ImageSizeY - ((y - MapYMin) / (MapYMax - MapYMin) * ImageSizeY);
using var paint = new SKPaint
{